Browse Source

新增仓库打印订单的功能

xian 6 years ago
parent
commit
e3b4e094f9

+ 1 - 1
watero-rst-web/src/main/java/com/iamberry/rst/controllers/order/AwaitSendController.java

@@ -143,7 +143,7 @@ public class AwaitSendController {
         List<SalesOrderItem> items = salesOrderService.listSalesOrderItem(item);
         for (SalesOrderItem temp : items) {
             Map<String, Object> product1 = new HashMap<String, Object>();
-            product1.put("GoodsName", temp.getItemProductName() + "(" + (temp.getItemProductColor()) + ")");
+            product1.put("GoodsName", temp.getItemProductName() + "(" + (temp.getItemProductColor()) + ")*" + temp.getItemNum());
             product1.put("GoodsWeight", 10.0);
             Commodity.add(product1);
         }