李红攀: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

@@ -0,0 +1,21 @@
import { http } from '@/http/http'
/** 审批记录 */
export interface ApprovalRecord {
id?: number
bizId?: string
bizTableName?: string
applicant?: string
applicantName?: string
approver?: string
approverName?: string
approvalStatus?: number
approvalLevel?: number
reason?: string
createTime?: string | number
}
/** 根据业务单据获取审批记录列表 */
export function getApprovalRecordListByBiz(bizId: string | number, bizTableName: string) {
return http.get<ApprovalRecord[]>('/erp/approval-record/list-by-biz', { bizId, bizTableName })
}