md
This commit is contained in:
parent
a36ec5f74a
commit
99728b9e93
@ -54,7 +54,7 @@ public class EmisTransProduct extends BaseEntity
|
||||
private String transType;
|
||||
/* 时效描述 */
|
||||
private String agingDesc;
|
||||
/* 失效标识 */
|
||||
/* 时效标识 */
|
||||
private String agingFlag;
|
||||
/* 最小时效 */
|
||||
private Integer minAging;
|
||||
|
||||
@ -402,6 +402,12 @@ public class EmisBaseService {
|
||||
// 派送方式
|
||||
order.put("dispatchType", dispatchType);
|
||||
|
||||
EmisTransProduct emisTransProduct=getTransProductByCode(waybill.getProductType());
|
||||
String agingFlag="";
|
||||
if(emisTransProduct!=null) {
|
||||
order.put("agingFlag", emisTransProduct.getAgingFlag());
|
||||
}
|
||||
|
||||
order.put("kdgs", "TANEX");
|
||||
order.put("pdfInfo", waybill.getThirdCode());
|
||||
|
||||
@ -424,6 +430,11 @@ public class EmisBaseService {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
String custName=waybill.getReceiveCompany();
|
||||
if ( "2".equals(waybill.getPaymentType()) || "4".equals(waybill.getPaymentType()) || "5".equals(waybill.getPaymentType()) ) {
|
||||
EmisCustomerUser custUser=getCustomerUserByMonthlyPayCode(waybill.getCustNo());
|
||||
|
||||
Loading…
Reference in New Issue
Block a user