|
|
@@ -122,7 +122,7 @@ public class BusinessFsInConfirmServiceImpl extends ServiceImpl<BusinessFsInConf
|
|
122
|
122
|
storeWareDetailVO.setGrainAttributeName(grainAttribute.getEnumname());
|
|
123
|
123
|
}
|
|
124
|
124
|
|
|
125
|
|
- storeWareDetailVO.setInPrice(businessStoreWareDetail.getInPrice());
|
|
|
125
|
+ storeWareDetailVO.setInPrice(businessStoreWareDetail.getInPrice() == null ? "0.0" : businessStoreWareDetail.getInPrice());
|
|
126
|
126
|
|
|
127
|
127
|
//获取保存的确认单数量
|
|
128
|
128
|
Double sum = businessFsInConfirmMapper.selectSum(id, businessStoreWareDetail.getGrainKind());
|