Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

add.htm 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. {include file="public/layout" /}
  2. <body class="bodystyle">
  3. <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
  4. <div id="append_parent"></div>
  5. <div id="ajaxwaitid"></div>
  6. <div class="page">
  7. <form class="form-horizontal" id="post_form" action="{:url('Discount/add')}" method="post">
  8. <div class="ncap-form-default">
  9. <dl class="row">
  10. <dt class="tit"><em>*</em>商品信息</dt>
  11. <dd class="opt">
  12. <img src="{$info.litpic|get_default_pic=###}" alt="" style="max-width: 70px;">
  13. {$info.title}<br>
  14. 商品ID:{$info.aid}
  15. <p class="notic"></p>
  16. </dd>
  17. </dl>
  18. {if condition="1 == $shopConfig['shop_open'] "}
  19. {if condition="!isset($shopConfig['shop_open_spec']) || 0 == $shopConfig['shop_open_spec']"}
  20. <dl class="row">
  21. <dt class="tit">
  22. <label for="limit"><em>*</em>商品售价</label>
  23. </dt>
  24. <dd class="opt">
  25. {$info.users_price}
  26. </dd>
  27. </dl>
  28. <dl class="row">
  29. <dt class="tit">
  30. <label for="discount_price"><em>*</em>限时折扣价格</label>
  31. </dt>
  32. <dd class="opt">
  33. <input type="text" name="discount_price" value="" id="discount_price" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  34. <span class="err"></span>
  35. <p class="notic"></p>
  36. </dd>
  37. </dl>
  38. <dl class="row">
  39. <dt class="tit">
  40. <label for="total_stock"><em>*</em>限时折扣库存</label>
  41. </dt>
  42. <dd class="opt">
  43. <input type="text" name="discount_stock" value="" id="discount_stock" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  44. <span class="err"></span>
  45. <p class="notic">注:限时折扣库存为独立库存,与主商品库存不同步</p>
  46. </dd>
  47. </dl>
  48. {else/}
  49. {empty name="$HtmlTable"}
  50. <dl class="row">
  51. <dt class="tit">
  52. <label for="limit"><em>*</em>商品售价</label>
  53. </dt>
  54. <dd class="opt">
  55. {$info.users_price}
  56. </dd>
  57. </dl>
  58. <dl class="row">
  59. <dt class="tit">
  60. <label for="discount_price"><em>*</em>限时折扣价格</label>
  61. </dt>
  62. <dd class="opt">
  63. <input type="text" name="discount_price" value="" id="discount_price" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  64. <span class="err"></span>
  65. <p class="notic"></p>
  66. </dd>
  67. </dl>
  68. <dl class="row">
  69. <dt class="tit">
  70. <label for="total_stock"><em>*</em>限时折扣库存</label>
  71. </dt>
  72. <dd class="opt">
  73. <input type="text" name="discount_stock" value="" id="discount_stock" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  74. <span class="err"></span>
  75. <p class="notic">注:限时折扣库存为独立库存,与主商品库存不同步</p>
  76. </dd>
  77. </dl>
  78. {else /}
  79. <dl class="row">
  80. <dt class="tit">
  81. <label for="users_price">商品规格 </label>
  82. </dt>
  83. <dd class="opt">
  84. <div id='SpecTempLateDiv'>
  85. {$HtmlTable}
  86. </div>
  87. <span class="err"></span>
  88. <p class="notic"></p>
  89. </dd>
  90. </dl>
  91. <script>
  92. $(function () {
  93. // 合并单元格
  94. MergeCells();
  95. });
  96. // 合并单元格
  97. function MergeCells() {
  98. var tab = document.getElementById("spec_input_tab");
  99. var maxCol = 2, val, count, start;
  100. if (tab != null) {
  101. for (var col = maxCol - 1; col >= 0; col--) {
  102. count = 1;
  103. val = "";
  104. for (var i = 0; i < tab.rows.length; i++) {
  105. if (val == tab.rows[i].cells[col].innerHTML) {
  106. count++;
  107. } else {
  108. if (count > 1) { //合并
  109. start = i - count;
  110. tab.rows[start].cells[col].rowSpan = count;
  111. for (var j = start + 1; j < i; j++) {
  112. tab.rows[j].cells[col].style.display = "none";
  113. }
  114. count = 1;
  115. }
  116. val = tab.rows[i].cells[col].innerHTML;
  117. }
  118. }
  119. if (count > 1) { //合并,最后几行相同的情况下
  120. start = i - count;
  121. tab.rows[start].cells[col].rowSpan = count;
  122. for (var j = start + 1; j < i; j++) {
  123. tab.rows[j].cells[col].style.display = "none";
  124. }
  125. }
  126. }
  127. }
  128. }
  129. // 批量设置价格
  130. function BulkSetPrice(obj) {
  131. layer.prompt({
  132. title: '批量设置价格',
  133. formType: 3,
  134. id: 'BulkSetPrice',
  135. btnAlign:'r',
  136. closeBtn: 3,
  137. shade: layer_shade,
  138. btn: ['确定', '关闭'],
  139. closeBtn: 0,
  140. success: function(layero, index){
  141. $("#BulkSetPrice").find('input').attr('placeholder', '批量设置限时折扣价格');
  142. $("#BulkSetPrice").find('input').attr('onkeyup', "this.value=this.value.replace(/[^\\d.]/g,'')");
  143. $("#BulkSetPrice").find('input').attr('onpaste', "this.value=this.value.replace(/[^\\d.]/g,'')");
  144. }
  145. }, function(price, index){
  146. layer.close(index);
  147. // 规格中的价格
  148. $('.spec_discount_price').val(price);
  149. });
  150. }
  151. // 批量设置库存
  152. function BulkSetStock(obj) {
  153. layer.prompt({
  154. title: '批量设置库存',
  155. formType: 3,
  156. id: 'BulkSetStock',
  157. btnAlign:'r',
  158. closeBtn: 3,
  159. shade: layer_shade,
  160. btn: ['确定', '关闭'],
  161. closeBtn: 0,
  162. success: function(layero, index){
  163. $("#BulkSetStock").find('input').attr('placeholder', '批量设置限时折扣库存');
  164. $("#BulkSetStock").find('input').attr('onkeyup', "this.value=this.value.replace(/[^\\d.]/g,'')");
  165. $("#BulkSetStock").find('input').attr('onpaste', "this.value=this.value.replace(/[^\\d.]/g,'')");
  166. }
  167. }, function(stock, index){
  168. layer.close(index);
  169. // 单个库存
  170. $('.spec_discount_stock').val(stock);
  171. $('.spec_discount_stock').attr('data-old_stock',stock);
  172. });
  173. }
  174. </script>
  175. {/empty}
  176. {/if}
  177. {/if}
  178. <dl class="row">
  179. <dt class="tit">
  180. <label for="sales"><em>*</em>虚拟销量</label>
  181. </dt>
  182. <dd class="opt">
  183. <input type="text" name="virtual_sales" value="0" id="virtual_sales" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  184. <span class="err"></span>
  185. <p class="notic"></p>
  186. </dd>
  187. </dl>
  188. <div class="bot">
  189. <input type="hidden" name="aid" value="{$info.aid}" />
  190. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  191. </div>
  192. </div>
  193. </form>
  194. </div>
  195. <script type="text/javascript">
  196. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  197. // 判断输入框是否为空
  198. function checkForm(){
  199. {empty name="$HtmlTable"}
  200. if($('input[name=discount_price]').val() == ''){
  201. showErrorMsg('限时折扣价格不能为空!');
  202. $('input[name=discount_price]').focus();
  203. return false;
  204. }
  205. if($('input[name=discount_stock]').val() == ''){
  206. showErrorMsg('限时折扣库存不能为空!');
  207. $('input[name=discount_stock]').focus();
  208. return false;
  209. }
  210. {else /}
  211. var ret = 0;
  212. $(".spec_discount_price").each(function(){
  213. if ($(this).val() == '') {
  214. showErrorMsg('限时折扣价格不能为空!');
  215. $(this).focus();
  216. ret = 1;
  217. return false;
  218. }
  219. });
  220. if (1 == ret){
  221. return false;
  222. }
  223. $(".spec_discount_stock").each(function(){
  224. if ($(this).val() == '') {
  225. showErrorMsg('限时折扣库存不能为空!');
  226. $(this).focus();
  227. ret = 1;
  228. return false;
  229. }
  230. });
  231. if (1 == ret){
  232. return false;
  233. }
  234. {/empty}
  235. layer_loading('正在处理');
  236. $.ajax({
  237. type : 'post',
  238. url : "{:url('Discount/add', ['_ajax'=>1])}",
  239. data : $('#post_form').serialize(),
  240. dataType : 'json',
  241. success : function(res){
  242. layer.closeAll();
  243. if(res.code == 1){
  244. var _parent = parent;
  245. _parent.layer.close(parentObj);
  246. _parent.layer.msg(res.msg, {icon: 1, shade: layer_shade, time: 1000}, function(){
  247. _parent.window.location.reload();
  248. });
  249. }else{
  250. showErrorMsg(res.msg);
  251. }
  252. },
  253. error: function(e){
  254. layer.closeAll();
  255. showErrorAlert(e.responseText);
  256. }
  257. });
  258. }
  259. </script>
  260. {include file="public/footer" /}