Commit 2a08cdcf40e24d5b7dc2e67ae1d83db7177dedd1
1 parent
0460bf4a
feat: 添加订单商品信息字体大小调整
Showing
3 changed files
with
505 additions
and
949 deletions
Too many changes to show.
To preserve performance only 3 of 4 files are displayed.
src/pages/Order/components/OrderDrawer.tsx
@@ -1528,7 +1528,10 @@ export default ({ onClose, data, subOrders, orderOptType }) => { | @@ -1528,7 +1528,10 @@ export default ({ onClose, data, subOrders, orderOptType }) => { | ||
1528 | optionItemRender(item) { | 1528 | optionItemRender(item) { |
1529 | if (item.type === 'add') { | 1529 | if (item.type === 'add') { |
1530 | return ( | 1530 | return ( |
1531 | - <div title={item.name + '(新增商品信息)'}> | 1531 | + <div |
1532 | + style={{ fontSize: '11px' }} | ||
1533 | + title={item.name + '(新增商品信息)'} | ||
1534 | + > | ||
1532 | <span style={{ color: '#333333' }}> | 1535 | <span style={{ color: '#333333' }}> |
1533 | {item.label} | 1536 | {item.label} |
1534 | </span> | 1537 | </span> |
@@ -1539,6 +1542,7 @@ export default ({ onClose, data, subOrders, orderOptType }) => { | @@ -1539,6 +1542,7 @@ export default ({ onClose, data, subOrders, orderOptType }) => { | ||
1539 | } | 1542 | } |
1540 | return ( | 1543 | return ( |
1541 | <div | 1544 | <div |
1545 | + style={{ fontSize: '11px' }} | ||
1542 | title={ | 1546 | title={ |
1543 | item.label + | 1547 | item.label + |
1544 | ' | ' + | 1548 | ' | ' + |
src/pages/Order/index.tsx
@@ -1232,6 +1232,39 @@ const OrderPage = () => { | @@ -1232,6 +1232,39 @@ const OrderPage = () => { | ||
1232 | </div> | 1232 | </div> |
1233 | </Flex> | 1233 | </Flex> |
1234 | <Flex className="w-[18%]" wrap="wrap" gap="small"> | 1234 | <Flex className="w-[18%]" wrap="wrap" gap="small"> |
1235 | + {optRecord.subPath?.includes('postAudit') ? ( | ||
1236 | + <Button | ||
1237 | + className="p-0" | ||
1238 | + type="link" | ||
1239 | + onClick={() => { | ||
1240 | + createOptObject(optRecord.id, record.id); | ||
1241 | + setCheckVisible(true); | ||
1242 | + setOrderCheckType(CHECK_TYPE.WAITING_FOR_POST_AUDIT); | ||
1243 | + }} | ||
1244 | + > | ||
1245 | + 后置审核 | ||
1246 | + </Button> | ||
1247 | + ) : ( | ||
1248 | + '' | ||
1249 | + )} | ||
1250 | + {/* 加急审核 */} | ||
1251 | + {optRecord.subPath?.includes('URGENT_INVOICE_AUDITING') ? ( | ||
1252 | + <Button | ||
1253 | + className="p-0" | ||
1254 | + type="link" | ||
1255 | + onClick={() => { | ||
1256 | + console.log('here'); | ||
1257 | + setCurrentMainId(record.id); | ||
1258 | + setCurretnOptSubId(optRecord.id); | ||
1259 | + setCheckVisible(true); | ||
1260 | + setOrderCheckType(CHECK_TYPE.URGENT_INVOICE_AUDITING); | ||
1261 | + }} | ||
1262 | + > | ||
1263 | + 加急审核 | ||
1264 | + </Button> | ||
1265 | + ) : ( | ||
1266 | + '' | ||
1267 | + )} | ||
1235 | {optRecord.subPath?.includes('salesConfirm') && ( | 1268 | {optRecord.subPath?.includes('salesConfirm') && ( |
1236 | <ButtonConfirm | 1269 | <ButtonConfirm |
1237 | className="p-0" | 1270 | className="p-0" |
@@ -1351,41 +1384,6 @@ const OrderPage = () => { | @@ -1351,41 +1384,6 @@ const OrderPage = () => { | ||
1351 | '' | 1384 | '' |
1352 | )} | 1385 | )} |
1353 | 1386 | ||
1354 | - {/* 加急审核 */} | ||
1355 | - {optRecord.subPath?.includes('URGENT_INVOICE_AUDITING') ? ( | ||
1356 | - <Button | ||
1357 | - className="p-0" | ||
1358 | - type="link" | ||
1359 | - onClick={() => { | ||
1360 | - console.log('here'); | ||
1361 | - setCurrentMainId(record.id); | ||
1362 | - setCurretnOptSubId(optRecord.id); | ||
1363 | - setCheckVisible(true); | ||
1364 | - setOrderCheckType(CHECK_TYPE.URGENT_INVOICE_AUDITING); | ||
1365 | - }} | ||
1366 | - > | ||
1367 | - 加急审核 | ||
1368 | - </Button> | ||
1369 | - ) : ( | ||
1370 | - '' | ||
1371 | - )} | ||
1372 | - | ||
1373 | - {optRecord.subPath?.includes('postAudit') ? ( | ||
1374 | - <Button | ||
1375 | - className="p-0" | ||
1376 | - type="link" | ||
1377 | - onClick={() => { | ||
1378 | - createOptObject(optRecord.id, record.id); | ||
1379 | - setCheckVisible(true); | ||
1380 | - setOrderCheckType(CHECK_TYPE.WAITING_FOR_POST_AUDIT); | ||
1381 | - }} | ||
1382 | - > | ||
1383 | - 后置审核 | ||
1384 | - </Button> | ||
1385 | - ) : ( | ||
1386 | - '' | ||
1387 | - )} | ||
1388 | - | ||
1389 | {optRecord.subPath?.includes('modifiedAuditRequest') ? ( | 1387 | {optRecord.subPath?.includes('modifiedAuditRequest') ? ( |
1390 | <Button | 1388 | <Button |
1391 | className="p-0" | 1389 | className="p-0" |
@@ -2545,6 +2543,37 @@ const OrderPage = () => { | @@ -2545,6 +2543,37 @@ const OrderPage = () => { | ||
2545 | <Flex justify="flex-end"> | 2543 | <Flex justify="flex-end"> |
2546 | <Space.Compact direction="vertical" align="end"> | 2544 | <Space.Compact direction="vertical" align="end"> |
2547 | <Space wrap> | 2545 | <Space wrap> |
2546 | + {record.mainPath?.includes('postAudit') ? ( | ||
2547 | + <Button | ||
2548 | + className="p-0" | ||
2549 | + type="link" | ||
2550 | + onClick={() => { | ||
2551 | + setCurrentMainId(record.id); | ||
2552 | + setCurretnOptSubId(null); | ||
2553 | + setCheckVisible(true); | ||
2554 | + setOrderCheckType(CHECK_TYPE.WAITING_FOR_POST_AUDIT); | ||
2555 | + }} | ||
2556 | + > | ||
2557 | + 后置审核 | ||
2558 | + </Button> | ||
2559 | + ) : ( | ||
2560 | + '' | ||
2561 | + )} | ||
2562 | + {record.mainPath?.includes('URGENT_INVOICE_AUDITING') ? ( | ||
2563 | + <Button | ||
2564 | + className="p-0" | ||
2565 | + type="link" | ||
2566 | + onClick={() => { | ||
2567 | + createOptObject(null, record.id); | ||
2568 | + setCheckVisible(true); | ||
2569 | + setOrderCheckType(CHECK_TYPE.URGENT_INVOICE_AUDITING); | ||
2570 | + }} | ||
2571 | + > | ||
2572 | + 加急审核 | ||
2573 | + </Button> | ||
2574 | + ) : ( | ||
2575 | + '' | ||
2576 | + )} | ||
2548 | {record.mainPath?.includes('salesConfirm') && ( | 2577 | {record.mainPath?.includes('salesConfirm') && ( |
2549 | <ButtonConfirm | 2578 | <ButtonConfirm |
2550 | className="p-0" | 2579 | className="p-0" |
@@ -2607,22 +2636,6 @@ const OrderPage = () => { | @@ -2607,22 +2636,6 @@ const OrderPage = () => { | ||
2607 | '' | 2636 | '' |
2608 | )} | 2637 | )} |
2609 | 2638 | ||
2610 | - {record.mainPath?.includes('URGENT_INVOICE_AUDITING') ? ( | ||
2611 | - <Button | ||
2612 | - className="p-0" | ||
2613 | - type="link" | ||
2614 | - onClick={() => { | ||
2615 | - createOptObject(null, record.id); | ||
2616 | - setCheckVisible(true); | ||
2617 | - setOrderCheckType(CHECK_TYPE.URGENT_INVOICE_AUDITING); | ||
2618 | - }} | ||
2619 | - > | ||
2620 | - 加急审核 | ||
2621 | - </Button> | ||
2622 | - ) : ( | ||
2623 | - '' | ||
2624 | - )} | ||
2625 | - | ||
2626 | {record.mainPath?.includes('auditPaymentReceipt') ? ( | 2639 | {record.mainPath?.includes('auditPaymentReceipt') ? ( |
2627 | <Button | 2640 | <Button |
2628 | className="p-0" | 2641 | className="p-0" |
@@ -2705,22 +2718,6 @@ const OrderPage = () => { | @@ -2705,22 +2718,6 @@ const OrderPage = () => { | ||
2705 | ) : ( | 2718 | ) : ( |
2706 | '' | 2719 | '' |
2707 | )} | 2720 | )} |
2708 | - {record.mainPath?.includes('postAudit') ? ( | ||
2709 | - <Button | ||
2710 | - className="p-0" | ||
2711 | - type="link" | ||
2712 | - onClick={() => { | ||
2713 | - setCurrentMainId(record.id); | ||
2714 | - setCurretnOptSubId(null); | ||
2715 | - setCheckVisible(true); | ||
2716 | - setOrderCheckType(CHECK_TYPE.WAITING_FOR_POST_AUDIT); | ||
2717 | - }} | ||
2718 | - > | ||
2719 | - 后置审核 | ||
2720 | - </Button> | ||
2721 | - ) : ( | ||
2722 | - '' | ||
2723 | - )} | ||
2724 | 2721 | ||
2725 | {record.mainPath?.includes('procureOrder') ? ( | 2722 | {record.mainPath?.includes('procureOrder') ? ( |
2726 | <ButtonConfirm | 2723 | <ButtonConfirm |
src/services/definition.ts
@@ -86,6 +86,8 @@ export interface AdminAuthUserVO { | @@ -86,6 +86,8 @@ export interface AdminAuthUserVO { | ||
86 | export interface AdminDeptQueryVO { | 86 | export interface AdminDeptQueryVO { |
87 | /** @format int32 */ | 87 | /** @format int32 */ |
88 | current?: number; | 88 | current?: number; |
89 | + /** @format int32 */ | ||
90 | + end?: number; | ||
89 | /** @format int64 */ | 91 | /** @format int64 */ |
90 | id?: number; | 92 | id?: number; |
91 | ids?: Array<number>; | 93 | ids?: Array<number>; |
@@ -95,6 +97,8 @@ export interface AdminDeptQueryVO { | @@ -95,6 +97,8 @@ export interface AdminDeptQueryVO { | ||
95 | /** @format int64 */ | 97 | /** @format int64 */ |
96 | pid?: number; | 98 | pid?: number; |
97 | /** @format int32 */ | 99 | /** @format int32 */ |
100 | + start?: number; | ||
101 | + /** @format int32 */ | ||
98 | total?: number; | 102 | total?: number; |
99 | } | 103 | } |
100 | 104 | ||
@@ -109,6 +113,8 @@ export interface AdminDeptVO { | @@ -109,6 +113,8 @@ export interface AdminDeptVO { | ||
109 | export interface AdminJobQueryVO { | 113 | export interface AdminJobQueryVO { |
110 | /** @format int32 */ | 114 | /** @format int32 */ |
111 | current?: number; | 115 | current?: number; |
116 | + /** @format int32 */ | ||
117 | + end?: number; | ||
112 | /** @format int64 */ | 118 | /** @format int64 */ |
113 | id?: number; | 119 | id?: number; |
114 | ids?: Array<number>; | 120 | ids?: Array<number>; |
@@ -118,6 +124,8 @@ export interface AdminJobQueryVO { | @@ -118,6 +124,8 @@ export interface AdminJobQueryVO { | ||
118 | /** @format int32 */ | 124 | /** @format int32 */ |
119 | sort?: number; | 125 | sort?: number; |
120 | /** @format int32 */ | 126 | /** @format int32 */ |
127 | + start?: number; | ||
128 | + /** @format int32 */ | ||
121 | total?: number; | 129 | total?: number; |
122 | } | 130 | } |
123 | 131 | ||
@@ -136,6 +144,8 @@ export interface AdminMenuQueryVO { | @@ -136,6 +144,8 @@ export interface AdminMenuQueryVO { | ||
136 | /** @format int32 */ | 144 | /** @format int32 */ |
137 | current?: number; | 145 | current?: number; |
138 | /** @format int32 */ | 146 | /** @format int32 */ |
147 | + end?: number; | ||
148 | + /** @format int32 */ | ||
139 | hidden?: number; | 149 | hidden?: number; |
140 | icon?: string; | 150 | icon?: string; |
141 | /** @format int64 */ | 151 | /** @format int64 */ |
@@ -151,6 +161,8 @@ export interface AdminMenuQueryVO { | @@ -151,6 +161,8 @@ export interface AdminMenuQueryVO { | ||
151 | /** @format int64 */ | 161 | /** @format int64 */ |
152 | pid?: number; | 162 | pid?: number; |
153 | /** @format int32 */ | 163 | /** @format int32 */ |
164 | + start?: number; | ||
165 | + /** @format int32 */ | ||
154 | total?: number; | 166 | total?: number; |
155 | /** @format int32 */ | 167 | /** @format int32 */ |
156 | type?: number; | 168 | type?: number; |
@@ -181,6 +193,8 @@ export interface AdminRoleQueryVO { | @@ -181,6 +193,8 @@ export interface AdminRoleQueryVO { | ||
181 | /** @format int32 */ | 193 | /** @format int32 */ |
182 | current?: number; | 194 | current?: number; |
183 | dataScope?: string; | 195 | dataScope?: string; |
196 | + /** @format int32 */ | ||
197 | + end?: number; | ||
184 | /** @format int64 */ | 198 | /** @format int64 */ |
185 | id?: number; | 199 | id?: number; |
186 | ids?: Array<number>; | 200 | ids?: Array<number>; |
@@ -192,6 +206,8 @@ export interface AdminRoleQueryVO { | @@ -192,6 +206,8 @@ export interface AdminRoleQueryVO { | ||
192 | permission?: string; | 206 | permission?: string; |
193 | remark?: string; | 207 | remark?: string; |
194 | /** @format int32 */ | 208 | /** @format int32 */ |
209 | + start?: number; | ||
210 | + /** @format int32 */ | ||
195 | total?: number; | 211 | total?: number; |
196 | } | 212 | } |
197 | 213 | ||
@@ -209,22 +225,30 @@ export interface AdminUserLoginByPhoneVO { | @@ -209,22 +225,30 @@ export interface AdminUserLoginByPhoneVO { | ||
209 | /** @format int32 */ | 225 | /** @format int32 */ |
210 | current?: number; | 226 | current?: number; |
211 | /** @format int32 */ | 227 | /** @format int32 */ |
228 | + end?: number; | ||
229 | + /** @format int32 */ | ||
212 | pageSize?: number; | 230 | pageSize?: number; |
213 | phone?: string; | 231 | phone?: string; |
214 | smsCaptchaCode?: string; | 232 | smsCaptchaCode?: string; |
215 | /** @format int32 */ | 233 | /** @format int32 */ |
234 | + start?: number; | ||
235 | + /** @format int32 */ | ||
216 | total?: number; | 236 | total?: number; |
217 | } | 237 | } |
218 | 238 | ||
219 | export interface AdminUserLoginByPwdVO { | 239 | export interface AdminUserLoginByPwdVO { |
220 | /** @format int32 */ | 240 | /** @format int32 */ |
221 | current?: number; | 241 | current?: number; |
242 | + /** @format int32 */ | ||
243 | + end?: number; | ||
222 | imgCaptchaCode?: string; | 244 | imgCaptchaCode?: string; |
223 | imgCaptchaUuid?: string; | 245 | imgCaptchaUuid?: string; |
224 | /** @format int32 */ | 246 | /** @format int32 */ |
225 | pageSize?: number; | 247 | pageSize?: number; |
226 | password?: string; | 248 | password?: string; |
227 | /** @format int32 */ | 249 | /** @format int32 */ |
250 | + start?: number; | ||
251 | + /** @format int32 */ | ||
228 | total?: number; | 252 | total?: number; |
229 | userName?: string; | 253 | userName?: string; |
230 | } | 254 | } |
@@ -234,11 +258,15 @@ export interface AdminUserModifyPwdVO { | @@ -234,11 +258,15 @@ export interface AdminUserModifyPwdVO { | ||
234 | /** @format int32 */ | 258 | /** @format int32 */ |
235 | current?: number; | 259 | current?: number; |
236 | /** @format int32 */ | 260 | /** @format int32 */ |
261 | + end?: number; | ||
262 | + /** @format int32 */ | ||
237 | pageSize?: number; | 263 | pageSize?: number; |
238 | password?: string; | 264 | password?: string; |
239 | phone?: string; | 265 | phone?: string; |
240 | smsCaptchaCode?: string; | 266 | smsCaptchaCode?: string; |
241 | /** @format int32 */ | 267 | /** @format int32 */ |
268 | + start?: number; | ||
269 | + /** @format int32 */ | ||
242 | total?: number; | 270 | total?: number; |
243 | } | 271 | } |
244 | 272 | ||
@@ -246,8 +274,12 @@ export interface AdminUserPasswordRecoverEmailVO { | @@ -246,8 +274,12 @@ export interface AdminUserPasswordRecoverEmailVO { | ||
246 | /** @format int32 */ | 274 | /** @format int32 */ |
247 | current?: number; | 275 | current?: number; |
248 | /** @format int32 */ | 276 | /** @format int32 */ |
277 | + end?: number; | ||
278 | + /** @format int32 */ | ||
249 | pageSize?: number; | 279 | pageSize?: number; |
250 | /** @format int32 */ | 280 | /** @format int32 */ |
281 | + start?: number; | ||
282 | + /** @format int32 */ | ||
251 | total?: number; | 283 | total?: number; |
252 | userName?: string; | 284 | userName?: string; |
253 | } | 285 | } |
@@ -256,6 +288,8 @@ export interface AdminUserQueryVO { | @@ -256,6 +288,8 @@ export interface AdminUserQueryVO { | ||
256 | /** @format int32 */ | 288 | /** @format int32 */ |
257 | current?: number; | 289 | current?: number; |
258 | email?: string; | 290 | email?: string; |
291 | + /** @format int32 */ | ||
292 | + end?: number; | ||
259 | /** @format int64 */ | 293 | /** @format int64 */ |
260 | id?: number; | 294 | id?: number; |
261 | ids?: Array<number>; | 295 | ids?: Array<number>; |
@@ -266,6 +300,8 @@ export interface AdminUserQueryVO { | @@ -266,6 +300,8 @@ export interface AdminUserQueryVO { | ||
266 | phone?: string; | 300 | phone?: string; |
267 | sex?: string; | 301 | sex?: string; |
268 | /** @format int32 */ | 302 | /** @format int32 */ |
303 | + start?: number; | ||
304 | + /** @format int32 */ | ||
269 | total?: number; | 305 | total?: number; |
270 | userName?: string; | 306 | userName?: string; |
271 | workerType?: string; | 307 | workerType?: string; |
@@ -276,6 +312,8 @@ export interface AdminUserRegisterVO { | @@ -276,6 +312,8 @@ export interface AdminUserRegisterVO { | ||
276 | /** @format int32 */ | 312 | /** @format int32 */ |
277 | current?: number; | 313 | current?: number; |
278 | email?: string; | 314 | email?: string; |
315 | + /** @format int32 */ | ||
316 | + end?: number; | ||
279 | isAgreeAgreement?: boolean; | 317 | isAgreeAgreement?: boolean; |
280 | /** @format int32 */ | 318 | /** @format int32 */ |
281 | pageSize?: number; | 319 | pageSize?: number; |
@@ -285,6 +323,8 @@ export interface AdminUserRegisterVO { | @@ -285,6 +323,8 @@ export interface AdminUserRegisterVO { | ||
285 | safeQuestion?: string; | 323 | safeQuestion?: string; |
286 | smsCaptchaCode?: string; | 324 | smsCaptchaCode?: string; |
287 | /** @format int32 */ | 325 | /** @format int32 */ |
326 | + start?: number; | ||
327 | + /** @format int32 */ | ||
288 | total?: number; | 328 | total?: number; |
289 | userName?: string; | 329 | userName?: string; |
290 | } | 330 | } |
@@ -480,8 +520,12 @@ export interface ApiOrderCustomersRequest { | @@ -480,8 +520,12 @@ export interface ApiOrderCustomersRequest { | ||
480 | /** @format int32 */ | 520 | /** @format int32 */ |
481 | current?: number; | 521 | current?: number; |
482 | /** @format int32 */ | 522 | /** @format int32 */ |
523 | + end?: number; | ||
524 | + /** @format int32 */ | ||
483 | pageSize?: number; | 525 | pageSize?: number; |
484 | /** @format int32 */ | 526 | /** @format int32 */ |
527 | + start?: number; | ||
528 | + /** @format int32 */ | ||
485 | total?: number; | 529 | total?: number; |
486 | } | 530 | } |
487 | 531 | ||
@@ -528,221 +572,6 @@ export interface ApiQueryOrderStatusCountsRequest { | @@ -528,221 +572,6 @@ export interface ApiQueryOrderStatusCountsRequest { | ||
528 | uid?: number; | 572 | uid?: number; |
529 | } | 573 | } |
530 | 574 | ||
531 | -export interface ApplyInvoiceDto { | ||
532 | - /** | ||
533 | - * @description | ||
534 | - * 备注 | ||
535 | - */ | ||
536 | - applyInvoicingNotes?: string; | ||
537 | - /** | ||
538 | - * @description | ||
539 | - * 开票备注 | ||
540 | - */ | ||
541 | - comment?: string; | ||
542 | - /** | ||
543 | - * @description | ||
544 | - * 联系人 | ||
545 | - */ | ||
546 | - contacts?: string; | ||
547 | - /** | ||
548 | - * @description | ||
549 | - * 开票内容 | ||
550 | - */ | ||
551 | - content?: string; | ||
552 | - createByName?: string; | ||
553 | - /** @format date-time */ | ||
554 | - createTime?: string; | ||
555 | - failureReason?: string; | ||
556 | - /** | ||
557 | - * @description | ||
558 | - * id | ||
559 | - * @format int64 | ||
560 | - */ | ||
561 | - id?: number; | ||
562 | - /** | ||
563 | - * @description | ||
564 | - * 发票地址 | ||
565 | - */ | ||
566 | - invoiceAddress?: string; | ||
567 | - /** | ||
568 | - * @description | ||
569 | - * 发票明细 | ||
570 | - */ | ||
571 | - invoiceDetails?: Array<InvoiceDetail>; | ||
572 | - /** | ||
573 | - * @description | ||
574 | - * 关联发票id | ||
575 | - */ | ||
576 | - invoiceId?: string; | ||
577 | - /** | ||
578 | - * @description | ||
579 | - * 发票号码 | ||
580 | - */ | ||
581 | - invoiceNumber?: string; | ||
582 | - /** | ||
583 | - * @description | ||
584 | - * 开票人 | ||
585 | - */ | ||
586 | - invoicingPerson?: string; | ||
587 | - /** | ||
588 | - * @description | ||
589 | - * 开票时间 | ||
590 | - * @format date-time | ||
591 | - */ | ||
592 | - invoicingTime?: string; | ||
593 | - /** | ||
594 | - * @description | ||
595 | - * 开具类型 | ||
596 | - */ | ||
597 | - invoicingType?: string; | ||
598 | - /** | ||
599 | - * @description | ||
600 | - * 开具类型 | ||
601 | - */ | ||
602 | - invoicingTypeText?: string; | ||
603 | - /** @format date */ | ||
604 | - invoicingdate?: string; | ||
605 | - /** | ||
606 | - * @description | ||
607 | - * 是否加急 | ||
608 | - */ | ||
609 | - isUrgent?: boolean; | ||
610 | - /** | ||
611 | - * @description | ||
612 | - * 是否加急文本 | ||
613 | - */ | ||
614 | - isUrgentText?: string; | ||
615 | - logicDelete?: boolean; | ||
616 | - /** | ||
617 | - * @description | ||
618 | - * 买方注册地址 | ||
619 | - */ | ||
620 | - partyAAddress?: string; | ||
621 | - /** | ||
622 | - * @description | ||
623 | - * 买方开户行账号 | ||
624 | - */ | ||
625 | - partyABankAccount?: string; | ||
626 | - /** | ||
627 | - * @description | ||
628 | - * 买方名称 | ||
629 | - */ | ||
630 | - partyAName?: string; | ||
631 | - /** | ||
632 | - * @description | ||
633 | - * 买方开户行 | ||
634 | - */ | ||
635 | - partyAOpenBank?: string; | ||
636 | - /** | ||
637 | - * @description | ||
638 | - * 买方电话号码 | ||
639 | - */ | ||
640 | - partyAPhoneNumber?: string; | ||
641 | - /** | ||
642 | - * @description | ||
643 | - * 买方税号 | ||
644 | - */ | ||
645 | - partyATaxid?: string; | ||
646 | - /** | ||
647 | - * @description | ||
648 | - * 抬头类型 | ||
649 | - */ | ||
650 | - partyAType?: string; | ||
651 | - partyB?: string; | ||
652 | - /** | ||
653 | - * @description | ||
654 | - * 卖方注册地址 | ||
655 | - */ | ||
656 | - partyBAddress?: string; | ||
657 | - /** | ||
658 | - * @description | ||
659 | - * 卖方开户行账号 | ||
660 | - */ | ||
661 | - partyBBankAccount?: string; | ||
662 | - /** | ||
663 | - * @description | ||
664 | - * 卖方名称 | ||
665 | - */ | ||
666 | - partyBName?: string; | ||
667 | - /** | ||
668 | - * @description | ||
669 | - * 卖方开户行 | ||
670 | - */ | ||
671 | - partyBOpenBank?: string; | ||
672 | - /** | ||
673 | - * @description | ||
674 | - * 卖方电话号码 | ||
675 | - */ | ||
676 | - partyBPhoneNumber?: string; | ||
677 | - /** | ||
678 | - * @description | ||
679 | - * 卖方税号 | ||
680 | - */ | ||
681 | - partyBTaxid?: string; | ||
682 | - /** | ||
683 | - * @description | ||
684 | - * 发票金额 | ||
685 | - * @format double | ||
686 | - */ | ||
687 | - price?: number; | ||
688 | - /** | ||
689 | - * @description | ||
690 | - * 接收邮箱地址 | ||
691 | - */ | ||
692 | - receiveEmail?: string; | ||
693 | - /** | ||
694 | - * @description | ||
695 | - * 订单来源 | ||
696 | - */ | ||
697 | - salesCodes?: Array<string>; | ||
698 | - /** | ||
699 | - * @description | ||
700 | - * 订单来源 | ||
701 | - */ | ||
702 | - salesCodesText?: string; | ||
703 | - /** | ||
704 | - * @description | ||
705 | - * 开票状态 | ||
706 | - */ | ||
707 | - status?: string; | ||
708 | - /** | ||
709 | - * @description | ||
710 | - * 开票状态 | ||
711 | - */ | ||
712 | - statusText?: string; | ||
713 | - /** | ||
714 | - * @description | ||
715 | - * 子订单id | ||
716 | - */ | ||
717 | - subOrderIds?: Array<number>; | ||
718 | - /** | ||
719 | - * @description | ||
720 | - * 关联订单 | ||
721 | - */ | ||
722 | - subOrders?: Array<SubOrder>; | ||
723 | - /** @format double */ | ||
724 | - totalPrice?: number; | ||
725 | - totalPriceText?: string; | ||
726 | - /** | ||
727 | - * @description | ||
728 | - * 开票类型 | ||
729 | - */ | ||
730 | - type?: string; | ||
731 | - /** | ||
732 | - * @description | ||
733 | - * 开票类型文本 | ||
734 | - */ | ||
735 | - typeText?: string; | ||
736 | - /** | ||
737 | - * @description | ||
738 | - * 用户id | ||
739 | - */ | ||
740 | - uid?: string; | ||
741 | - updateByName?: string; | ||
742 | - /** @format date-time */ | ||
743 | - updateTime?: string; | ||
744 | -} | ||
745 | - | ||
746 | export interface AuditDto { | 575 | export interface AuditDto { |
747 | /** | 576 | /** |
748 | * @description | 577 | * @description |
@@ -767,11 +596,15 @@ export interface AuditDto { | @@ -767,11 +596,15 @@ export interface AuditDto { | ||
767 | export interface AuditVO { | 596 | export interface AuditVO { |
768 | /** @format int32 */ | 597 | /** @format int32 */ |
769 | current?: number; | 598 | current?: number; |
599 | + /** @format int32 */ | ||
600 | + end?: number; | ||
770 | /** @format int64 */ | 601 | /** @format int64 */ |
771 | id?: number; | 602 | id?: number; |
772 | /** @format int32 */ | 603 | /** @format int32 */ |
773 | pageSize?: number; | 604 | pageSize?: number; |
774 | /** @format int32 */ | 605 | /** @format int32 */ |
606 | + start?: number; | ||
607 | + /** @format int32 */ | ||
775 | status?: number; | 608 | status?: number; |
776 | /** @format int32 */ | 609 | /** @format int32 */ |
777 | total?: number; | 610 | total?: number; |
@@ -841,16 +674,32 @@ export interface CancelSendOrderDto { | @@ -841,16 +674,32 @@ export interface CancelSendOrderDto { | ||
841 | export interface CaptchaMessageVO { | 674 | export interface CaptchaMessageVO { |
842 | /** @format int32 */ | 675 | /** @format int32 */ |
843 | current?: number; | 676 | current?: number; |
677 | + /** @format int32 */ | ||
678 | + end?: number; | ||
844 | imgCaptchaCode?: string; | 679 | imgCaptchaCode?: string; |
845 | imgCaptchaUuid?: string; | 680 | imgCaptchaUuid?: string; |
846 | /** @format int32 */ | 681 | /** @format int32 */ |
847 | pageSize?: number; | 682 | pageSize?: number; |
848 | phone?: string; | 683 | phone?: string; |
849 | /** @format int32 */ | 684 | /** @format int32 */ |
685 | + start?: number; | ||
686 | + /** @format int32 */ | ||
850 | total?: number; | 687 | total?: number; |
851 | type?: string; | 688 | type?: string; |
852 | } | 689 | } |
853 | 690 | ||
691 | +export interface CommonAuditRequest { | ||
692 | + extend?: any; | ||
693 | + /** | ||
694 | + * @description | ||
695 | + * id集合 | ||
696 | + */ | ||
697 | + ids?: Array<string>; | ||
698 | + notes?: string; | ||
699 | + pass?: boolean; | ||
700 | + type?: string; | ||
701 | +} | ||
702 | + | ||
854 | export interface Contactperson { | 703 | export interface Contactperson { |
855 | birthday?: string; | 704 | birthday?: string; |
856 | contactAddress?: string; | 705 | contactAddress?: string; |
@@ -1038,6 +887,8 @@ export interface DictionaryQueryVO { | @@ -1038,6 +887,8 @@ export interface DictionaryQueryVO { | ||
1038 | dictCode?: string; | 887 | dictCode?: string; |
1039 | dictName?: string; | 888 | dictName?: string; |
1040 | dictValue?: string; | 889 | dictValue?: string; |
890 | + /** @format int32 */ | ||
891 | + end?: number; | ||
1041 | /** @format int64 */ | 892 | /** @format int64 */ |
1042 | id?: number; | 893 | id?: number; |
1043 | ids?: Array<number>; | 894 | ids?: Array<number>; |
@@ -1047,6 +898,8 @@ export interface DictionaryQueryVO { | @@ -1047,6 +898,8 @@ export interface DictionaryQueryVO { | ||
1047 | /** @format int32 */ | 898 | /** @format int32 */ |
1048 | sort?: number; | 899 | sort?: number; |
1049 | /** @format int32 */ | 900 | /** @format int32 */ |
901 | + start?: number; | ||
902 | + /** @format int32 */ | ||
1050 | total?: number; | 903 | total?: number; |
1051 | } | 904 | } |
1052 | 905 | ||
@@ -1061,6 +914,13 @@ export interface DictionaryVO { | @@ -1061,6 +914,13 @@ export interface DictionaryVO { | ||
1061 | sort?: number; | 914 | sort?: number; |
1062 | } | 915 | } |
1063 | 916 | ||
917 | +export interface DistrictDo { | ||
918 | + /** @format int32 */ | ||
919 | + level?: number; | ||
920 | + /** @format int32 */ | ||
921 | + pid?: number; | ||
922 | +} | ||
923 | + | ||
1064 | export interface Entry { | 924 | export interface Entry { |
1065 | bankAccount?: string; | 925 | bankAccount?: string; |
1066 | bankName?: string; | 926 | bankName?: string; |
@@ -1177,391 +1037,18 @@ export interface InvoiceDto { | @@ -1177,391 +1037,18 @@ export interface InvoiceDto { | ||
1177 | status?: string; | 1037 | status?: string; |
1178 | } | 1038 | } |
1179 | 1039 | ||
1180 | -export interface InvoiceRecordDto { | ||
1181 | - applyInvoicingNotes?: string; | 1040 | +export interface InvoiceRecordQueryRequest { |
1041 | + /** @format date */ | ||
1042 | + createTimeGe?: string; | ||
1043 | + /** @format date */ | ||
1044 | + createTimeLe?: string; | ||
1045 | + /** @format int32 */ | ||
1046 | + pageNumber?: number; | ||
1047 | + /** @format int32 */ | ||
1048 | + pageSize?: number; | ||
1182 | /** | 1049 | /** |
1183 | * @description | 1050 | * @description |
1184 | - * 开票备注 | ||
1185 | - */ | ||
1186 | - comment?: string; | ||
1187 | - /** | ||
1188 | - * @description | ||
1189 | - * 联系人 | ||
1190 | - */ | ||
1191 | - contacts?: string; | ||
1192 | - /** | ||
1193 | - * @description | ||
1194 | - * 开票内容 | ||
1195 | - */ | ||
1196 | - content?: string; | ||
1197 | - createByName?: string; | ||
1198 | - /** @format date-time */ | ||
1199 | - createTime?: string; | ||
1200 | - failureReason?: string; | ||
1201 | - /** | ||
1202 | - * @description | ||
1203 | - * id | ||
1204 | - * @format int64 | ||
1205 | - */ | ||
1206 | - id?: number; | ||
1207 | - /** | ||
1208 | - * @description | ||
1209 | - * 发票地址 | ||
1210 | - */ | ||
1211 | - invoiceAddress?: string; | ||
1212 | - /** | ||
1213 | - * @description | ||
1214 | - * 发票明细 | ||
1215 | - */ | ||
1216 | - invoiceDetails?: Array<InvoiceDetail>; | ||
1217 | - /** | ||
1218 | - * @description | ||
1219 | - * 关联发票id | ||
1220 | - */ | ||
1221 | - invoiceId?: string; | ||
1222 | - /** | ||
1223 | - * @description | ||
1224 | - * 发票号码 | ||
1225 | - */ | ||
1226 | - invoiceNumber?: string; | ||
1227 | - /** | ||
1228 | - * @description | ||
1229 | - * 开票人 | ||
1230 | - */ | ||
1231 | - invoicingPerson?: string; | ||
1232 | - /** | ||
1233 | - * @description | ||
1234 | - * 开票时间 | ||
1235 | - * @format date-time | ||
1236 | - */ | ||
1237 | - invoicingTime?: string; | ||
1238 | - /** | ||
1239 | - * @description | ||
1240 | - * 开具类型 | ||
1241 | - */ | ||
1242 | - invoicingType?: string; | ||
1243 | - /** | ||
1244 | - * @description | ||
1245 | - * 开具类型 | ||
1246 | - */ | ||
1247 | - invoicingTypeText?: string; | ||
1248 | - /** @format date */ | ||
1249 | - invoicingdate?: string; | ||
1250 | - /** | ||
1251 | - * @description | ||
1252 | - * 是否加急 | ||
1253 | - */ | ||
1254 | - isUrgent?: boolean; | ||
1255 | - /** | ||
1256 | - * @description | ||
1257 | - * 是否加急文本 | ||
1258 | - */ | ||
1259 | - isUrgentText?: string; | ||
1260 | - logicDelete?: boolean; | ||
1261 | - /** | ||
1262 | - * @description | ||
1263 | - * 买方注册地址 | ||
1264 | - */ | ||
1265 | - partyAAddress?: string; | ||
1266 | - /** | ||
1267 | - * @description | ||
1268 | - * 买方开户行账号 | ||
1269 | - */ | ||
1270 | - partyABankAccount?: string; | ||
1271 | - /** | ||
1272 | - * @description | ||
1273 | - * 买方名称 | ||
1274 | - */ | ||
1275 | - partyAName?: string; | ||
1276 | - /** | ||
1277 | - * @description | ||
1278 | - * 买方开户行 | ||
1279 | - */ | ||
1280 | - partyAOpenBank?: string; | ||
1281 | - /** | ||
1282 | - * @description | ||
1283 | - * 买方电话号码 | ||
1284 | - */ | ||
1285 | - partyAPhoneNumber?: string; | ||
1286 | - /** | ||
1287 | - * @description | ||
1288 | - * 买方税号 | ||
1289 | - */ | ||
1290 | - partyATaxid?: string; | ||
1291 | - /** | ||
1292 | - * @description | ||
1293 | - * 抬头类型 | ||
1294 | - */ | ||
1295 | - partyAType?: string; | ||
1296 | - partyB?: string; | ||
1297 | - /** | ||
1298 | - * @description | ||
1299 | - * 卖方注册地址 | ||
1300 | - */ | ||
1301 | - partyBAddress?: string; | ||
1302 | - /** | ||
1303 | - * @description | ||
1304 | - * 卖方开户行账号 | ||
1305 | - */ | ||
1306 | - partyBBankAccount?: string; | ||
1307 | - /** | ||
1308 | - * @description | ||
1309 | - * 卖方名称 | ||
1310 | - */ | ||
1311 | - partyBName?: string; | ||
1312 | - /** | ||
1313 | - * @description | ||
1314 | - * 卖方开户行 | ||
1315 | - */ | ||
1316 | - partyBOpenBank?: string; | ||
1317 | - /** | ||
1318 | - * @description | ||
1319 | - * 卖方电话号码 | ||
1320 | - */ | ||
1321 | - partyBPhoneNumber?: string; | ||
1322 | - /** | ||
1323 | - * @description | ||
1324 | - * 卖方税号 | ||
1325 | - */ | ||
1326 | - partyBTaxid?: string; | ||
1327 | - /** | ||
1328 | - * @description | ||
1329 | - * 发票金额 | ||
1330 | - * @format double | ||
1331 | - */ | ||
1332 | - price?: number; | ||
1333 | - /** | ||
1334 | - * @description | ||
1335 | - * 接收邮箱地址 | ||
1336 | - */ | ||
1337 | - receiveEmail?: string; | ||
1338 | - /** | ||
1339 | - * @description | ||
1340 | - * 订单来源 | ||
1341 | - */ | ||
1342 | - salesCodes?: Array<string>; | ||
1343 | - /** | ||
1344 | - * @description | ||
1345 | - * 订单来源 | ||
1346 | - */ | ||
1347 | - salesCodesText?: string; | ||
1348 | - /** | ||
1349 | - * @description | ||
1350 | - * 开票状态 | ||
1351 | - */ | ||
1352 | - status?: string; | ||
1353 | - /** | ||
1354 | - * @description | ||
1355 | - * 开票状态 | ||
1356 | - */ | ||
1357 | - statusText?: string; | ||
1358 | - /** | ||
1359 | - * @description | ||
1360 | - * 子订单id | ||
1361 | - */ | ||
1362 | - subOrderIds?: Array<number>; | ||
1363 | - /** | ||
1364 | - * @description | ||
1365 | - * 关联订单 | ||
1366 | - */ | ||
1367 | - subOrders?: Array<SubOrder>; | ||
1368 | - /** @format double */ | ||
1369 | - totalPrice?: number; | ||
1370 | - totalPriceText?: string; | ||
1371 | - /** | ||
1372 | - * @description | ||
1373 | - * 开票类型 | ||
1374 | - */ | ||
1375 | - type?: string; | ||
1376 | - /** | ||
1377 | - * @description | ||
1378 | - * 开票类型文本 | ||
1379 | - */ | ||
1380 | - typeText?: string; | ||
1381 | - /** | ||
1382 | - * @description | ||
1383 | - * 用户id | ||
1384 | - */ | ||
1385 | - uid?: string; | ||
1386 | - updateByName?: string; | ||
1387 | - /** @format date-time */ | ||
1388 | - updateTime?: string; | ||
1389 | -} | ||
1390 | - | ||
1391 | -export interface InvoiceRecordQueryRequest { | ||
1392 | - /** | ||
1393 | - * @description | ||
1394 | - * 联系人 | ||
1395 | - */ | ||
1396 | - contactsLike?: string; | ||
1397 | - /** @format date-time */ | ||
1398 | - createTimeGe?: string; | ||
1399 | - /** @format date-time */ | ||
1400 | - createTimeLe?: string; | ||
1401 | - /** @format int32 */ | ||
1402 | - current?: number; | ||
1403 | - /** @format int32 */ | ||
1404 | - end?: number; | ||
1405 | - /** | ||
1406 | - * @description | ||
1407 | - * id | ||
1408 | - * @format int64 | ||
1409 | - */ | ||
1410 | - id?: number; | ||
1411 | - /** | ||
1412 | - * @description | ||
1413 | - * IdIn | ||
1414 | - */ | ||
1415 | - idIn?: Array<number>; | ||
1416 | - /** | ||
1417 | - * @description | ||
1418 | - * 关联发票id | ||
1419 | - */ | ||
1420 | - invoiceId?: string; | ||
1421 | - /** | ||
1422 | - * @description | ||
1423 | - * 发票号码 | ||
1424 | - */ | ||
1425 | - invoiceNumber?: string; | ||
1426 | - /** | ||
1427 | - * @description | ||
1428 | - * 发票号码 | ||
1429 | - */ | ||
1430 | - invoiceNumberLike?: string; | ||
1431 | - /** | ||
1432 | - * @description | ||
1433 | - * 开票时间 | ||
1434 | - * @format date-time | ||
1435 | - */ | ||
1436 | - invoicingTimeGe?: string; | ||
1437 | - /** | ||
1438 | - * @description | ||
1439 | - * 开票时间 | ||
1440 | - * @format date-time | ||
1441 | - */ | ||
1442 | - invoicingTimeLe?: string; | ||
1443 | - /** | ||
1444 | - * @description | ||
1445 | - * 开票类型 | ||
1446 | - */ | ||
1447 | - invoicingType?: string; | ||
1448 | - /** | ||
1449 | - * @description | ||
1450 | - * 是否加急 | ||
1451 | - */ | ||
1452 | - isUrgent?: boolean; | ||
1453 | - /** | ||
1454 | - * @description | ||
1455 | - * 订单号 | ||
1456 | - * @format int64 | ||
1457 | - */ | ||
1458 | - mainOrderId?: number; | ||
1459 | - /** | ||
1460 | - * @description | ||
1461 | - * 主订单idIn | ||
1462 | - */ | ||
1463 | - mainOrderIdIn?: Array<number>; | ||
1464 | - /** | ||
1465 | - * @description | ||
1466 | - * 订单号 | ||
1467 | - */ | ||
1468 | - mainOrderIdLike?: string; | ||
1469 | - /** | ||
1470 | - * @description | ||
1471 | - * 是否需要构建发票明细 | ||
1472 | - */ | ||
1473 | - needBuildDetails?: boolean; | ||
1474 | - /** | ||
1475 | - * @description | ||
1476 | - * 是否需要构建发票明细 | ||
1477 | - */ | ||
1478 | - needBuildSubOrders?: boolean; | ||
1479 | - /** @format int32 */ | ||
1480 | - pageSize?: number; | ||
1481 | - /** | ||
1482 | - * @description | ||
1483 | - * 买方名称 | ||
1484 | - */ | ||
1485 | - partyANameLike?: string; | ||
1486 | - /** | ||
1487 | - * @description | ||
1488 | - * 买方电话号码 | ||
1489 | - */ | ||
1490 | - partyAPhoneNumberLike?: string; | ||
1491 | - /** | ||
1492 | - * @description | ||
1493 | - * 买方税号 | ||
1494 | - */ | ||
1495 | - partyATaxid?: string; | ||
1496 | - /** | ||
1497 | - * @description | ||
1498 | - * 买方税号 | ||
1499 | - */ | ||
1500 | - partyATaxidLike?: string; | ||
1501 | - partyB?: string; | ||
1502 | - /** | ||
1503 | - * @description | ||
1504 | - * 卖方名称 | ||
1505 | - */ | ||
1506 | - partyBName?: string; | ||
1507 | - /** | ||
1508 | - * @description | ||
1509 | - * 销售代表 | ||
1510 | - */ | ||
1511 | - salesCode?: string; | ||
1512 | - /** | ||
1513 | - * @description | ||
1514 | - * 销售代表 | ||
1515 | - */ | ||
1516 | - salesCodeLike?: string; | ||
1517 | - /** @format int32 */ | ||
1518 | - start?: number; | ||
1519 | - /** | ||
1520 | - * @description | ||
1521 | - * 发票状态 | ||
1522 | - */ | ||
1523 | - status?: string; | ||
1524 | - /** | ||
1525 | - * @description | ||
1526 | - * 状态非空 | ||
1527 | - */ | ||
1528 | - statusIn?: Array<string>; | ||
1529 | - /** | ||
1530 | - * @description | ||
1531 | - * 状态非空 | ||
1532 | - */ | ||
1533 | - statusIsNotNull?: boolean; | ||
1534 | - /** | ||
1535 | - * @description | ||
1536 | - * 状态为空 | ||
1537 | - */ | ||
1538 | - statusIsNull?: boolean; | ||
1539 | - /** | ||
1540 | - * @description | ||
1541 | - * 子订单 | ||
1542 | - * @format int64 | ||
1543 | - */ | ||
1544 | - subOrderId?: number; | ||
1545 | - /** | ||
1546 | - * @description | ||
1547 | - * 子订单idIn | ||
1548 | - */ | ||
1549 | - subOrderIdIn?: Array<number>; | ||
1550 | - /** | ||
1551 | - * @description | ||
1552 | - * 子订单 | ||
1553 | - */ | ||
1554 | - subOrderIdLike?: string; | ||
1555 | - /** @format int32 */ | ||
1556 | - total?: number; | ||
1557 | - /** | ||
1558 | - * @description | ||
1559 | - * 开票类型 | ||
1560 | - */ | ||
1561 | - type?: string; | ||
1562 | - /** | ||
1563 | - * @description | ||
1564 | - * 用户id | 1051 | + * 用户id |
1565 | */ | 1052 | */ |
1566 | uid?: string; | 1053 | uid?: string; |
1567 | } | 1054 | } |
@@ -1581,14 +1068,10 @@ export interface ItemSaItem { | @@ -1581,14 +1068,10 @@ export interface ItemSaItem { | ||
1581 | 1068 | ||
1582 | export interface MainOrderqueryRequest { | 1069 | export interface MainOrderqueryRequest { |
1583 | afterInvoicingStatusIsNull?: boolean; | 1070 | afterInvoicingStatusIsNull?: boolean; |
1584 | - /** @format date */ | ||
1585 | - createDateGe?: string; | ||
1586 | - /** @format date */ | ||
1587 | - createDateLe?: string; | ||
1588 | /** @format date-time */ | 1071 | /** @format date-time */ |
1589 | - createTimeGe?: string; | 1072 | + invoicingTimeGe?: string; |
1590 | /** @format date-time */ | 1073 | /** @format date-time */ |
1591 | - createTimeLe?: string; | 1074 | + invoicingTimeLe?: string; |
1592 | orderStatusNotIn?: Array<string>; | 1075 | orderStatusNotIn?: Array<string>; |
1593 | /** @format int32 */ | 1076 | /** @format int32 */ |
1594 | pageNumber?: number; | 1077 | pageNumber?: number; |
@@ -1730,10 +1213,14 @@ export interface MeasureUnitListResRow { | @@ -1730,10 +1213,14 @@ export interface MeasureUnitListResRow { | ||
1730 | export interface MessageQueryDTO { | 1213 | export interface MessageQueryDTO { |
1731 | /** @format int32 */ | 1214 | /** @format int32 */ |
1732 | current?: number; | 1215 | current?: number; |
1216 | + /** @format int32 */ | ||
1217 | + end?: number; | ||
1733 | isReaded?: string; | 1218 | isReaded?: string; |
1734 | /** @format int32 */ | 1219 | /** @format int32 */ |
1735 | pageSize?: number; | 1220 | pageSize?: number; |
1736 | /** @format int32 */ | 1221 | /** @format int32 */ |
1222 | + start?: number; | ||
1223 | + /** @format int32 */ | ||
1737 | total?: number; | 1224 | total?: number; |
1738 | username?: string; | 1225 | username?: string; |
1739 | } | 1226 | } |
@@ -1769,6 +1256,8 @@ export interface OrderAuditLogQueryVO { | @@ -1769,6 +1256,8 @@ export interface OrderAuditLogQueryVO { | ||
1769 | applyId?: number; | 1256 | applyId?: number; |
1770 | /** @format int32 */ | 1257 | /** @format int32 */ |
1771 | current?: number; | 1258 | current?: number; |
1259 | + /** @format int32 */ | ||
1260 | + end?: number; | ||
1772 | /** @format int64 */ | 1261 | /** @format int64 */ |
1773 | id?: number; | 1262 | id?: number; |
1774 | ids?: Array<number>; | 1263 | ids?: Array<number>; |
@@ -1778,6 +1267,8 @@ export interface OrderAuditLogQueryVO { | @@ -1778,6 +1267,8 @@ export interface OrderAuditLogQueryVO { | ||
1778 | /** @format int32 */ | 1267 | /** @format int32 */ |
1779 | pageSize?: number; | 1268 | pageSize?: number; |
1780 | /** @format int32 */ | 1269 | /** @format int32 */ |
1270 | + start?: number; | ||
1271 | + /** @format int32 */ | ||
1781 | total?: number; | 1272 | total?: number; |
1782 | } | 1273 | } |
1783 | 1274 | ||
@@ -1812,6 +1303,8 @@ export interface OrderBaseInfoQueryVO { | @@ -1812,6 +1303,8 @@ export interface OrderBaseInfoQueryVO { | ||
1812 | customerCode?: string; | 1303 | customerCode?: string; |
1813 | customerPo?: string; | 1304 | customerPo?: string; |
1814 | customerStyle?: string; | 1305 | customerStyle?: string; |
1306 | + /** @format int32 */ | ||
1307 | + end?: number; | ||
1815 | /** @format int64 */ | 1308 | /** @format int64 */ |
1816 | id?: number; | 1309 | id?: number; |
1817 | ids?: Array<number>; | 1310 | ids?: Array<number>; |
@@ -1833,6 +1326,8 @@ export interface OrderBaseInfoQueryVO { | @@ -1833,6 +1326,8 @@ export interface OrderBaseInfoQueryVO { | ||
1833 | productionDepartmentConsignTime?: string; | 1326 | productionDepartmentConsignTime?: string; |
1834 | projectNo?: string; | 1327 | projectNo?: string; |
1835 | /** @format int32 */ | 1328 | /** @format int32 */ |
1329 | + start?: number; | ||
1330 | + /** @format int32 */ | ||
1836 | total?: number; | 1331 | total?: number; |
1837 | } | 1332 | } |
1838 | 1333 | ||
@@ -1893,6 +1388,8 @@ export interface OrderFieldLockApplyQueryVO { | @@ -1893,6 +1388,8 @@ export interface OrderFieldLockApplyQueryVO { | ||
1893 | auditUserId?: number; | 1388 | auditUserId?: number; |
1894 | /** @format int32 */ | 1389 | /** @format int32 */ |
1895 | current?: number; | 1390 | current?: number; |
1391 | + /** @format int32 */ | ||
1392 | + end?: number; | ||
1896 | fields?: string; | 1393 | fields?: string; |
1897 | /** @format int64 */ | 1394 | /** @format int64 */ |
1898 | id?: number; | 1395 | id?: number; |
@@ -1902,6 +1399,8 @@ export interface OrderFieldLockApplyQueryVO { | @@ -1902,6 +1399,8 @@ export interface OrderFieldLockApplyQueryVO { | ||
1902 | /** @format int32 */ | 1399 | /** @format int32 */ |
1903 | pageSize?: number; | 1400 | pageSize?: number; |
1904 | /** @format int32 */ | 1401 | /** @format int32 */ |
1402 | + start?: number; | ||
1403 | + /** @format int32 */ | ||
1905 | status?: number; | 1404 | status?: number; |
1906 | statusList?: Array<number>; | 1405 | statusList?: Array<number>; |
1907 | /** @format int32 */ | 1406 | /** @format int32 */ |
@@ -1950,6 +1449,8 @@ export interface OrderInspectionStageVO { | @@ -1950,6 +1449,8 @@ export interface OrderInspectionStageVO { | ||
1950 | export interface OrderOptLogQueryVO { | 1449 | export interface OrderOptLogQueryVO { |
1951 | /** @format int32 */ | 1450 | /** @format int32 */ |
1952 | current?: number; | 1451 | current?: number; |
1452 | + /** @format int32 */ | ||
1453 | + end?: number; | ||
1953 | /** @format int64 */ | 1454 | /** @format int64 */ |
1954 | id?: number; | 1455 | id?: number; |
1955 | ids?: Array<number>; | 1456 | ids?: Array<number>; |
@@ -1958,6 +1459,8 @@ export interface OrderOptLogQueryVO { | @@ -1958,6 +1459,8 @@ export interface OrderOptLogQueryVO { | ||
1958 | /** @format int32 */ | 1459 | /** @format int32 */ |
1959 | pageSize?: number; | 1460 | pageSize?: number; |
1960 | /** @format int32 */ | 1461 | /** @format int32 */ |
1462 | + start?: number; | ||
1463 | + /** @format int32 */ | ||
1961 | total?: number; | 1464 | total?: number; |
1962 | } | 1465 | } |
1963 | 1466 | ||
@@ -2263,6 +1766,8 @@ export interface QueryBankStatementDto { | @@ -2263,6 +1766,8 @@ export interface QueryBankStatementDto { | ||
2263 | collectionDatetimeEnd?: string; | 1766 | collectionDatetimeEnd?: string; |
2264 | /** @format int32 */ | 1767 | /** @format int32 */ |
2265 | current?: number; | 1768 | current?: number; |
1769 | + /** @format int32 */ | ||
1770 | + end?: number; | ||
2266 | /** @format int64 */ | 1771 | /** @format int64 */ |
2267 | id?: number; | 1772 | id?: number; |
2268 | /** @format int32 */ | 1773 | /** @format int32 */ |
@@ -2284,6 +1789,8 @@ export interface QueryBankStatementDto { | @@ -2284,6 +1789,8 @@ export interface QueryBankStatementDto { | ||
2284 | remark?: string; | 1789 | remark?: string; |
2285 | remarkNote?: string; | 1790 | remarkNote?: string; |
2286 | serialNumber?: string; | 1791 | serialNumber?: string; |
1792 | + /** @format int32 */ | ||
1793 | + start?: number; | ||
2287 | status?: string; | 1794 | status?: string; |
2288 | /** @format int32 */ | 1795 | /** @format int32 */ |
2289 | total?: number; | 1796 | total?: number; |
@@ -2329,240 +1836,368 @@ export interface QueryInvoiceDetailDto { | @@ -2329,240 +1836,368 @@ export interface QueryInvoiceDetailDto { | ||
2329 | invoiceId?: number; | 1836 | invoiceId?: number; |
2330 | } | 1837 | } |
2331 | 1838 | ||
2332 | -export interface QueryInvoiceProjectDto { | ||
2333 | - /** @format int32 */ | ||
2334 | - current?: number; | ||
2335 | - /** @format int32 */ | ||
2336 | - end?: number; | ||
2337 | - nameLike?: string; | ||
2338 | - /** @format int32 */ | ||
2339 | - pageSize?: number; | ||
2340 | - /** @format int32 */ | ||
2341 | - start?: number; | ||
2342 | - /** @format int32 */ | ||
2343 | - total?: number; | 1839 | +export interface QueryMainOrderDto { |
1840 | + /** | ||
1841 | + * @description | ||
1842 | + * 收货人姓名 | ||
1843 | + */ | ||
1844 | + customerName?: string; | ||
2344 | } | 1845 | } |
2345 | 1846 | ||
2346 | -export interface QueryInvoiceRecordDto { | 1847 | +export interface QueryReportFormsDto { |
2347 | /** | 1848 | /** |
2348 | * @description | 1849 | * @description |
2349 | - * 联系人 | 1850 | + * 是否包含实验设备事业部 |
2350 | */ | 1851 | */ |
2351 | - contactsLike?: string; | ||
2352 | - /** @format date-time */ | ||
2353 | - createTimeGe?: string; | ||
2354 | - /** @format date-time */ | ||
2355 | - createTimeLe?: string; | ||
2356 | - /** @format int32 */ | ||
2357 | - current?: number; | ||
2358 | - /** @format int32 */ | ||
2359 | - end?: number; | 1852 | + includeExperimentalEquipment?: boolean; |
2360 | /** | 1853 | /** |
2361 | * @description | 1854 | * @description |
2362 | - * id | 1855 | + * 最大金额 |
1856 | + * @example | ||
1857 | + * 2343 | ||
1858 | + */ | ||
1859 | + maxAccount?: number; | ||
1860 | + /** | ||
1861 | + * @description | ||
1862 | + * 所属部门 | ||
1863 | + */ | ||
1864 | + productBelongBusiness?: string; | ||
1865 | + /** | ||
1866 | + * @description | ||
1867 | + * 销售代表 | ||
1868 | + */ | ||
1869 | + salesCode?: Array<string>; | ||
1870 | + /** | ||
1871 | + * @description | ||
1872 | + * 统计方式 | ||
1873 | + */ | ||
1874 | + statisticsMethod?: string; | ||
1875 | +} | ||
1876 | + | ||
1877 | +export interface ReissueInvoiceDto { | ||
1878 | + /** @format int64 */ | ||
1879 | + invoiceId?: number; | ||
1880 | + notes?: string; | ||
1881 | + purchaser?: string; | ||
1882 | +} | ||
1883 | + | ||
1884 | +export interface ResearchGroupAccountAddRequest { | ||
1885 | + /** | ||
1886 | + * @description | ||
1887 | + * 关联的账号id | ||
1888 | + * @format int64 | ||
1889 | + */ | ||
1890 | + accountId?: number; | ||
1891 | + /** | ||
1892 | + * @description | ||
1893 | + * 关联的账号名称 | ||
1894 | + */ | ||
1895 | + accountName?: string; | ||
1896 | + /** | ||
1897 | + * @description | ||
1898 | + * 关联的账号手机号 | ||
1899 | + */ | ||
1900 | + accountPhone?: string; | ||
1901 | + /** | ||
1902 | + * @description | ||
1903 | + * 课题组id | ||
1904 | + * @format int64 | ||
1905 | + */ | ||
1906 | + groupId?: number; | ||
1907 | +} | ||
1908 | + | ||
1909 | +export interface ResearchGroupAccountEditRequest { | ||
1910 | + /** | ||
1911 | + * @description | ||
1912 | + * 关联的账号id | ||
1913 | + * @format int64 | ||
1914 | + */ | ||
1915 | + accountId?: number; | ||
1916 | + /** | ||
1917 | + * @description | ||
1918 | + * 关联的账号名称 | ||
1919 | + */ | ||
1920 | + accountName?: string; | ||
1921 | + /** | ||
1922 | + * @description | ||
1923 | + * 关联的账号手机号 | ||
1924 | + */ | ||
1925 | + accountPhone?: string; | ||
1926 | + /** | ||
1927 | + * @description | ||
1928 | + * 课题组id | ||
1929 | + * @format int64 | ||
1930 | + */ | ||
1931 | + groupId?: number; | ||
1932 | + /** | ||
1933 | + * @description | ||
1934 | + * 主键id | ||
2363 | * @format int64 | 1935 | * @format int64 |
2364 | */ | 1936 | */ |
2365 | id?: number; | 1937 | id?: number; |
1938 | +} | ||
1939 | + | ||
1940 | +export interface ResearchGroupAddRequest { | ||
1941 | + accounts?: Array<ResearchGroupAccountAddRequest>; | ||
2366 | /** | 1942 | /** |
2367 | * @description | 1943 | * @description |
2368 | - * IdIn | 1944 | + * 课题组名称 |
2369 | */ | 1945 | */ |
2370 | - idIn?: Array<number>; | 1946 | + group?: string; |
2371 | /** | 1947 | /** |
2372 | * @description | 1948 | * @description |
2373 | - * 关联发票id | 1949 | + * 课题组负责人 |
2374 | */ | 1950 | */ |
2375 | - invoiceId?: string; | 1951 | + leader?: string; |
1952 | + members?: Array<ResearchGroupMemberAddRequest>; | ||
1953 | +} | ||
1954 | + | ||
1955 | +export interface ResearchGroupDeleteRequest { | ||
2376 | /** | 1956 | /** |
2377 | * @description | 1957 | * @description |
2378 | - * 发票号码 | 1958 | + * 主键id |
2379 | */ | 1959 | */ |
2380 | - invoiceNumber?: string; | 1960 | + ids?: Array<number>; |
1961 | +} | ||
1962 | + | ||
1963 | +export interface ResearchGroupDetailRequest { | ||
2381 | /** | 1964 | /** |
2382 | * @description | 1965 | * @description |
2383 | - * 发票号码 | 1966 | + * 主键id |
1967 | + * @format int64 | ||
2384 | */ | 1968 | */ |
2385 | - invoiceNumberLike?: string; | 1969 | + id?: number; |
1970 | +} | ||
1971 | + | ||
1972 | +export interface ResearchGroupEditRequest { | ||
2386 | /** | 1973 | /** |
2387 | * @description | 1974 | * @description |
2388 | - * 开票时间 | ||
2389 | - * @format date-time | 1975 | + * 课题组预存账号 |
2390 | */ | 1976 | */ |
2391 | - invoicingTimeGe?: string; | 1977 | + accounts?: Array<ResearchGroupAccountEditRequest>; |
2392 | /** | 1978 | /** |
2393 | * @description | 1979 | * @description |
2394 | - * 开票时间 | ||
2395 | - * @format date-time | 1980 | + * 课题组名称 |
2396 | */ | 1981 | */ |
2397 | - invoicingTimeLe?: string; | 1982 | + group?: string; |
1983 | + /** | ||
1984 | + * @description | ||
1985 | + * 主键id | ||
1986 | + * @format int64 | ||
1987 | + */ | ||
1988 | + id?: number; | ||
1989 | + /** | ||
1990 | + * @description | ||
1991 | + * 课题组负责人 | ||
1992 | + */ | ||
1993 | + leader?: string; | ||
1994 | + /** | ||
1995 | + * @description | ||
1996 | + * 课题组成员集合 | ||
1997 | + */ | ||
1998 | + members?: Array<ResearchGroupMemberEditRequest>; | ||
1999 | +} | ||
2000 | + | ||
2001 | +export interface ResearchGroupListRequest { | ||
2398 | /** | 2002 | /** |
2399 | * @description | 2003 | * @description |
2400 | - * 开票类型 | 2004 | + * 预存账号手机号 |
2401 | */ | 2005 | */ |
2402 | - invoicingType?: string; | 2006 | + accountPhone?: string; |
2007 | + /** @format int32 */ | ||
2008 | + current?: number; | ||
2009 | + /** @format int32 */ | ||
2010 | + end?: number; | ||
2403 | /** | 2011 | /** |
2404 | * @description | 2012 | * @description |
2405 | - * 是否加急 | 2013 | + * 课题组名称 |
2406 | */ | 2014 | */ |
2407 | - isUrgent?: boolean; | 2015 | + groupName?: string; |
2408 | /** | 2016 | /** |
2409 | * @description | 2017 | * @description |
2410 | - * 订单号 | ||
2411 | - * @format int64 | 2018 | + * 课题组负责人 |
2412 | */ | 2019 | */ |
2413 | - mainOrderId?: number; | 2020 | + leaderName?: string; |
2414 | /** | 2021 | /** |
2415 | * @description | 2022 | * @description |
2416 | - * 主订单idIn | 2023 | + * 课题组成员名称 |
2417 | */ | 2024 | */ |
2418 | - mainOrderIdIn?: Array<number>; | 2025 | + memberName?: string; |
2419 | /** | 2026 | /** |
2420 | * @description | 2027 | * @description |
2421 | - * 订单号 | 2028 | + * 课题组成员手机号 |
2422 | */ | 2029 | */ |
2423 | - mainOrderIdLike?: string; | 2030 | + memberPhone?: string; |
2031 | + /** @format int32 */ | ||
2032 | + pageSize?: number; | ||
2033 | + /** @format int32 */ | ||
2034 | + start?: number; | ||
2035 | + /** @format int32 */ | ||
2036 | + total?: number; | ||
2037 | +} | ||
2038 | + | ||
2039 | +export interface ResearchGroupMemberAddRequest { | ||
2424 | /** | 2040 | /** |
2425 | * @description | 2041 | * @description |
2426 | - * 是否需要构建发票明细 | 2042 | + * 课题组ID |
2043 | + * @format int64 | ||
2427 | */ | 2044 | */ |
2428 | - needBuildDetails?: boolean; | 2045 | + groupId?: number; |
2429 | /** | 2046 | /** |
2430 | * @description | 2047 | * @description |
2431 | - * 是否需要构建发票明细 | 2048 | + * 成员名称 |
2432 | */ | 2049 | */ |
2433 | - needBuildSubOrders?: boolean; | ||
2434 | - /** @format int32 */ | ||
2435 | - pageSize?: number; | 2050 | + memberName?: string; |
2436 | /** | 2051 | /** |
2437 | * @description | 2052 | * @description |
2438 | - * 买方名称 | 2053 | + * 成员手机号 |
2439 | */ | 2054 | */ |
2440 | - partyANameLike?: string; | 2055 | + memberPhone?: string; |
2056 | +} | ||
2057 | + | ||
2058 | +export interface ResearchGroupMemberEditRequest { | ||
2441 | /** | 2059 | /** |
2442 | * @description | 2060 | * @description |
2443 | - * 买方电话号码 | 2061 | + * 课题组ID |
2062 | + * @format int64 | ||
2444 | */ | 2063 | */ |
2445 | - partyAPhoneNumberLike?: string; | 2064 | + groupId?: number; |
2446 | /** | 2065 | /** |
2447 | * @description | 2066 | * @description |
2448 | - * 买方税号 | 2067 | + * 主键id |
2068 | + * @format int64 | ||
2449 | */ | 2069 | */ |
2450 | - partyATaxid?: string; | 2070 | + id?: number; |
2451 | /** | 2071 | /** |
2452 | * @description | 2072 | * @description |
2453 | - * 买方税号 | 2073 | + * 成员名称 |
2454 | */ | 2074 | */ |
2455 | - partyATaxidLike?: string; | ||
2456 | - partyB?: string; | 2075 | + memberName?: string; |
2457 | /** | 2076 | /** |
2458 | * @description | 2077 | * @description |
2459 | - * 卖方名称 | 2078 | + * 成员手机号 |
2460 | */ | 2079 | */ |
2461 | - partyBName?: string; | 2080 | + memberPhone?: string; |
2081 | +} | ||
2082 | + | ||
2083 | +export interface ResearchGroupMemberRequestAddRequest { | ||
2462 | /** | 2084 | /** |
2463 | * @description | 2085 | * @description |
2464 | - * 销售代表 | 2086 | + * 课题组ID |
2087 | + * @format int64 | ||
2465 | */ | 2088 | */ |
2466 | - salesCode?: string; | 2089 | + groupId?: number; |
2467 | /** | 2090 | /** |
2468 | * @description | 2091 | * @description |
2469 | - * 销售代表 | 2092 | + * 课题组名称 |
2470 | */ | 2093 | */ |
2471 | - salesCodeLike?: string; | ||
2472 | - /** @format int32 */ | ||
2473 | - start?: number; | 2094 | + groupName?: string; |
2095 | + members?: Array<ResearchGroupMemberAddRequest>; | ||
2474 | /** | 2096 | /** |
2475 | * @description | 2097 | * @description |
2476 | - * 发票状态 | 2098 | + * 申请备注 |
2477 | */ | 2099 | */ |
2478 | - status?: string; | 2100 | + requestNotes?: string; |
2101 | +} | ||
2102 | + | ||
2103 | +export interface ResearchGroupMemberRequestDeleteRequest { | ||
2479 | /** | 2104 | /** |
2480 | * @description | 2105 | * @description |
2481 | - * 状态非空 | 2106 | + * 主键id |
2482 | */ | 2107 | */ |
2483 | - statusIn?: Array<string>; | 2108 | + ids?: Array<number>; |
2109 | +} | ||
2110 | + | ||
2111 | +export interface ResearchGroupMemberRequestDetailRequest { | ||
2484 | /** | 2112 | /** |
2485 | * @description | 2113 | * @description |
2486 | - * 状态非空 | 2114 | + * 主键id |
2115 | + * @format int64 | ||
2487 | */ | 2116 | */ |
2488 | - statusIsNotNull?: boolean; | 2117 | + id?: number; |
2118 | +} | ||
2119 | + | ||
2120 | +export interface ResearchGroupMemberRequestEditRequest { | ||
2489 | /** | 2121 | /** |
2490 | * @description | 2122 | * @description |
2491 | - * 状态为空 | 2123 | + * 课题组ID |
2124 | + * @format int64 | ||
2492 | */ | 2125 | */ |
2493 | - statusIsNull?: boolean; | 2126 | + groupId?: number; |
2494 | /** | 2127 | /** |
2495 | * @description | 2128 | * @description |
2496 | - * 子订单 | ||
2497 | - * @format int64 | 2129 | + * 课题组名称 |
2498 | */ | 2130 | */ |
2499 | - subOrderId?: number; | 2131 | + groupName?: string; |
2500 | /** | 2132 | /** |
2501 | * @description | 2133 | * @description |
2502 | - * 子订单idIn | 2134 | + * 主键id |
2135 | + * @format int64 | ||
2503 | */ | 2136 | */ |
2504 | - subOrderIdIn?: Array<number>; | 2137 | + id?: number; |
2505 | /** | 2138 | /** |
2506 | * @description | 2139 | * @description |
2507 | - * 子订单 | 2140 | + * 成员名称 |
2508 | */ | 2141 | */ |
2509 | - subOrderIdLike?: string; | ||
2510 | - /** @format int32 */ | ||
2511 | - total?: number; | 2142 | + memberName?: string; |
2512 | /** | 2143 | /** |
2513 | * @description | 2144 | * @description |
2514 | - * 开票类型 | 2145 | + * 成员手机号 |
2515 | */ | 2146 | */ |
2516 | - type?: string; | 2147 | + memberPhone?: string; |
2517 | /** | 2148 | /** |
2518 | * @description | 2149 | * @description |
2519 | - * 用户id | 2150 | + * 申请备注 |
2520 | */ | 2151 | */ |
2521 | - uid?: string; | 2152 | + requestNotes?: string; |
2522 | } | 2153 | } |
2523 | 2154 | ||
2524 | -export interface QueryMainOrderDto { | 2155 | +export interface ResearchGroupMemberRequestsRequest { |
2525 | /** | 2156 | /** |
2526 | * @description | 2157 | * @description |
2527 | - * 收货人姓名 | 2158 | + * 审核备注 |
2528 | */ | 2159 | */ |
2529 | - customerName?: string; | ||
2530 | -} | ||
2531 | - | ||
2532 | -export interface QueryReportFormsDto { | 2160 | + auditNotes?: string; |
2533 | /** | 2161 | /** |
2534 | * @description | 2162 | * @description |
2535 | - * 是否包含实验设备事业部 | 2163 | + * 审核状态 |
2536 | */ | 2164 | */ |
2537 | - includeExperimentalEquipment?: boolean; | 2165 | + auditStatus?: string; |
2538 | /** | 2166 | /** |
2539 | * @description | 2167 | * @description |
2540 | - * 最大金额 | ||
2541 | - * @example | ||
2542 | - * 2343 | 2168 | + * 创建人 |
2543 | */ | 2169 | */ |
2544 | - maxAccount?: number; | 2170 | + createByName?: string; |
2171 | + /** @format int32 */ | ||
2172 | + current?: number; | ||
2173 | + /** @format int32 */ | ||
2174 | + end?: number; | ||
2545 | /** | 2175 | /** |
2546 | * @description | 2176 | * @description |
2547 | - * 所属部门 | 2177 | + * 课题组名称 |
2548 | */ | 2178 | */ |
2549 | - productBelongBusiness?: string; | 2179 | + groupName?: string; |
2550 | /** | 2180 | /** |
2551 | * @description | 2181 | * @description |
2552 | - * 销售代表 | 2182 | + * 成员名称 |
2553 | */ | 2183 | */ |
2554 | - salesCode?: string; | 2184 | + memberName?: string; |
2555 | /** | 2185 | /** |
2556 | * @description | 2186 | * @description |
2557 | - * 统计方式 | 2187 | + * 成员手机号 |
2558 | */ | 2188 | */ |
2559 | - statisticsMethod?: string; | ||
2560 | -} | ||
2561 | - | ||
2562 | -export interface ReissueInvoiceDto { | ||
2563 | - /** @format int64 */ | ||
2564 | - invoiceId?: number; | ||
2565 | - notes?: string; | 2189 | + memberPhone?: string; |
2190 | + /** @format int32 */ | ||
2191 | + pageSize?: number; | ||
2192 | + /** | ||
2193 | + * @description | ||
2194 | + * 申请备注 | ||
2195 | + */ | ||
2196 | + requestNotes?: string; | ||
2197 | + /** @format int32 */ | ||
2198 | + start?: number; | ||
2199 | + /** @format int32 */ | ||
2200 | + total?: number; | ||
2566 | } | 2201 | } |
2567 | 2202 | ||
2568 | export interface ResetPwdVO { | 2203 | export interface ResetPwdVO { |
@@ -2604,134 +2239,14 @@ export interface ShippingWarehouseChangeDto { | @@ -2604,134 +2239,14 @@ export interface ShippingWarehouseChangeDto { | ||
2604 | shippingWarehouse?: string; | 2239 | shippingWarehouse?: string; |
2605 | } | 2240 | } |
2606 | 2241 | ||
2607 | -export interface SubOrder { | ||
2608 | - afterInvoicingStatus?: string; | ||
2609 | - /** @format date-time */ | ||
2610 | - afterInvoicingStatusUpdateTime?: string; | ||
2611 | - afterSalesAnnex?: string; | ||
2612 | - afterSalesNotes?: string; | ||
2613 | - afterSalesPlan?: string; | ||
2614 | - annex?: string; | ||
2615 | - applyInvoicingAnnex?: string; | ||
2616 | - applyInvoicingNotes?: string; | ||
2617 | - /** @format date-time */ | ||
2618 | - applyTime?: string; | ||
2619 | - /** @format int32 */ | ||
2620 | - attrId?: number; | ||
2621 | - checkNotes?: string; | ||
2622 | - /** @format date-time */ | ||
2623 | - collectMoneyTime?: string; | ||
2624 | - confirmDeliverNotes?: string; | ||
2625 | - confirmReissueNotes?: string; | ||
2626 | - createByName?: string; | ||
2627 | - /** @format date-time */ | ||
2628 | - createTime?: string; | ||
2629 | - /** @format date-time */ | ||
2630 | - deadline?: string; | ||
2631 | - ext?: string; | ||
2632 | - extendField?: string; | ||
2633 | - /** @format date-time */ | ||
2634 | - financialReceiptIssuanceTime?: string; | ||
2635 | - fullPaymentStatus?: string; | ||
2636 | - /** @format double */ | ||
2637 | - goodsVolume?: number; | ||
2638 | - /** @format double */ | ||
2639 | - goodsWeight?: number; | ||
2640 | - /** @format int64 */ | ||
2641 | - id?: number; | ||
2642 | - image?: string; | ||
2643 | - invoiceApplyUsername?: string; | ||
2644 | - invoiceInformation?: string; | ||
2645 | - /** @format int64 */ | ||
2646 | - invoiceRecordId?: number; | ||
2647 | - invoicingCheckAnnex?: string; | ||
2648 | - invoicingNotes?: string; | ||
2649 | - invoicingStatus?: string; | ||
2650 | - /** @format date-time */ | ||
2651 | - invoicingTime?: string; | ||
2652 | - invoicingUrgentCause?: string; | ||
2653 | - isUrgent?: boolean; | ||
2654 | - kingdeeErrorMessage?: string; | ||
2655 | - logicDelete?: boolean; | ||
2656 | - logisticsMethod?: string; | ||
2657 | - logisticsNotes?: string; | ||
2658 | - /** @format int64 */ | ||
2659 | - mainOrderAmountProportion?: number; | ||
2660 | - /** @format int64 */ | ||
2661 | - mainOrderId?: number; | ||
2662 | - materialId?: string; | ||
2663 | - modified?: boolean; | ||
2664 | - modifiedAuditNotes?: string; | ||
2665 | - modifiedAuditStatus?: string; | ||
2666 | - modifiedOptFlag?: string; | ||
2667 | - nextOrderStatus?: string; | ||
2668 | - notes?: string; | ||
2669 | - orderStatus?: string; | ||
2670 | - orderStatusBeforeModify?: string; | ||
2671 | - /** @format date-time */ | ||
2672 | - orderStatusUpdateTime?: string; | ||
2673 | - /** @format int32 */ | ||
2674 | - packageNumber?: number; | ||
2675 | - parameters?: string; | ||
2676 | - paymentChannel?: string; | ||
2677 | - paymentMethod?: string; | ||
2678 | - paymentReceiptAnnex?: string; | ||
2679 | - paymentReceiptNotes?: string; | ||
2680 | - paymentReceiptStatus?: string; | ||
2681 | - paymentStatus?: string; | ||
2682 | - paymentTransactionId?: string; | ||
2683 | - postAuditNotes?: string; | ||
2684 | - postAuditStatus?: string; | ||
2685 | - /** @format date-time */ | ||
2686 | - postAuditStatusUpdateTime?: string; | ||
2687 | - preAfterInvoicingStatus?: string; | ||
2688 | - procureConvertNotes?: string; | ||
2689 | - procureNotes?: string; | ||
2690 | - /** @format date-time */ | ||
2691 | - procureOrderDatetime?: string; | ||
2692 | - procureOrderStatus?: string; | ||
2693 | - productBelongBusiness?: string; | ||
2694 | - productCode?: string; | ||
2695 | - /** @format int32 */ | ||
2696 | - productId?: number; | ||
2697 | - productName?: string; | ||
2698 | - /** @format int64 */ | ||
2699 | - productPrice?: number; | ||
2700 | - /** @format date-time */ | ||
2701 | - productionEndTime?: string; | ||
2702 | - /** @format date-time */ | ||
2703 | - productionStartTime?: string; | ||
2704 | - productionTimePushStatus?: string; | ||
2705 | - /** @format int32 */ | ||
2706 | - quantity?: number; | ||
2707 | - receivingCompany?: string; | ||
2708 | - reissueNotes?: string; | ||
2709 | - serialNumber?: string; | ||
2710 | - shippingWarehouse?: string; | ||
2711 | - /** @format int64 */ | ||
2712 | - subOrderPayment?: number; | ||
2713 | - supplierName?: string; | ||
2714 | - supplierNotes?: string; | ||
2715 | - /** @format int64 */ | ||
2716 | - totalPayment?: number; | ||
2717 | - /** @format int32 */ | ||
2718 | - uid?: number; | ||
2719 | - unit?: string; | ||
2720 | - unitId?: string; | ||
2721 | - updateByName?: string; | ||
2722 | - /** @format date-time */ | ||
2723 | - updateTime?: string; | ||
2724 | - urgentInvoiceAuditNotes?: string; | ||
2725 | - /** @format int32 */ | ||
2726 | - version?: number; | ||
2727 | -} | ||
2728 | - | ||
2729 | export interface SysLogQueryVO { | 2242 | export interface SysLogQueryVO { |
2730 | address?: string; | 2243 | address?: string; |
2731 | browser?: string; | 2244 | browser?: string; |
2732 | /** @format int32 */ | 2245 | /** @format int32 */ |
2733 | current?: number; | 2246 | current?: number; |
2734 | description?: string; | 2247 | description?: string; |
2248 | + /** @format int32 */ | ||
2249 | + end?: number; | ||
2735 | exceptionDetail?: string; | 2250 | exceptionDetail?: string; |
2736 | /** @format int64 */ | 2251 | /** @format int64 */ |
2737 | id?: number; | 2252 | id?: number; |
@@ -2742,6 +2257,8 @@ export interface SysLogQueryVO { | @@ -2742,6 +2257,8 @@ export interface SysLogQueryVO { | ||
2742 | pageSize?: number; | 2257 | pageSize?: number; |
2743 | params?: string; | 2258 | params?: string; |
2744 | requestIp?: string; | 2259 | requestIp?: string; |
2260 | + /** @format int32 */ | ||
2261 | + start?: number; | ||
2745 | /** @format int64 */ | 2262 | /** @format int64 */ |
2746 | time?: number; | 2263 | time?: number; |
2747 | /** @format int32 */ | 2264 | /** @format int32 */ |
@@ -2905,8 +2422,12 @@ export interface UserCenterInfoRequest { | @@ -2905,8 +2422,12 @@ export interface UserCenterInfoRequest { | ||
2905 | /** @format int32 */ | 2422 | /** @format int32 */ |
2906 | current?: number; | 2423 | current?: number; |
2907 | /** @format int32 */ | 2424 | /** @format int32 */ |
2425 | + end?: number; | ||
2426 | + /** @format int32 */ | ||
2908 | pageSize?: number; | 2427 | pageSize?: number; |
2909 | /** @format int32 */ | 2428 | /** @format int32 */ |
2429 | + start?: number; | ||
2430 | + /** @format int32 */ | ||
2910 | total?: number; | 2431 | total?: number; |
2911 | /** | 2432 | /** |
2912 | * @description | 2433 | * @description |
@@ -2926,6 +2447,8 @@ export interface UserDetailRequest { | @@ -2926,6 +2447,8 @@ export interface UserDetailRequest { | ||
2926 | /** @format int32 */ | 2447 | /** @format int32 */ |
2927 | current?: number; | 2448 | current?: number; |
2928 | /** @format int32 */ | 2449 | /** @format int32 */ |
2450 | + end?: number; | ||
2451 | + /** @format int32 */ | ||
2929 | pageSize?: number; | 2452 | pageSize?: number; |
2930 | /** | 2453 | /** |
2931 | * @description | 2454 | * @description |
@@ -2933,6 +2456,8 @@ export interface UserDetailRequest { | @@ -2933,6 +2456,8 @@ export interface UserDetailRequest { | ||
2933 | */ | 2456 | */ |
2934 | phone?: string; | 2457 | phone?: string; |
2935 | /** @format int32 */ | 2458 | /** @format int32 */ |
2459 | + start?: number; | ||
2460 | + /** @format int32 */ | ||
2936 | total?: number; | 2461 | total?: number; |
2937 | /** | 2462 | /** |
2938 | * @description | 2463 | * @description |
@@ -2949,6 +2474,8 @@ export interface UserListRequest { | @@ -2949,6 +2474,8 @@ export interface UserListRequest { | ||
2949 | * 创建日期开始时间 | 2474 | * 创建日期开始时间 |
2950 | */ | 2475 | */ |
2951 | dateLimit?: string; | 2476 | dateLimit?: string; |
2477 | + /** @format int32 */ | ||
2478 | + end?: number; | ||
2952 | /** | 2479 | /** |
2953 | * @description | 2480 | * @description |
2954 | * 单位 | 2481 | * 单位 |
@@ -2973,10 +2500,23 @@ export interface UserListRequest { | @@ -2973,10 +2500,23 @@ export interface UserListRequest { | ||
2973 | phone?: string; | 2500 | phone?: string; |
2974 | /** | 2501 | /** |
2975 | * @description | 2502 | * @description |
2503 | + * phones | ||
2504 | + */ | ||
2505 | + phones?: Array<string>; | ||
2506 | + /** | ||
2507 | + * @description | ||
2508 | + * 内部订单系统课题组id | ||
2509 | + * @format int64 | ||
2510 | + */ | ||
2511 | + researchGroupId?: number; | ||
2512 | + /** | ||
2513 | + * @description | ||
2976 | * salesCode | 2514 | * salesCode |
2977 | */ | 2515 | */ |
2978 | salesCode?: string; | 2516 | salesCode?: string; |
2979 | /** @format int32 */ | 2517 | /** @format int32 */ |
2518 | + start?: number; | ||
2519 | + /** @format int32 */ | ||
2980 | total?: number; | 2520 | total?: number; |
2981 | /** | 2521 | /** |
2982 | * @description | 2522 | * @description |
@@ -2986,11 +2526,23 @@ export interface UserListRequest { | @@ -2986,11 +2526,23 @@ export interface UserListRequest { | ||
2986 | uid?: number; | 2526 | uid?: number; |
2987 | /** | 2527 | /** |
2988 | * @description | 2528 | * @description |
2529 | + * ids | ||
2530 | + */ | ||
2531 | + uids?: Array<number>; | ||
2532 | + /** | ||
2533 | + * @description | ||
2989 | * 用户名 | 2534 | * 用户名 |
2990 | */ | 2535 | */ |
2991 | username?: string; | 2536 | username?: string; |
2992 | } | 2537 | } |
2993 | 2538 | ||
2539 | +export interface UserNowMoneyCheckRequest { | ||
2540 | + phone?: string; | ||
2541 | + subPrice?: number; | ||
2542 | + /** @format int64 */ | ||
2543 | + uid?: number; | ||
2544 | +} | ||
2545 | + | ||
2994 | export interface View { | 2546 | export interface View { |
2995 | contentType?: string; | 2547 | contentType?: string; |
2996 | } | 2548 | } |
@@ -3039,44 +2591,6 @@ export interface TsgFile { | @@ -3039,44 +2591,6 @@ export interface TsgFile { | ||
3039 | writable?: boolean; | 2591 | writable?: boolean; |
3040 | } | 2592 | } |
3041 | 2593 | ||
3042 | -export interface InvoiceDetail { | ||
3043 | - /** @format int64 */ | ||
3044 | - id?: number; | ||
3045 | - /** | ||
3046 | - * @description | ||
3047 | - * 发票id | ||
3048 | - * @format int64 | ||
3049 | - */ | ||
3050 | - invoiceRecordId?: number; | ||
3051 | - /** | ||
3052 | - * @description | ||
3053 | - * 单价 | ||
3054 | - * @format double | ||
3055 | - */ | ||
3056 | - price?: number; | ||
3057 | - projectName?: string; | ||
3058 | - /** @format double */ | ||
3059 | - quantity?: number; | ||
3060 | - /** | ||
3061 | - * @description | ||
3062 | - * 型号 | ||
3063 | - */ | ||
3064 | - specification?: string; | ||
3065 | - /** @format int64 */ | ||
3066 | - subOrderId?: number; | ||
3067 | - /** @format double */ | ||
3068 | - taxPrice?: number; | ||
3069 | - /** @format double */ | ||
3070 | - taxRate?: number; | ||
3071 | - /** | ||
3072 | - * @description | ||
3073 | - * 总价 | ||
3074 | - * @format double | ||
3075 | - */ | ||
3076 | - totalPrice?: number; | ||
3077 | - unit?: string; | ||
3078 | -} | ||
3079 | - | ||
3080 | export interface SalesRechargePrepaymentAuditRequest { | 2594 | export interface SalesRechargePrepaymentAuditRequest { |
3081 | /** | 2595 | /** |
3082 | * @description | 2596 | * @description |
@@ -3093,6 +2607,11 @@ export interface SalesRechargePrepaymentAuditRequest { | @@ -3093,6 +2607,11 @@ export interface SalesRechargePrepaymentAuditRequest { | ||
3093 | * 是否通过 | 2607 | * 是否通过 |
3094 | */ | 2608 | */ |
3095 | pass?: boolean; | 2609 | pass?: boolean; |
2610 | + /** | ||
2611 | + * @description | ||
2612 | + * 手机号 | ||
2613 | + */ | ||
2614 | + phone?: string; | ||
3096 | } | 2615 | } |
3097 | 2616 | ||
3098 | export interface SalesRechargePrepaymentCreateRequest { | 2617 | export interface SalesRechargePrepaymentCreateRequest { |
@@ -3198,6 +2717,8 @@ export interface SalesRechargePrepaymentRequest { | @@ -3198,6 +2717,8 @@ export interface SalesRechargePrepaymentRequest { | ||
3198 | * @format int32 | 2717 | * @format int32 |
3199 | */ | 2718 | */ |
3200 | enableFlag?: number; | 2719 | enableFlag?: number; |
2720 | + /** @format int32 */ | ||
2721 | + end?: number; | ||
3201 | /** | 2722 | /** |
3202 | * @description | 2723 | * @description |
3203 | * id | 2724 | * id |
@@ -3242,6 +2763,8 @@ export interface SalesRechargePrepaymentRequest { | @@ -3242,6 +2763,8 @@ export interface SalesRechargePrepaymentRequest { | ||
3242 | * 销售代表 | 2763 | * 销售代表 |
3243 | */ | 2764 | */ |
3244 | salesCode?: string; | 2765 | salesCode?: string; |
2766 | + /** @format int32 */ | ||
2767 | + start?: number; | ||
3245 | /** | 2768 | /** |
3246 | * @description | 2769 | * @description |
3247 | * 状态 | 2770 | * 状态 |
@@ -3420,6 +2943,38 @@ export interface TsgURL { | @@ -3420,6 +2943,38 @@ export interface TsgURL { | ||
3420 | userInfo?: string; | 2943 | userInfo?: string; |
3421 | } | 2944 | } |
3422 | 2945 | ||
2946 | +/** | ||
2947 | + * @description | ||
2948 | + * 保存用户地址请求对象 | ||
2949 | + */ | ||
2950 | +export interface UserAddressSaveRequest { | ||
2951 | + /** | ||
2952 | + * @description | ||
2953 | + * 联系电话 | ||
2954 | + */ | ||
2955 | + customerContactNumber: string; | ||
2956 | + /** | ||
2957 | + * @description | ||
2958 | + * 客户姓名 | ||
2959 | + */ | ||
2960 | + customerName: string; | ||
2961 | + /** | ||
2962 | + * @description | ||
2963 | + * 收货地址 | ||
2964 | + */ | ||
2965 | + customerShippingAddress?: string; | ||
2966 | + /** | ||
2967 | + * @description | ||
2968 | + * 客户单位 | ||
2969 | + */ | ||
2970 | + institution?: string; | ||
2971 | + /** | ||
2972 | + * @description | ||
2973 | + * 课题组老师 | ||
2974 | + */ | ||
2975 | + institutionContactName?: string; | ||
2976 | +} | ||
2977 | + | ||
3423 | export interface UploadPaymentReceiptDTO { | 2978 | export interface UploadPaymentReceiptDTO { |
3424 | /** | 2979 | /** |
3425 | * @description | 2980 | * @description |