md
This commit is contained in:
parent
a3776cdaf2
commit
bd82a98c7e
@ -364,7 +364,10 @@ public class EmisWaybillController extends EmisBaseController
|
||||
"sendProvince","sendProvinceName",
|
||||
"sendCity","sendCityName",
|
||||
"transLineType","transLineName",
|
||||
"productType","productName"
|
||||
"productType","productName",
|
||||
"sendSiteName","destinationName",
|
||||
"dispatchUnderlingSiteName"
|
||||
|
||||
|
||||
},value= EmisWaybill.class,type= JacksonFilter.JscksonFilterType.RESPONSE)
|
||||
@RequestMapping("/listSimple")
|
||||
|
||||
@ -623,11 +623,14 @@ public class EmisBaseService {
|
||||
// 派送方式
|
||||
order.put("dispatchType", dispatchType);
|
||||
|
||||
String agingFlag="";
|
||||
EmisTransProduct emisTransProduct=getTransProductByCode(waybill.getProductType());
|
||||
if(emisTransProduct!=null) {
|
||||
order.put("agingFlag", emisTransProduct.getAgingFlag());
|
||||
agingFlag=emisTransProduct.getAgingFlag();
|
||||
}
|
||||
|
||||
order.put("agingFlag", agingFlag);
|
||||
|
||||
order.put("kdgs", "TANEX");
|
||||
order.put("pdfInfo", waybill.getThirdCode());
|
||||
|
||||
@ -789,11 +792,12 @@ public class EmisBaseService {
|
||||
order.put("billWeight", billWeight);
|
||||
order.put("totalVolume", totalVolume);
|
||||
|
||||
Integer subSeqNum=1;
|
||||
if(isSubBill) {
|
||||
// 子单的序号
|
||||
Integer subSeqNum=Integer.valueOf(subBillSuffix);
|
||||
order.put("subSeqNum", subSeqNum);
|
||||
subSeqNum=Integer.valueOf(subBillSuffix);
|
||||
}
|
||||
order.put("subSeqNum", subSeqNum);
|
||||
|
||||
String packType="";
|
||||
if(!StringUtils.isEmpty(waybill.getPackType())){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user