李红攀:V2.6.969,销售出库管理

This commit is contained in:
2026-06-22 17:09:31 +08:00
parent d0ce2f2b55
commit 617d293dc3
7 changed files with 1710 additions and 2 deletions

View File

@@ -11,11 +11,18 @@ export interface SaleOrderItem {
totalCount?: number
unitPrice?: number
productPrice?: number
productUnitId?: number
productUnitName?: string
productBarCode?: string
productSpec?: string
taxPrice?: number
totalPrice?: number
totalProductPrice?: number
taxPercent?: number
taxAmount?: number
remark?: string
outCount?: number
stockCount?: number
}
/** 销售订单信息 */
@@ -55,8 +62,9 @@ export function getSaleOrderPage(params: PageParam & {
orderTime?: string[]
status?: number
creator?: number
outStatus?: string
returnStatus?: string
outStatus?: string | number
returnStatus?: string | number
outEnable?: boolean
}) {
return http.get<PageResult<SaleOrder>>('/erp/sale-order/page', params)
}