495 lines
29 KiB
HTML
Executable File
495 lines
29 KiB
HTML
Executable File
{extends file="admin-layout.tpl"}
|
|
|
|
{block name="no-return-functions"}
|
|
{$admin_current_location = 'customer'}
|
|
{/block}
|
|
|
|
{block name="page-title"}{intl l='Edit a customer'}{/block}
|
|
|
|
{block name="check-resource"}admin.customer{/block}
|
|
{block name="check-access"}update{/block}
|
|
|
|
{block name="main-content"}
|
|
<div class="customers edit-customer">
|
|
|
|
<div id="wrapper" class="container">
|
|
{loop name="customer_edit" type="customer" current="false" id="$customer_id" backend_context="1" lang="$edit_language_id"}
|
|
|
|
<ul class="breadcrumb">
|
|
<li><a href="{url path='/admin/home'}">{intl l="Home"}</a></li>
|
|
<li><a href="{url path='/admin/customers'}">{intl l="Customers"}</a></li>
|
|
<li>{intl l="Edit customer %firstname %lastname" firstname={$FIRSTNAME} lastname={$LASTNAME}}</li>
|
|
</ul>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12 general-block-decorator">
|
|
<div class="row">
|
|
|
|
<div class="col-md-12 title title-without-tabs">
|
|
{intl l="Edit customer %firstname %lastname (Ref : %ref)" firstname={$FIRSTNAME} lastname={$LASTNAME} ref={$REF}}
|
|
</div>
|
|
|
|
<div class="form-container">
|
|
<div class="col-md-12">
|
|
|
|
{form name="thelia.admin.customer.update"}
|
|
<form method="POST" action="{url path='/admin/customer/save'}" {form_enctype form=$form} class="clearfix">
|
|
|
|
{include
|
|
file="includes/inner-form-toolbar.html"
|
|
hide_flags = true
|
|
close_url = {url path='/admin/customers'}
|
|
}
|
|
|
|
{form_hidden_fields form=$form}
|
|
|
|
<input type="hidden" name="page" value="{$page}" />
|
|
<input type="hidden" name="customer_id" value="{$customer_id}" />
|
|
|
|
{form_field form=$form field='success_url'}
|
|
<input type="hidden" name="{$name}" value="{url path='/admin/customers' page=$page}" />
|
|
{/form_field}
|
|
|
|
{if $form_error}<div class="alert alert-danger">{$form_error_message}</div>{/if}
|
|
{loop name="address" type="address" customer="$customer_id" backend_context="1" default="true"}
|
|
<div class="col-md-6">
|
|
<p class="title title-without-tabs">{intl l="Customer informations"}</p>
|
|
|
|
{form_field form=$form field='title'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
|
|
<select name="{$name}" id="{$label_attr.for}" class="form-control">
|
|
{loop type="title" name="title1" backend_context="1"}
|
|
<option value="{$ID}" {if $ID == $TITLE}selected{/if}>{$LONG}</option>
|
|
{/loop}
|
|
</select>
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='firstname'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Firstname'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='lastname'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Lastname'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='email'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Email'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='discount'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='permanent discount'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='reseller'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" id="{$label_attr.for}" name="{$name}" value="1" {if $value != 0}checked="checked"{/if}>
|
|
{$label}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='password'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label} (leave blank to keep current customer password) {if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Password'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
|
|
|
|
<p class="title title-without-tabs">{intl l="Default address"}</p>
|
|
|
|
{form_field form=$form field='company'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Company'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='address1'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Address'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='address2'}
|
|
<div class="form-group">
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Additional address'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='address3'}
|
|
<div class="form-group">
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Additional address'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='zipcode'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Zip code'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='city'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='City'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='country'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<select name="{$name}" id="{$label_attr.for}" class="form-control">
|
|
{loop type="country" name="country1"}
|
|
<option value="{$ID}" {if {$value} == $ID}selected{/if}>{$TITLE}</option>
|
|
{/loop}
|
|
</select>
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='phone'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Address'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{form_field form=$form field='cellphone'}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">{$label}{if $required} <span class="required">*</span>{/if} : </label>
|
|
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" placeholder="{intl l='Address'}">
|
|
</div>
|
|
{/form_field}
|
|
|
|
{/loop}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
<p class="title title-without-tabs clearfix">
|
|
{intl l="Other addresses"}
|
|
<span class="pull-right">
|
|
<a class="btn btn-default btn-primary" title="{intl l='Add a new address'}" href="#address_creation_dialog" data-toggle="modal">
|
|
<span class="glyphicon glyphicon-plus-sign"></span>
|
|
</a>
|
|
</span>
|
|
</p>
|
|
|
|
{ifloop rel="address"}
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>{intl l="Address"}</th>
|
|
<th class="text-center">{intl l="Actions"}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{loop name="address" type="address" customer="$customer_id" backend_context="1" default="0"}
|
|
<tr>
|
|
<td>
|
|
{$LABEL}
|
|
<address>
|
|
<strong>{loop name="address.title" type="title" id=$TITLE}{$SHORT}{/loop} {$FIRSTNAME} {$LASTNAME}</strong><br>
|
|
{$ADDRESS1}
|
|
{if $ADDRESS2}<br />{$ADDRESS2}{/if}
|
|
{if $ADDRESS3}<br />{$ADDRESS3}{/if}
|
|
<br>{$ZIPCODE} {$CITY}
|
|
{loop name="address.country" type="country" id=$COUNTRY}
|
|
<br>{$TITLE}
|
|
{/loop}
|
|
{if $PHONE}
|
|
<br>{intl l="Phone"}: {$PHONE}
|
|
{/if}
|
|
{if $CELLPHONE}
|
|
<br>{intl l="Cellular phone"}: {$CELLPHONE}
|
|
{/if}
|
|
</address>
|
|
</td>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
|
|
<a class="btn btn-default btn-xs customer-update-address" title="{intl l='Edit this address'}" href="{url path='/admin/address/update' address_id=$ID}">
|
|
<span class="glyphicon glyphicon-edit"></span>
|
|
</a>
|
|
|
|
<a class="btn btn-default btn-xs customer-address-use" title="{intl l='Use this address by default'}" href="#use_address_dialog" data-toggle="modal" data-id="{$ID}" data-toggle="modal" rel="tooltip">
|
|
<span class="glyphicon glyphicon-pushpin"></span>
|
|
</a>
|
|
|
|
<a class="btn btn-default btn-xs customer-address-delete" title="{intl l='Delete this customer and all his orders'}" href="#delete_address_dialog" data-id="{$ID}" data-toggle="modal">
|
|
<span class="glyphicon glyphicon-trash"></span>
|
|
</a>
|
|
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{/loop}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{/ifloop}
|
|
|
|
{elseloop rel="address"}
|
|
<div class="alert alert-info">
|
|
{intl l="This customer has not defined any delivery address"}
|
|
</div>
|
|
{/elseloop}
|
|
</div>
|
|
|
|
</form>
|
|
{/form}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12 general-block-decorator">
|
|
<div class="row">
|
|
<div class="col-md-12 title title-without-tabs">
|
|
{intl l="orders for this customer"}
|
|
</div>
|
|
<div class="col-md-12">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-left-aligned">
|
|
<thead>
|
|
<tr>
|
|
<th>{intl l="Order n°"}</th>
|
|
<th>{intl l="Date & Hour"}</th>
|
|
<th>{intl l="Amount"}</th>
|
|
<th>{intl l="Status"}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{loop type="order" name="order-list" customer="{$customer_id}" backend_context="1" status='*' page={$page} limit=10}
|
|
{loop type="order-status" name="order-status" id=$STATUS}
|
|
{assign "orderStatus" $TITLE}
|
|
{assign "orderStatusLabel" "order_$CODE"}
|
|
{/loop}
|
|
<tr>
|
|
<td><a href="{url path="/admin/order/update/$ID"}">{$REF}</a></td>
|
|
<td>{format_date date=$CREATE_DATE}</td>
|
|
<td>{$TOTAL_TAXED_AMOUNT}</td>
|
|
<td>
|
|
<span class="label label-{#$orderStatusLabel#}">{$orderStatus}</span>
|
|
</td>
|
|
</tr>
|
|
{/loop}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="7">
|
|
{include
|
|
file = "includes/pagination.html"
|
|
|
|
loop_ref = "order-list"
|
|
max_page_count = 10
|
|
page_url = "{url path="/admin/customer/update" customer_id=$customer_id}"
|
|
}
|
|
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{module_include location='customer-edit'}
|
|
|
|
{/loop}
|
|
|
|
{elseloop rel="customer_edit"}
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="alert alert-error">
|
|
{intl l="Sorry, customer ID=%id was not found." id=$customer_id}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/elseloop}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{* -- Add an Address -------------------------------------------------------- *}
|
|
|
|
{form name="thelia.admin.address.create"}
|
|
|
|
{* Capture the dialog body, to pass it to the generic dialog *}
|
|
{capture "address_creation_dialog"}
|
|
|
|
{include file='includes/customer_address_form_fields.html' customer_id=$customer_id page=$page}
|
|
|
|
{module_include location='customer_address_create_form'}
|
|
|
|
{/capture}
|
|
|
|
{include
|
|
file = "includes/generic-create-dialog.html"
|
|
|
|
dialog_id = "address_creation_dialog"
|
|
dialog_title = {intl l="Create a customer address"}
|
|
dialog_body = {$smarty.capture.address_creation_dialog nofilter}
|
|
|
|
dialog_ok_label = {intl l="Create this address"}
|
|
dialog_cancel_label = {intl l="Cancel"}
|
|
|
|
form_action = {url path='/admin/address/create'}
|
|
form_enctype = {form_enctype form=$form}
|
|
form_error_message = $form_error_message
|
|
}
|
|
|
|
{/form}
|
|
|
|
{* -- Update an Address ----------------------------------------------------- *}
|
|
|
|
{if $address_id > 0}
|
|
{form name="thelia.admin.address.update"}
|
|
|
|
{* Capture the dialog body, to pass it to the generic dialog *}
|
|
|
|
{capture "address_update_dialog"}
|
|
<input type="hidden" name="address_id" id="address_update_id" value="{$address_id}" />
|
|
|
|
{include file='includes/customer_address_form_fields.html' customer_id=$customer_id page=$page}
|
|
{module_include location='customer_address_update_form'}
|
|
{/capture}
|
|
|
|
{include
|
|
file = "includes/generic-create-dialog.html"
|
|
|
|
dialog_id = "address_update_dialog"
|
|
dialog_title = {intl l="Edit a customer address"}
|
|
dialog_body = {$smarty.capture.address_update_dialog nofilter}
|
|
|
|
dialog_ok_label = {intl l="Save this address"}
|
|
dialog_cancel_label = {intl l="Cancel"}
|
|
|
|
form_action = {url path="/admin/address/save"}
|
|
form_enctype = {form_enctype form=$form}
|
|
form_error_message = $form_error_message
|
|
}
|
|
|
|
{/form}
|
|
{/if}
|
|
|
|
{* -- Confirm making an address the default --------------------------------- *}
|
|
|
|
{capture "use_address_dialog"}
|
|
<input type="hidden" name="address_id" id="address_use_id" value="" />
|
|
|
|
<input type="hidden" name="customer_id" value="{$customer_id}">
|
|
<input type="hidden" name="page" value="{$page}">
|
|
{/capture}
|
|
|
|
{include
|
|
file = "includes/generic-confirm-dialog.html"
|
|
|
|
dialog_id = "use_address_dialog"
|
|
dialog_title = {intl l="Use address by default"}
|
|
dialog_message = {intl l="Do you really want to use this address by default ?"}
|
|
|
|
form_action = {url path='/admin/address/use'}
|
|
form_content = {$smarty.capture.use_address_dialog nofilter}
|
|
}
|
|
|
|
{* -- Delete confirmation dialog -------------------------------------------- *}
|
|
|
|
{capture "delete_address_dialog"}
|
|
<input type="hidden" name="address_id" id="address_delete_id" value="" />
|
|
|
|
<input type="hidden" name="customer_id" value="{$customer_id}">
|
|
<input type="hidden" name="page" value="{$page}">
|
|
|
|
{module_include location='customer_address_delete_form'}
|
|
{/capture}
|
|
|
|
{include
|
|
file = "includes/generic-confirm-dialog.html"
|
|
|
|
dialog_id = "delete_address_dialog"
|
|
dialog_title = {intl l="Delete address"}
|
|
dialog_message = {intl l="Do you really want to delete this address ?"}
|
|
|
|
form_action = {url path='/admin/address/delete'}
|
|
form_content = {$smarty.capture.delete_address_dialog nofilter}
|
|
}
|
|
{/block}
|
|
|
|
|
|
{block name="javascript-initialization"}
|
|
|
|
{javascripts file='assets/js/main.js'}
|
|
<script src="{$asset_url}"></script>
|
|
{/javascripts}
|
|
|
|
<script>
|
|
$(function() {
|
|
|
|
$("a.customer-address-delete").click(function(e){
|
|
$("#address_delete_id").val($(this).data("id"));
|
|
});
|
|
|
|
$("a.customer-address-use").click(function(e){
|
|
$("#address_use_id").val($(this).data("id"));
|
|
});
|
|
|
|
// JS stuff for creation form
|
|
{include
|
|
file = "includes/generic-js-dialog.html"
|
|
dialog_id = "address_creation_dialog"
|
|
form_name = "thelia.admin.address.create"
|
|
}
|
|
|
|
$(document).on("hidden.bs.modal", "#edit_address_dialog", function(ev){
|
|
$("#edit_address_dialog").remove();
|
|
});
|
|
|
|
// If $address_id is defined, show the edit dialog
|
|
{if $address_id > 0}
|
|
|
|
// JS stuff for update form
|
|
{include
|
|
file = "includes/generic-js-dialog.html"
|
|
dialog_id = "address_update_dialog"
|
|
form_name = "thelia.admin.address.update"
|
|
}
|
|
|
|
$('#address_update_dialog').modal();
|
|
{/if}
|
|
});
|
|
</script>
|
|
{/block}
|
|
|
|
{block name="javascript-last-call"}
|
|
{module_include location='customer-edit-js'}
|
|
{/block}
|