feat(oms/wms): 出库明细单据类型回显/查询条件/导出列补齐
- 出库明细查询新增orderTypeCode(精确)/orderTypeName(模糊)查询条件 - OMS出库明细SQL补查b.order_type_code/name,响应回显orderTypeCode/orderTypeName(原恒为null) - WMS出库明细导出新增"业务单据类型"列(第31列)
This commit is contained in:
+3
@@ -105,4 +105,7 @@ public class OutMaterialDetailExportPO {
|
||||
|
||||
@Excel(name = "单据状态", sort = 30, readConverterExp = "9=已出库,12=已复核,13=已交接")
|
||||
private Integer outOrderStatus;
|
||||
|
||||
@Excel(name = "业务单据类型", sort = 31)
|
||||
private String orderTypeName;
|
||||
}
|
||||
|
||||
+6
@@ -41,6 +41,12 @@ public class OutMaterialDetailQueryDTO extends BaseVOEntity {
|
||||
@ApiModelProperty("出库单类型编码")
|
||||
private String outOrderTypeCode;
|
||||
|
||||
@ApiModelProperty("出库单类型编码(与outOrderTypeCode同义)")
|
||||
private String orderTypeCode;
|
||||
|
||||
@ApiModelProperty("出库单类型名称(模糊查询)")
|
||||
private String orderTypeName;
|
||||
|
||||
@ApiModelProperty("物料基础信息id")
|
||||
private Long materialBaseInfoId;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user