李红攀:V2.6.969,销售出库管理
This commit is contained in:
21
src/api/erp/approval-record/index.ts
Normal file
21
src/api/erp/approval-record/index.ts
Normal 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 })
|
||||
}
|
||||
Reference in New Issue
Block a user