Current Path : /var/www/alh/admin/view/template/sale/ |
Current File : /var/www/alh/admin/view/template/sale/coupon_form.tpl |
<?php echo $header; ?> <div id="content"> <div class="breadcrumb"> <?php foreach ($breadcrumbs as $breadcrumb) { ?> <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a> <?php } ?> </div> <?php if ($error_warning) { ?> <div class="warning"><?php echo $error_warning; ?></div> <?php } ?> <div class="box"> <div class="heading"> <h1><img src="view/image/customer.png" alt="" /> <?php echo $heading_title; ?></h1> <div class="buttons"><a onclick="$('#form').submit();" class="button"><?php echo $button_save; ?></a><a href="<?php echo $cancel; ?>" class="button"><?php echo $button_cancel; ?></a></div> </div> <div class="content"> <div id="tabs" class="htabs"><a href="#tab-general"><?php echo $tab_general; ?></a> <?php if ($coupon_id) { ?> <a href="#tab-history"><?php echo $tab_history; ?></a> <?php } ?> </div> <form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="form"> <div id="tab-general"> <table class="form"> <tr> <td><span class="required">*</span> <?php echo $entry_name; ?></td> <td><input name="name" value="<?php echo $name; ?>" /> <?php if ($error_name) { ?> <span class="error"><?php echo $error_name; ?></span> <?php } ?></td> </tr> <tr> <td><span class="required">*</span> <?php echo $entry_code; ?></td> <td><input type="text" name="code" value="<?php echo $code; ?>" /> <?php if ($error_code) { ?> <span class="error"><?php echo $error_code; ?></span> <?php } ?></td> </tr> <tr> <td><?php echo $entry_type; ?></td> <td><select name="type"> <?php if ($type == 'P') { ?> <option value="P" selected="selected"><?php echo $text_percent; ?></option> <?php } else { ?> <option value="P"><?php echo $text_percent; ?></option> <?php } ?> <?php if ($type == 'F') { ?> <option value="F" selected="selected"><?php echo $text_amount; ?></option> <?php } else { ?> <option value="F"><?php echo $text_amount; ?></option> <?php } ?> </select></td> </tr> <tr> <td><?php echo $entry_discount; ?></td> <td><input type="text" name="discount" value="<?php echo $discount; ?>" /></td> </tr> <tr> <td><?php echo $entry_total; ?></td> <td><input type="text" name="total" value="<?php echo $total; ?>" /></td> </tr> <tr> <td><?php echo $entry_logged; ?></td> <td><?php if ($logged) { ?> <input type="radio" name="logged" value="1" checked="checked" /> <?php echo $text_yes; ?> <input type="radio" name="logged" value="0" /> <?php echo $text_no; ?> <?php } else { ?> <input type="radio" name="logged" value="1" /> <?php echo $text_yes; ?> <input type="radio" name="logged" value="0" checked="checked" /> <?php echo $text_no; ?> <?php } ?></td> </tr> <tr> <td><?php echo $entry_shipping; ?></td> <td><?php if ($shipping) { ?> <input type="radio" name="shipping" value="1" checked="checked" /> <?php echo $text_yes; ?> <input type="radio" name="shipping" value="0" /> <?php echo $text_no; ?> <?php } else { ?> <input type="radio" name="shipping" value="1" /> <?php echo $text_yes; ?> <input type="radio" name="shipping" value="0" checked="checked" /> <?php echo $text_no; ?> <?php } ?></td> </tr> <tr> <td><?php echo $entry_product; ?></td> <td><input type="text" name="product" value="" /></td> </tr> <tr> <td> </td> <td><div id="coupon-product" class="scrollbox"> <?php $class = 'odd'; ?> <?php foreach ($coupon_product as $coupon_product) { ?> <?php $class = ($class == 'even' ? 'odd' : 'even'); ?> <div id="coupon-product<?php echo $coupon_product['product_id']; ?>" class="<?php echo $class; ?>"> <?php echo $coupon_product['name']; ?><img src="view/image/delete.png" alt="" /> <input type="hidden" name="coupon_product[]" value="<?php echo $coupon_product['product_id']; ?>" /> </div> <?php } ?> </div></td> </tr> <tr> <td><?php echo $entry_category; ?></td> <td><input type="text" name="category" value="" /></td> </tr> <tr> <td> </td> <td><div id="coupon-category" class="scrollbox"> <?php $class = 'odd'; ?> <?php foreach ($coupon_category as $coupon_category) { ?> <?php $class = ($class == 'even' ? 'odd' : 'even'); ?> <div id="coupon-category<?php echo $coupon_category['category_id']; ?>" class="<?php echo $class; ?>"> <?php echo $coupon_category['name']; ?><img src="view/image/delete.png" alt="" /> <input type="hidden" name="coupon_category[]" value="<?php echo $coupon_category['category_id']; ?>" /> </div> <?php } ?> </div></td> </tr> <tr> <td><?php echo $entry_date_start; ?></td> <td><input type="text" name="date_start" value="<?php echo $date_start; ?>" size="12" id="date-start" /></td> </tr> <tr> <td><?php echo $entry_date_end; ?></td> <td><input type="text" name="date_end" value="<?php echo $date_end; ?>" size="12" id="date-end" /></td> </tr> <tr> <td><?php echo $entry_uses_total; ?></td> <td><input type="text" name="uses_total" value="<?php echo $uses_total; ?>" /></td> </tr> <tr> <td><?php echo $entry_uses_customer; ?></td> <td><input type="text" name="uses_customer" value="<?php echo $uses_customer; ?>" /></td> </tr> <tr> <td><?php echo $entry_status; ?></td> <td><select name="status"> <?php if ($status) { ?> <option value="1" selected="selected"><?php echo $text_enabled; ?></option> <option value="0"><?php echo $text_disabled; ?></option> <?php } else { ?> <option value="1"><?php echo $text_enabled; ?></option> <option value="0" selected="selected"><?php echo $text_disabled; ?></option> <?php } ?> </select></td> </tr> </table> </div> <?php if ($coupon_id) { ?> <div id="tab-history"> <div id="history"></div> </div> <?php } ?> </form> </div> </div> </div> <script type="text/javascript"><!-- $('input[name=\'category[]\']').bind('change', function() { var filter_category_id = this; $.ajax({ url: 'index.php?route=catalog/product/autocomplete&token=<?php echo $token; ?>&filter_category_id=' + filter_category_id.value + '&limit=10000', dataType: 'json', success: function(json) { for (i = 0; i < json.length; i++) { if ($(filter_category_id).attr('checked') == 'checked') { $('#coupon-product' + json[i]['product_id']).remove(); $('#coupon-product').append('<div id="coupon-product' + json[i]['product_id'] + '">' + json[i]['name'] + '<img src="view/image/delete.png" alt="" /><input type="hidden" name="coupon_product[]" value="' + json[i]['product_id'] + '" /></div>'); } else { $('#coupon-product' + json[i]['product_id']).remove(); } } $('#coupon-product div:odd').attr('class', 'odd'); $('#coupon-product div:even').attr('class', 'even'); } }); }); $('input[name=\'product\']').autocomplete({ delay: 500, source: function(request, response) { $.ajax({ url: 'index.php?route=catalog/product/autocomplete&token=<?php echo $token; ?>&filter_name=' + encodeURIComponent(request.term), dataType: 'json', success: function(json) { response($.map(json, function(item) { return { label: item.name, value: item.product_id } })); } }); }, select: function(event, ui) { $('#coupon-product' + ui.item.value).remove(); $('#coupon-product').append('<div id="coupon-product' + ui.item.value + '">' + ui.item.label + '<img src="view/image/delete.png" alt="" /><input type="hidden" name="coupon_product[]" value="' + ui.item.value + '" /></div>'); $('#coupon-product div:odd').attr('class', 'odd'); $('#coupon-product div:even').attr('class', 'even'); $('input[name=\'product\']').val(''); return false; }, focus: function(event, ui) { return false; } }); $('#coupon-product div img').live('click', function() { $(this).parent().remove(); $('#coupon-product div:odd').attr('class', 'odd'); $('#coupon-product div:even').attr('class', 'even'); }); $('input[name=\'category\']').autocomplete({ delay: 500, source: function(request, response) { $.ajax({ url: 'index.php?route=catalog/category/autocomplete&token=<?php echo $token; ?>&filter_name=' + encodeURIComponent(request.term), dataType: 'json', success: function(json) { response($.map(json, function(item) { return { label: item.name, value: item.category_id } })); } }); }, select: function(event, ui) { $('#coupon-category' + ui.item.value).remove(); $('#coupon-category').append('<div id="product-category' + ui.item.value + '">' + ui.item.label + '<img src="view/image/delete.png" alt="" /><input type="hidden" name="coupon_category[]" value="' + ui.item.value + '" /></div>'); $('#coupon-category div:odd').attr('class', 'odd'); $('#coupon-category div:even').attr('class', 'even'); return false; }, focus: function(event, ui) { return false; } }); $('#coupon-category div img').live('click', function() { $(this).parent().remove(); $('#coupon-category div:odd').attr('class', 'odd'); $('#coupon-category div:even').attr('class', 'even'); }); //--></script> <script type="text/javascript"><!-- $('#date-start').datepicker({dateFormat: 'yy-mm-dd'}); $('#date-end').datepicker({dateFormat: 'yy-mm-dd'}); //--></script> <?php if ($coupon_id) { ?> <script type="text/javascript"><!-- $('#history .pagination a').live('click', function() { $('#history').load(this.href); return false; }); $('#history').load('index.php?route=sale/coupon/history&token=<?php echo $token; ?>&coupon_id=<?php echo $coupon_id; ?>'); //--></script> <?php } ?> <script type="text/javascript"><!-- $('#tabs a').tabs(); //--></script> <?php echo $footer; ?>