|
@@ -229,6 +229,7 @@
|
|
<th style="text-align: center;" width="25" >产品颜色</th>
|
|
<th style="text-align: center;" width="25" >产品颜色</th>
|
|
<th style="text-align: center;" width="10">原价</th>
|
|
<th style="text-align: center;" width="10">原价</th>
|
|
<th style="text-align: center;" width="10">售价</th>
|
|
<th style="text-align: center;" width="10">售价</th>
|
|
|
|
+ <th style="text-align: center;" width="10">成本价</th>
|
|
<th style="text-align: center;" width="25">产品编码</th>
|
|
<th style="text-align: center;" width="25">产品编码</th>
|
|
<th style="text-align: center;" width="10">数量</th>
|
|
<th style="text-align: center;" width="10">数量</th>
|
|
<th style="text-align: center;" width="10">小结</th>
|
|
<th style="text-align: center;" width="10">小结</th>
|
|
@@ -243,6 +244,7 @@
|
|
<td>${item.itemProductColor}</td>
|
|
<td>${item.itemProductColor}</td>
|
|
<td style="width: 40px;"><input type="text" class="input-text input-number color_price decimal_input" style="text-align: center;" value="${((item.itemProductPrice/100)?string("0.##"))!''}" name="" id="" placeholder="售价" onkeyup="keyFunDecimal($(this),9999999,0)" myMinVal="0" myMaxVal="9999999"></td>
|
|
<td style="width: 40px;"><input type="text" class="input-text input-number color_price decimal_input" style="text-align: center;" value="${((item.itemProductPrice/100)?string("0.##"))!''}" name="" id="" placeholder="售价" onkeyup="keyFunDecimal($(this),9999999,0)" myMinVal="0" myMaxVal="9999999"></td>
|
|
<td style="width: 40px;"><input type="text" class="input-text input-number color_discount decimal_input" style="text-align: center;" value="${((item.itemProductDiscount/100)?string("0.##"))!''}" name="" id="" placeholder="售价" onkeyup="keyFunDecimal($(this),9999999,0)" myMinVal="0" myMaxVal="9999999"></td>
|
|
<td style="width: 40px;"><input type="text" class="input-text input-number color_discount decimal_input" style="text-align: center;" value="${((item.itemProductDiscount/100)?string("0.##"))!''}" name="" id="" placeholder="售价" onkeyup="keyFunDecimal($(this),9999999,0)" myMinVal="0" myMaxVal="9999999"></td>
|
|
|
|
+ <td style="width: 40px;"><input type="text" class="input-text input-number item_cost decimal_input" style="text-align: center;" value="${((item.itemCost/100)?string("0.##"))!''}" name="" id="" placeholder="成本价" onkeyup="keyFunDecimal($(this),9999999,0)" myMinVal="0" myMaxVal="9999999"></td>
|
|
<td>${item.itemColorBar}</td>
|
|
<td>${item.itemColorBar}</td>
|
|
<td style="width: 30px;">
|
|
<td style="width: 30px;">
|
|
<input type="text"
|
|
<input type="text"
|