添加字段
This commit is contained in:
parent
59d372895c
commit
41338cb5da
|
|
@ -100,6 +100,7 @@ public class CgdInfoEntity implements Serializable {
|
||||||
private String tagName;
|
private String tagName;
|
||||||
private String wlParamInfo;
|
private String wlParamInfo;
|
||||||
private String kcsl;
|
private String kcsl;
|
||||||
|
private String dhbl;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -136,6 +136,7 @@ public class NuInvoicingCgdInfo implements Serializable {
|
||||||
/**单据状态 0待入库 1挂账中 2已入库 3已销账*/
|
/**单据状态 0待入库 1挂账中 2已入库 3已销账*/
|
||||||
@Dict(dicCode = "cgd_wl_status")
|
@Dict(dicCode = "cgd_wl_status")
|
||||||
private String status;
|
private String status;
|
||||||
|
private String dhbl;
|
||||||
|
|
||||||
|
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
|
|
|
||||||
|
|
@ -340,6 +340,7 @@ public class NuInvoicingCgdMainServiceImpl extends ServiceImpl<NuInvoicingCgdMai
|
||||||
cgdInfo.setCategoryId(wlInfo.getCategoryId());
|
cgdInfo.setCategoryId(wlInfo.getCategoryId());
|
||||||
cgdInfo.setTypeId(wlInfo.getTypeId());
|
cgdInfo.setTypeId(wlInfo.getTypeId());
|
||||||
cgdInfo.setMedicationId(wlInfo.getMedicationId());
|
cgdInfo.setMedicationId(wlInfo.getMedicationId());
|
||||||
|
cgdInfo.setDhbl(params.getDhbl());
|
||||||
BigDecimal sl = new BigDecimal(params.getPurchaseQuantity());
|
BigDecimal sl = new BigDecimal(params.getPurchaseQuantity());
|
||||||
BigDecimal dj = params.getReferenceUnitPrice();
|
BigDecimal dj = params.getReferenceUnitPrice();
|
||||||
BigDecimal wlzj = sl.multiply(dj);
|
BigDecimal wlzj = sl.multiply(dj);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue