|
@@ -931,6 +931,12 @@ public class SyShippingDetailsController extends JeecgController<SyShippingDetai
|
|
|
pushvo.setMessage("该单据部分未提交,请全部提交再推送!");
|
|
|
return pushvo;
|
|
|
}
|
|
|
+ //处理克重
|
|
|
+ String weight = li.getGramWeight();
|
|
|
+ int index = weight.indexOf("克");
|
|
|
+ if(index > 0){
|
|
|
+ li.setGramWeight(weight.substring(0,weight.length()-1));
|
|
|
+ }
|
|
|
//查询主表
|
|
|
PushShippingVO pushShippingVO = syShippingDetailsService.pushSyShipping(id);
|
|
|
pushShippingVO.setPoNo(li.getPoNo());
|