Merge branch 'claude/sharp-rubin' into claude/gallant-shamir
This commit is contained in:
@@ -173,6 +173,11 @@ export function exportPurchaseOrder(params: PurchaseOrderQuery): Promise<Blob> {
|
||||
return request.post('/erp/po/order/export', params, { responseType: 'blob' })
|
||||
}
|
||||
|
||||
// 根据采购订单生成到货通知单
|
||||
export function genArrivalNotice(orderId: number): Promise<number> {
|
||||
return request.post(`/erp/po/order/genArrivalNotice/${orderId}`).then((res: any) => res.data)
|
||||
}
|
||||
|
||||
// ============ 供应商 API(使用 MOM md_vendor,表 erp_po_supplier 在 my_mes 中未建) ============
|
||||
|
||||
export function getPoSupplierList(params?: { supplierName?: string; contact1?: string; pageNum?: number; pageSize?: number }): Promise<{ rows: PoSupplier[]; total: number }> {
|
||||
|
||||
Reference in New Issue
Block a user