From 5d7ab4ea0ef70f7930cc7b3a4209ded1b1c83115 Mon Sep 17 00:00:00 2001 From: cy <1664593601@qq.com> Date: 星期四, 26 十月 2023 20:14:21 +0800 Subject: [PATCH] feat: 根据调拨单生成出库单,根据出库单id进行出库 --- consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java b/consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java index aec0b4f..df989bb 100644 --- a/consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java +++ b/consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java @@ -52,6 +52,14 @@ @JsonIgnore protected boolean isset_warehouseName = false; + private Long inWarehouseId = null; + @JsonIgnore + protected boolean isset_inWarehouseId = false; + + private String inWarehouseName = null; + @JsonIgnore + protected boolean isset_inWarehouseName = false; + private Long agencyId = null; @JsonIgnore protected boolean isset_agencyId = false; @@ -227,6 +235,34 @@ return this.warehouseName == null || this.warehouseName.length() == 0; } + public Long getInWarehouseId() { + return this.inWarehouseId; + } + + public void setInWarehouseId(Long inWarehouseId) { + this.inWarehouseId = inWarehouseId; + this.isset_inWarehouseId = true; + } + + @JsonIgnore + public boolean isEmptyInWarehouseId() { + return this.inWarehouseId == null; + } + + public String getInWarehouseName() { + return this.inWarehouseName; + } + + public void setInWarehouseName(String inWarehouseName) { + this.inWarehouseName = inWarehouseName; + this.isset_inWarehouseName = true; + } + + @JsonIgnore + public boolean isEmptyInWarehouseName() { + return this.inWarehouseName == null || this.inWarehouseName.length() == 0; + } + public Long getAgencyId() { return this.agencyId; } @@ -340,6 +376,8 @@ .append("outputName=").append(this.outputName) .append("warehouseId=").append(this.warehouseId) .append("warehouseName=").append(this.warehouseName) + .append("inWarehouseId=").append(this.inWarehouseId) + .append("inWarehouseName=").append(this.inWarehouseName) .append("agencyId=").append(this.agencyId) .append("agencyName=").append(this.agencyName) .append("operatorId=").append(this.operatorId) @@ -388,6 +426,12 @@ if (this.isset_warehouseName) { l_wh_form_output.setWarehouseName(this.getWarehouseName()); } + if (this.isset_inWarehouseId) { + l_wh_form_output.setInWarehouseId(this.getInWarehouseId()); + } + if (this.isset_inWarehouseName) { + l_wh_form_output.setInWarehouseName(this.getInWarehouseName()); + } if (this.isset_agencyId) { l_wh_form_output.setAgencyId(this.getAgencyId()); } -- Gitblit v1.9.1