buhuazhen
昨天 0fcc63f1fc7f202627180658c19c93b0b7fa7f10
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
### 计划保存
POST {{host}}/projectManagement/plan/save
Content-Type: application/json
Authorization: {{token}}
 
{
  "id": null,
  "name": "计划名称",
  "description": "计划描述",
  "attachmentIds": [
    1,
    2,
    3
  ],
  "savePlanNodeList": [
    {
      "name": "子节点1",
      "leaderId": "111",
      "leaderName": "张鹏举",
      "estimatedDuration": 7,
      "hourlyRate": "55.76",
      "workContent": "工作内容"
    }
  ]
}
 
### 计划列表
POST {{host}}/projectManagement/plan/listPage
Content-Type: application/json
Authorization: {{token}}
 
{
  "size": 10,
  "current": 1
}
 
 
### 计划删除
POST {{host}}/projectManagement/plan/delete/6
Content-Type: application/json
Authorization: {{token}}
 
### 项目管理保存
POST {{host}}/projectManagement/info/save
Content-Type: application/json
Authorization: {{token}}
 
{
  "info": {
    "id": null,
    "no": "",
    "title": "主题",
    "clientId": 11,
    "clientName": "客户名称",
    "projectManagementInfoParentId": null,
    "projectManagementPlanId": 17,
    "establishTime": "2023-04-01",
    "source": "来源",
    "managerId": 11,
    "managerName": "经理",
    "salesmanId": 22,
    "salesmanName": "业务员",
    "planStartTime": "2023-04-01",
    "planEndTime": "2023-10-11",
    "actualStartTime": "2023-04-01",
    "actualEndTime": "2023-10-11",
    "departmentId": 33,
    "departmentName": "部门",
    "orderDate": "2023-04-01",
    "orderAmount": "22.444",
    "remark": "备注",
    "attachmentIds": [1,2,3,4],
    "teamList":[
      {
        "userId":111,
        "userName": "张三",
        "userRoleId": "1",
        "userRoleName": "经理",
        "joinTime": "2023-04-01",
        "departTime": "2023-04-01",
        "contact": "联系",
        "remark": "备注"
      }
    ]
  },
  "shippingAddress": {
    "id": null,
    "consignee": "收货人",
    "contract": "联系方式",
    "address": "地址xxxx"
  },
  "contractInfo": {
    "id": null,
    "name": "联系人",
    "sex": "男",
    "birthday": "生日",
    "department": "部门",
    "job": "职务",
    "phoneNumber": "手机号",
    "email": "邮箱",
    "qq": "qq",
    "lineaFissa": "固定电话",
    "wx": "微信",
    "origineEtnica": "籍贯",
    "rappresentanteLegale": "法人代表"
  },
  "salesLedgerProductList": null
}
 
 
### 删除产品信息 获取salesLedgerProductList中的id进行删除
DELETE {{host}}/sales/product/delProduct
Content-Type: application/json
Authorization: {{token}}
 
[1,2,3,4]
 
### 修改审核状态 reviewStatus(0 待审核 1 审核通过 2 审核未通过)
POST {{host}}/projectManagement/info/updateStatus
Content-Type: application/json
Authorization: {{token}}
 
{
  "id": 1,
  "reviewStatus": "1",
}
 
### 列表查询
POST {{host}}/projectManagement/info/listPage
Content-Type: application/json
Authorization: {{token}}
 
{
  "noOrName": "",
  "clientName": "",
  "salesmanName": "",
  "reviewStatus": null,
  "stage": null,
  "size": 10,
  "current": 1
}
 
### 查询具体信息
POST {{host}}/projectManagement/info/23
Content-Type: application/json
Authorization: {{token}}
 
### 删除信息
POST {{host}}/projectManagement/info/delete/17
Content-Type: application/json
Authorization: {{token}}
 
 
 
// 阶段
 
### 新增项目阶段
POST {{host}}/projectManagement/info/saveStage
Content-Type: application/json
Authorization: {{token}}
 
{
  "id": null,
  "projectManagementPlanNodeId":20,
  "projectManagementInfoId":23,
  "description": "描述",
  "actualLeaderId": 111,
  "actualLeaderName": "实际负责人",
  "estimatedDuration": 222,
  "planStartTime": "2023-04-01",
  "planEndTime": "2023-04-01",
  "actualStartTime": "2023-04-01",
  "actualEndTime": "2023-04-01",
  "progress": 1,
  "attachmentIds": [1,2,3,4]
}
 
### 查询项目阶段根据Id
POST {{host}}/projectManagement/info/listStage/23
Content-Type: application/json
Authorization: {{token}}
 
 
### 删除项目阶段根据id
POST {{host}}/projectManagement/info/deleteStage/5
Content-Type: application/json
Authorization: {{token}}
 
 
### 获取项目角色
POST {{host}}/projectManagement/roles/listSimpleRole
Content-Type: application/json
Authorization: {{token}}
 
 
### 检测项目
POST {{host}}/qualityInspectItem/listPage
Content-Type: application/json
Authorization: {{token}}
 
{
  "name": null,
  "size": 10,
  "current": 1
}
 
### 检测项目保存
POST {{host}}/qualityInspectItem/save
Content-Type: application/json
Authorization: {{token}}
 
{
  "id": null,
  "name": "检测项目名称",
  "unit": "单位",
  "standardValue": "标准值",
  "internalControl": "内控值",
  "testValue": "化验值"
}
 
 
### 检测项目删除
POST {{host}}/qualityInspectItem/delete
Content-Type: application/json
Authorization: {{token}}
 
[1,2]