This commit is contained in:
linfso 2024-08-13 14:36:14 +08:00
parent 55a7ffbfdc
commit 8037769dc3

View File

@ -1896,6 +1896,7 @@ public class EmisBaseService {
// k15 -回款联系人
// k16 -报关方式
// k17 -清关方式
// k18 -目的网点三字码
JSONObject extData = new JSONObject();
@ -1919,6 +1920,7 @@ public class EmisBaseService {
extData.put("k14",waybill.getSalesmen());
extData.put("k15",waybill.getPayee());
String customsEclaration="";
if(!StringUtils.isEmpty(waybill.getCustomsEclaration())){
customsEclaration=DictUtils.getDictLabel("emis_declare_mode",waybill.getCustomsEclaration());
@ -1932,6 +1934,8 @@ public class EmisBaseService {
}
extData.put("k17",customsClear);
extData.put("k18",destSite.getSizeCode3());
String pickupMethod="";
if(!StringUtils.isEmpty(waybill.getPickupMethod())){
pickupMethod=DictUtils.getDictLabel("emis_qujian_fangshi",waybill.getPickupMethod());