领料出库到线边库。

This commit is contained in:
JinLu.Yin 2022-09-13 22:41:20 +08:00
parent 8bfb79a6de
commit d65b113150

View File

@ -72,6 +72,16 @@ public class IssueTxBean extends BaseEntity {
/** 事务数量 */ /** 事务数量 */
private BigDecimal transactionQuantity; private BigDecimal transactionQuantity;
/**
* 生产工单ID
*/
private Long workorderId;
/**
* 生产工单编号
*/
private String workorderCode;
public Long getMaterialStockId() { public Long getMaterialStockId() {
return materialStockId; return materialStockId;
} }
@ -240,6 +250,22 @@ public class IssueTxBean extends BaseEntity {
this.transactionQuantity = transactionQuantity; this.transactionQuantity = transactionQuantity;
} }
public Long getWorkorderId() {
return workorderId;
}
public void setWorkorderId(Long workorderId) {
this.workorderId = workorderId;
}
public String getWorkorderCode() {
return workorderCode;
}
public void setWorkorderCode(String workorderCode) {
this.workorderCode = workorderCode;
}
@Override @Override
public String toString() { public String toString() {
return "IssueTxBean{" + return "IssueTxBean{" +
@ -264,6 +290,8 @@ public class IssueTxBean extends BaseEntity {
", sourceDocCode='" + sourceDocCode + '\'' + ", sourceDocCode='" + sourceDocCode + '\'' +
", sourceDocLineId=" + sourceDocLineId + ", sourceDocLineId=" + sourceDocLineId +
", transactionQuantity=" + transactionQuantity + ", transactionQuantity=" + transactionQuantity +
", workorderId=" + workorderId +
", workorderCode='" + workorderCode + '\'' +
'}'; '}';
} }
} }