马宇豪
2025-03-04 1b9fea7d4af68d8f933b2dc42bf6084b9646f64c
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
export interface ClaimReturnRecordsType {
    tableLoading: boolean,
    total: number,
    timeValue: Array<string>,
    claimReturnData: Array<claimReturnDataType> ,
    listQuery: {
        pageSize: number,
        pageIndex: number,
        searchParams: {
            materialName: string| null,
            receiveUname: string | null,
            endTime: string | null,
            startTime: string | null,
        }
    },
}
 
export interface ReturnAndWatchType {
    title: string,
    ifShow: Boolean,
    goodsClassifyTitle: string,
    showReturnAndWatchDialog: boolean,
    activeName: string,
    goodsClassifyForm: {
        id: null,
        materialClassifyName: '',
        parentId: null,
    },
    goodsClassifyRules: {
 
    },
    returnData: materialType [],
    noReturnData: materialType [],
    invalidData: materialType [],
    returnFormList: {
        receiveBaseId: null | number,
        materialList: returnFormListType [] ,
    },
    reasonList: Type []
}
 
export interface claimReturnDataType {
    id: number,
    materialList: materialType [],
}
 
export interface materialType {
    id: number,
    materialStatus: number,
    revertStatus: number,
    remark: string | null,
}
 
export interface returnFormListType {
    receiveId: number,
    materialStatus: number | null,
    remark: string | null,
}
 
export interface InvalidDealStateType {
    title: string,
    invalidDealDialogVisible: boolean,
    invalidDealForm: InvalidDealFormType,
    reasonList: Type []
}
 
export interface InvalidDealFormType {
    id: number | null,
    reason: number | null,
    remark: string | null,
}
 
export interface Type {
    id: number,
    name: string,
}