p-honggang.li
2025-08-14 2f984560bb14fb157ad24bea0e2d96b9ccdc896b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * @Description:库存管理
 * @Version: 2.0
 * @Autor: wuyun
 * @Date: 2022-08-24 14:13:25
 * @LastEditors: wuyun
 * @LastEditTime: 2022-08-26 11:41:02
 */
export interface InventoryOperate {
    id?: string
    type?: string
    registerDate: string
    operator: string
    category: string
    model: string
    batchNo?: string
    quantity: number | undefined
    unit: string
    registerType: string
    remark?: string
    files?: File[]
    fileIds?: string[]
    taskId?: string
    taskNo?: string
    sedimentId?: string
    customerName?: string
    customerId?: string
}
interface saleOrderInfoType {
    id?: string // 主键id
    orderNo?: string // 订单编号
    customerId: string // 客户id
    customerName: string // 客户名称
    areaName: string // 地区
    status: string // 状态
    signDate: string // 签订日期
    concatName: string // 联系人
    concatPhone: string // 联系人电话
    totalAmount: string // 合同额
    product: string // 产品
}