diff --git a/src/api/oa/crm/crmQuoteMaterial/types.ts b/src/api/oa/crm/crmQuoteMaterial/types.ts index db2b7a8..8c5bad8 100644 --- a/src/api/oa/crm/crmQuoteMaterial/types.ts +++ b/src/api/oa/crm/crmQuoteMaterial/types.ts @@ -98,7 +98,6 @@ export interface CrmQuoteMaterialVO { * 激活标识(1是 0否) */ activeFlag: string; - } export interface CrmQuoteMaterialForm extends BaseEntity { @@ -201,11 +200,9 @@ export interface CrmQuoteMaterialForm extends BaseEntity { * 激活标识(1是 0否) */ activeFlag?: string; - } export interface CrmQuoteMaterialQuery extends PageQuery { - /** * 标准物料标识(1标准物料 2非标物料) */ @@ -241,6 +238,21 @@ export interface CrmQuoteMaterialQuery extends PageQuery { */ relationMaterialId?: string | number; + /** + * 物料编号(SAP物料编码) + */ + materialCode?: string; + + /** + * SAP物料名称 + */ + materialName?: string; + + /** + * 销售物料名称 + */ + saleMaterialName?: string; + /** * 数量 */ @@ -286,6 +298,3 @@ export interface CrmQuoteMaterialQuery extends PageQuery { */ params?: any; } - - - diff --git a/src/api/wms/wmsShippingBill/types.ts b/src/api/wms/wmsShippingBill/types.ts index 2b4f544..8149d23 100644 --- a/src/api/wms/wmsShippingBill/types.ts +++ b/src/api/wms/wmsShippingBill/types.ts @@ -472,6 +472,11 @@ export interface WmsShippingBillForm extends BaseEntity { */ arrivalConfirmBy?: string | number; + /** + * 到货确认人姓名 + */ + arrivalConfirmByName?: string; + /** * 流程编码(后端发起流程用) */