demand: 虚拟单相关字段加修改监控

committer: heyu
This commit is contained in:
aike 2025-07-01 17:32:15 +08:00
parent ac60b02465
commit da189a7ef8
2 changed files with 6 additions and 5 deletions

View File

@ -313,10 +313,16 @@ public class EmisWaybill extends BaseEntity
/* 是否超长 */
private String blOverLong;
/* 是否虚拟单.0:否,1:是 */
@TableField
@DataAuditField(fieldComment = "是否虚拟单")
private String blVirtual;
/* 主单号 */
@TableField
@DataAuditField(fieldComment = "主单号")
private String masterBillCode;
/* 虚拟单备注 */
@TableField
@DataAuditField(fieldComment = "虚拟单备注")
private String virtualRemark;
/* 是否付款 */

View File

@ -1130,11 +1130,6 @@ public class EmisWaybillServiceImpl extends EmisBaseService implements IEmisWayb
// 一口价模式
emisWaybillSave.setCalcFeeType("3");
}
if (StringUtils.isNotEmpty(emisWaybillSave.getMasterBillCode())) {
emisWaybillSave.setMasterBillCode(emisWaybillSave.getMasterBillCode());
}
}
private List<SysUser> getPayeeList(String userName) {