md
This commit is contained in:
parent
6f09e960e5
commit
d5b882576c
@ -1,5 +1,6 @@
|
||||
package com.xdadan.erp.emis.domain.vo;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.xdadan.erp.emis.domain.EmisWaybill;
|
||||
import com.xdadan.erp.emis.domain.EmisWaybillAttachment;
|
||||
@ -258,12 +259,14 @@ public class WaybillOrder implements Serializable {
|
||||
|
||||
/* 揽收图片备注 */
|
||||
private String billPicSendRmk;
|
||||
/* 签收底单图片 */
|
||||
/* 派件签收底单图片 */
|
||||
private String billPicDispatchRmk;
|
||||
|
||||
// 货物图片
|
||||
private String billPicGoodsRmk;
|
||||
|
||||
/* 是否特殊报价 */
|
||||
private String blSpecialQuote;
|
||||
|
||||
/* 扩展信息 */
|
||||
/* 是否生成子单 1-是 0-否 */
|
||||
@ -522,6 +525,8 @@ public class WaybillOrder implements Serializable {
|
||||
voItem.setOverWeightNumber(dbWaybill.getOverWeightNumber());
|
||||
voItem.setFeeRemark(dbWaybill.getFeeRemark());
|
||||
|
||||
voItem.setBlSpecialQuote(dbWaybill.getBlSpecialQuote());
|
||||
|
||||
// voItem.setThirdCode(dbWaybill.getThirdCode());
|
||||
|
||||
voItem.setRealValue(dbWaybill.getRealValue());
|
||||
@ -737,6 +742,7 @@ public class WaybillOrder implements Serializable {
|
||||
// dbWaybill.setBlBill(this.getBlBill());
|
||||
// dbWaybill.setBlBillText(this.getBlBillText());
|
||||
|
||||
dbWaybill.setBlSpecialGoods(this.getBlSpecialQuote());
|
||||
dbWaybill.setBlOverWeight(this.getBlOverWeight());
|
||||
dbWaybill.setOverWeightNumber(this.getOverWeightNumber());
|
||||
|
||||
|
||||
@ -219,6 +219,10 @@ public class EmisWaybillServiceImpl extends EmisBaseService implements IEmisWayb
|
||||
gotImgBmk=gotImgBmk+attachment.getFileUrl()+",";
|
||||
}
|
||||
}
|
||||
signImgBmk=StringUtils.removeEnd(signImgBmk, ",");
|
||||
goodsImgBmk=StringUtils.removeEnd(goodsImgBmk, ",");
|
||||
gotImgBmk=StringUtils.removeEnd(gotImgBmk, ",");
|
||||
|
||||
|
||||
// private String billPicSendRmk;
|
||||
// /* 签收底单图片 */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user