|
|
@ -123,6 +123,17 @@ export const SupplierinvoiceRequestMain = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '订单类型', |
|
|
|
field: 'orderType', |
|
|
|
dictType: DICT_TYPE.PURCHASE_ORDER_TYPE, |
|
|
|
dictClass: 'string', |
|
|
|
isTable: false, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '供应商名称', |
|
|
|
field: 'supplierName', |
|
|
@ -741,6 +752,11 @@ export const SupplierinvoiceRequestDetail = useCrudSchemas(reactive<CrudSchema[] |
|
|
|
value: 'supplierCode', |
|
|
|
message: '请填供应商信息!', |
|
|
|
isMainValue: true |
|
|
|
},{ |
|
|
|
key: 'orderType', |
|
|
|
value: 'orderType', |
|
|
|
message: '请填订单类型!', |
|
|
|
isMainValue: true |
|
|
|
} |
|
|
|
] |
|
|
|
} |
|
|
@ -759,6 +775,12 @@ export const SupplierinvoiceRequestDetail = useCrudSchemas(reactive<CrudSchema[] |
|
|
|
value: 'supplierCode', |
|
|
|
message: '请填供应商信息!', |
|
|
|
isMainValue: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
key: 'orderType', |
|
|
|
value: 'orderType', |
|
|
|
message: '请填订单类型!', |
|
|
|
isMainValue: true |
|
|
|
} |
|
|
|
] |
|
|
|
} |
|
|
|