...
|
...
|
@@ -2932,6 +2932,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
JSONObject orderCargoObj = new JSONObject();
|
|
|
orderCargoObj.put("name", orderInfo.getGoodsInfo());//货物名称
|
|
|
orderCargoObj.put("count", 1);//货物数量
|
|
|
orderCargoObj.put("unit", product.getMeasuremenCode());
|
|
|
orderCargoObj.put("stdUnit", "035");//货品单位
|
|
|
orderCargoObj.put("sku", orderInfo.getSkup());//商品sku
|
|
|
orderCargoObj.put("seq", 1);//商品序号seq
|
...
|
...
|
@@ -2944,7 +2945,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
orderCargoObj.put("brand", brand.getBrandName());//商品品牌
|
|
|
orderCargoObj.put("regPrice", orderInfo.getGoodsPrice());//商品备案申报价格
|
|
|
orderCargoObj.put("secUnit", "025");//第二计量单位(编码)
|
|
|
orderCargoObj.put("secQty", 1.00000);//第二计量单位 数量*商品数量 5位小数
|
|
|
orderCargoObj.put("secQty", BigDecimal.valueOf(1.00000).setScale(5));//第二计量单位 数量*商品数量 5位小数
|
|
|
orderCargoArr.add(orderCargoObj);
|
|
|
orderListObj.put("cargo", orderCargoArr);
|
|
|
jsonObj.put("orderList", orderListArray);
|
...
|
...
|
|