代码更新
This commit is contained in:
@@ -787,6 +787,17 @@ public class CheckOutBillServiceImpl implements CheckOutBillService {
|
||||
throw new BadRequestException("查不到出库单信息");
|
||||
}
|
||||
|
||||
// 如果是发货出库则判断运费和物流公司不能为空
|
||||
String bill_type = jo_mst.getString("bill_type");
|
||||
if (StrUtil.equals(bill_type, "1001")) {
|
||||
String trans_code = jo_mst.getString("trans_code");
|
||||
String estimated_freight = jo_mst.getString("estimated_freight");
|
||||
|
||||
if (ObjectUtil.isEmpty(trans_code)) throw new BadRequestException("物流公司不能为空");
|
||||
if (ObjectUtil.isEmpty(estimated_freight)) throw new BadRequestException("预估运费不能为空");
|
||||
|
||||
}
|
||||
|
||||
//查询生成和未分配完的明细
|
||||
JSONArray dtls = WQL.getWO("QST_IVT_CHECKOUTBILL")
|
||||
.addParam("flag", "2")
|
||||
@@ -1010,6 +1021,17 @@ public class CheckOutBillServiceImpl implements CheckOutBillService {
|
||||
throw new BadRequestException("查不到出库单信息");
|
||||
}
|
||||
|
||||
// 如果是发货出库则判断运费和物流公司不能为空
|
||||
String bill_type = jo_mst.getString("bill_type");
|
||||
if (StrUtil.equals(bill_type, "1001")) {
|
||||
String trans_code = jo_mst.getString("trans_code");
|
||||
String estimated_freight = jo_mst.getString("estimated_freight");
|
||||
|
||||
if (ObjectUtil.isEmpty(trans_code)) throw new BadRequestException("物流公司不能为空");
|
||||
if (ObjectUtil.isEmpty(estimated_freight)) throw new BadRequestException("预估运费不能为空");
|
||||
|
||||
}
|
||||
|
||||
//查询生成和未分配完的明细
|
||||
JSONArray dtls = WQL.getWO("QST_IVT_CHECKOUTBILL")
|
||||
.addParam("flag", "2")
|
||||
@@ -3659,6 +3681,17 @@ public class CheckOutBillServiceImpl implements CheckOutBillService {
|
||||
throw new BadRequestException("当前订单无可分配出库明细");
|
||||
}
|
||||
|
||||
// 如果是发货出库则判断运费和物流公司不能为空
|
||||
String bill_type = jo_mst.getString("bill_type");
|
||||
if (StrUtil.equals(bill_type, "1001")) {
|
||||
String trans_code = jo_mst.getString("trans_code");
|
||||
String estimated_freight = jo_mst.getString("estimated_freight");
|
||||
|
||||
if (ObjectUtil.isEmpty(trans_code)) throw new BadRequestException("物流公司不能为空");
|
||||
if (ObjectUtil.isEmpty(estimated_freight)) throw new BadRequestException("预估运费不能为空");
|
||||
|
||||
}
|
||||
|
||||
//查询生成和未分配完的明细
|
||||
JSONObject dtl = WQL.getWO("QST_IVT_CHECKOUTBILL")
|
||||
.addParam("flag", "2")
|
||||
|
||||
@@ -456,16 +456,6 @@ public class InAndOutRetrunServiceImpl implements InAndOutReturnService {
|
||||
// 1.回传sap
|
||||
JSONArray paramSapMstArr = new JSONArray();
|
||||
|
||||
String estimated_freight = jo_mst.getString("estimated_freight");
|
||||
String trans_code = jo_mst.getString("trans_code");
|
||||
|
||||
if (ObjectUtil.isEmpty(estimated_freight)) {
|
||||
throw new BadRequestException("运费不能为空");
|
||||
}
|
||||
if (ObjectUtil.isEmpty(trans_code)) {
|
||||
throw new BadRequestException("物流公司不能为空");
|
||||
}
|
||||
|
||||
JSONObject paramSapMst = new JSONObject();
|
||||
paramSapMst.put("ZACTION", "P");
|
||||
paramSapMst.put("BUDAT", jo_mst.getString("biz_date"));
|
||||
@@ -931,16 +921,6 @@ public class InAndOutRetrunServiceImpl implements InAndOutReturnService {
|
||||
// 1.回传sap
|
||||
JSONArray paramSapMstArr = new JSONArray();
|
||||
|
||||
String estimated_freight = jo_mst.getString("estimated_freight");
|
||||
String trans_code = jo_mst.getString("trans_code");
|
||||
|
||||
if (ObjectUtil.isEmpty(estimated_freight)) {
|
||||
throw new BadRequestException("运费不能为空");
|
||||
}
|
||||
if (ObjectUtil.isEmpty(trans_code)) {
|
||||
throw new BadRequestException("物流公司不能为空");
|
||||
}
|
||||
|
||||
JSONObject paramSapMst = new JSONObject();
|
||||
paramSapMst.put("ZACTION", "P");
|
||||
paramSapMst.put("BUDAT", jo_mst.getString("biz_date"));
|
||||
|
||||
Reference in New Issue
Block a user