diff --git a/src/api/wms/allocateOrder/types.ts b/src/api/wms/allocateOrder/types.ts index 5356fa9..745f7dc 100644 --- a/src/api/wms/allocateOrder/types.ts +++ b/src/api/wms/allocateOrder/types.ts @@ -76,6 +76,11 @@ export interface AllocateOrderVO { */ inMethod: string; + /** + * 调拨原因 + */ + allocateReason: string; + } export interface AllocateOrderForm extends BaseEntity { @@ -156,6 +161,11 @@ export interface AllocateOrderForm extends BaseEntity { */ inMethod?: string; + /** + * 调拨原因 + */ + allocateReason?: string; + } export interface AllocateOrderQuery extends PageQuery { @@ -237,6 +247,11 @@ export interface AllocateOrderQuery extends PageQuery { */ inMethod?: string; + /** + * 调拨原因 + */ + allocateReason?: string; + /** * 日期范围参数 */ diff --git a/src/api/wms/baseMaterialInfo/types.ts b/src/api/wms/baseMaterialInfo/types.ts index 56a69cd..7c29d20 100644 --- a/src/api/wms/baseMaterialInfo/types.ts +++ b/src/api/wms/baseMaterialInfo/types.ts @@ -293,6 +293,17 @@ export interface BaseMaterialInfoVO { */ materialCategoryName: string; + + /** + * 质检要求(0必检,1免检) + */ + inspectionRequest: string; + + /** + * 是否高价值物料(0否,1是) + */ + isHighValue: string; + } export interface BaseMaterialInfoForm extends BaseEntity { @@ -550,6 +561,16 @@ export interface BaseMaterialInfoForm extends BaseEntity { */ materialCategoryName: string; + /** + * 质检要求(0必检,1免检) + */ + inspectionRequest?: string; + + /** + * 是否高价值物料(0否,1是) + */ + isHighValue?: string; + } export interface BaseMaterialInfoQuery extends PageQuery { @@ -790,6 +811,17 @@ export interface BaseMaterialInfoQuery extends PageQuery { */ saleType?: string; + /** + * 质检要求(0必检,1免检) + */ + inspectionRequest?: string; + + /** + * 是否高价值物料(0否,1是) + */ + isHighValue?: string; + + /** * 日期范围参数 */ diff --git a/src/api/wms/instockOrder/types.ts b/src/api/wms/instockOrder/types.ts index 46c932c..a9dea86 100644 --- a/src/api/wms/instockOrder/types.ts +++ b/src/api/wms/instockOrder/types.ts @@ -1,3 +1,5 @@ +import { InstockDetailForm } from '@/api/wms/instockDetail/types'; + export interface InstockOrderVO { /** * 入库单 主键 @@ -116,6 +118,11 @@ export interface InstockOrderForm extends BaseEntity { */ instockMethond?: string; + /** + * 入库单子表(与后端 WmsInstockOrderBo.detailListBo 对齐) + */ + detailListBo?: InstockDetailForm[]; + } export interface InstockOrderQuery extends PageQuery { diff --git a/src/views/wms/baseMaterialInfo/index.vue b/src/views/wms/baseMaterialInfo/index.vue index 47262e7..e1743af 100644 --- a/src/views/wms/baseMaterialInfo/index.vue +++ b/src/views/wms/baseMaterialInfo/index.vue @@ -83,7 +83,16 @@ {{ formatDayHourMinutes(scope.row.maxParkingTime) }} - + + + + + +