Commit d2df4bf4d2478bc80ac5c632d0d4e14b1cbd3b92
1 parent
78b2816b
feat: update 采购批量审核
Showing
7 changed files
with
257 additions
and
52 deletions
src/pages/Order/components/OrderDrawer copy.tsx
src/pages/Order/components/ProcureCheckModal.tsx
... | ... | @@ -4,20 +4,24 @@ import { |
4 | 4 | postServiceOrderProcureConvertWarehouseKeeper, |
5 | 5 | postServiceOrderQuerySupplier, |
6 | 6 | } from '@/services'; |
7 | -import { ModalForm, ProFormSelect } from '@ant-design/pro-components'; | |
7 | +import { | |
8 | + ModalForm, | |
9 | + ProFormSelect, | |
10 | + ProFormTextArea, | |
11 | +} from '@ant-design/pro-components'; | |
8 | 12 | import { Button, Form, Input, Popconfirm, message } from 'antd'; |
9 | 13 | import { useState } from 'react'; |
10 | -export default ({ setCheckVisible, data, subOrders, onClose }) => { | |
11 | - const [form] = Form.useForm<{ name: string; company: string }>(); | |
14 | +export default ({ setCheckVisible, isMainOrder, data, orders, onClose }) => { | |
15 | + const [form] = Form.useForm<{ supplier: string }>(); | |
12 | 16 | |
13 | 17 | const [checkNotes, setCheckNotes] = useState<string>(''); |
14 | 18 | |
15 | - let subOrderIds: any[] = []; | |
19 | + let ids: any[] = []; | |
16 | 20 | //是单条子订单审核 |
17 | - if (subOrders === undefined) { | |
18 | - subOrderIds = [data.id]; | |
21 | + if (orders === undefined) { | |
22 | + ids = [data.id]; | |
19 | 23 | } else { |
20 | - subOrderIds = subOrders.map((subOrder) => subOrder.id); | |
24 | + ids = orders.map((order: any) => order.id); | |
21 | 25 | } |
22 | 26 | async function doCheck(body: object) { |
23 | 27 | const data = await postServiceOrderProcureCheckOrder({ |
... | ... | @@ -31,8 +35,7 @@ export default ({ setCheckVisible, data, subOrders, onClose }) => { |
31 | 35 | |
32 | 36 | return ( |
33 | 37 | <ModalForm<{ |
34 | - name: string; | |
35 | - company: string; | |
38 | + supplier: string; | |
36 | 39 | }> |
37 | 40 | width={500} |
38 | 41 | open |
... | ... | @@ -69,13 +72,22 @@ export default ({ setCheckVisible, data, subOrders, onClose }) => { |
69 | 72 | </div> |
70 | 73 | } |
71 | 74 | onConfirm={async () => { |
72 | - const res = | |
73 | - await postServiceOrderProcureConvertWarehouseKeeper({ | |
75 | + let res; | |
76 | + if (isMainOrder) { | |
77 | + res = await postServiceOrderProcureConvertWarehouseKeeper({ | |
78 | + data: { | |
79 | + mainIds: ids, | |
80 | + checkNotes: checkNotes, | |
81 | + }, | |
82 | + }); | |
83 | + } else { | |
84 | + res = await postServiceOrderProcureConvertWarehouseKeeper({ | |
74 | 85 | data: { |
75 | - subIds: subOrderIds, | |
86 | + subIds: ids, | |
76 | 87 | checkNotes: checkNotes, |
77 | 88 | }, |
78 | 89 | }); |
90 | + } | |
79 | 91 | |
80 | 92 | if (res?.result === RESPONSE_CODE.SUCCESS) { |
81 | 93 | message.success(res.message); |
... | ... | @@ -95,7 +107,7 @@ export default ({ setCheckVisible, data, subOrders, onClose }) => { |
95 | 107 | }} |
96 | 108 | submitTimeout={2000} |
97 | 109 | onFinish={async (values) => { |
98 | - if (values.name === '0') { | |
110 | + if (values.supplier === '0') { | |
99 | 111 | message.error('选择转回仓库请点击转回仓库按钮!'); |
100 | 112 | return; |
101 | 113 | } |
... | ... | @@ -103,11 +115,19 @@ export default ({ setCheckVisible, data, subOrders, onClose }) => { |
103 | 115 | // if (values.name === '采购自行发货') { |
104 | 116 | // procureIsPrintAndSend = true; |
105 | 117 | // } |
106 | - return doCheck({ | |
107 | - ids: subOrderIds, | |
108 | - supplier: values.name, | |
109 | - procureIsPrintAndSend: procureIsPrintAndSend, | |
110 | - }); | |
118 | + if (isMainOrder) { | |
119 | + return doCheck({ | |
120 | + ...values, | |
121 | + mainOrderIds: ids, | |
122 | + procureIsPrintAndSend: procureIsPrintAndSend, | |
123 | + }); | |
124 | + } else { | |
125 | + return doCheck({ | |
126 | + ...values, | |
127 | + subOrderIds: ids, | |
128 | + procureIsPrintAndSend: procureIsPrintAndSend, | |
129 | + }); | |
130 | + } | |
111 | 131 | }} |
112 | 132 | onOpenChange={setCheckVisible} |
113 | 133 | > |
... | ... | @@ -115,7 +135,7 @@ export default ({ setCheckVisible, data, subOrders, onClose }) => { |
115 | 135 | key="key" |
116 | 136 | label="采购名称" |
117 | 137 | width="lg" |
118 | - name="name" | |
138 | + name="supplier" | |
119 | 139 | // options={options} |
120 | 140 | placeholder="请选择采购" |
121 | 141 | rules={[{ required: true, message: '采购名称必填' }]} |
... | ... | @@ -128,6 +148,8 @@ export default ({ setCheckVisible, data, subOrders, onClose }) => { |
128 | 148 | return options; |
129 | 149 | }} |
130 | 150 | /> |
151 | + | |
152 | + <ProFormTextArea label="备注" name="procureNotes" key="procureNotes" /> | |
131 | 153 | </ModalForm> |
132 | 154 | ); |
133 | 155 | }; | ... | ... |
src/pages/Order/components/ProcureNotesEditModal.tsx
0 → 100644
1 | +import { RESPONSE_CODE } from '@/constants/enum'; | |
2 | +import { postServiceOrderProcureNotesEdit } from '@/services'; | |
3 | +import { ModalForm, ProFormTextArea } from '@ant-design/pro-components'; | |
4 | +import { Form, message } from 'antd'; | |
5 | +export default ({ setNotesEditVisible, data, onClose }) => { | |
6 | + const [form] = Form.useForm<{ procureNotes: string }>(); | |
7 | + return ( | |
8 | + <ModalForm<{ | |
9 | + procureNotes: string; | |
10 | + }> | |
11 | + width={500} | |
12 | + open | |
13 | + title="修改备注" | |
14 | + form={form} | |
15 | + autoFocusFirstInput | |
16 | + modalProps={{ | |
17 | + okText: '保存', | |
18 | + cancelText: '取消', | |
19 | + destroyOnClose: true, | |
20 | + onCancel: () => { | |
21 | + setNotesEditVisible(false); | |
22 | + }, | |
23 | + }} | |
24 | + submitTimeout={2000} | |
25 | + onFinish={async (values) => { | |
26 | + let body = { | |
27 | + subOrderId: data.id, | |
28 | + procureNotes: values.procureNotes, | |
29 | + }; | |
30 | + const res = await postServiceOrderProcureNotesEdit({ data: body }); | |
31 | + if (res.result === RESPONSE_CODE.SUCCESS) { | |
32 | + message.success(res.message); | |
33 | + onClose(); | |
34 | + } | |
35 | + }} | |
36 | + onOpenChange={setNotesEditVisible} | |
37 | + > | |
38 | + <ProFormTextArea | |
39 | + width="lg" | |
40 | + key="procureNotes" | |
41 | + name="procureNotes" | |
42 | + initialValue={data.procureNotes} | |
43 | + placeholder="填写备注内容" | |
44 | + /> | |
45 | + </ModalForm> | |
46 | + ); | |
47 | +}; | ... | ... |
src/pages/Order/constant.ts
... | ... | @@ -56,6 +56,9 @@ export const PAYEE_OPTIONS = { |
56 | 56 | INNOVATION_ALIPAY: '创新支付宝', |
57 | 57 | ZHUGUANG_ALIPAY: '烛光支付宝', |
58 | 58 | ZHUGUANG_WISE_COLLECTION: '烛光慧收款', |
59 | + EXPERIMENT_QR_CODE: '实验二维码', | |
60 | + INNOVATION_QR_CODE: '创新二维码', | |
61 | + NEW_ENERGY_QR_CODE: '新能源二维码', | |
59 | 62 | }; |
60 | 63 | |
61 | 64 | export const PROCURE_ORDER_STATUS = { | ... | ... |
src/pages/Order/index.tsx
... | ... | @@ -72,6 +72,7 @@ import OrderDrawer from './components/OrderDrawer'; |
72 | 72 | import OrderNotesEditModal from './components/OrderNotesEditModal'; |
73 | 73 | import ProcureCheckModal from './components/ProcureCheckModal'; |
74 | 74 | import ProcureConvertModal from './components/ProcureConvertModal'; |
75 | +import ProcureNotesEditModal from './components/ProcureNotesEditModal'; | |
75 | 76 | import SubOrderComfirmReceiptImagesModal from './components/SubOrderComfirmReceiptImagesModal'; |
76 | 77 | import { |
77 | 78 | AFTER_INVOICING_STATUS, |
... | ... | @@ -103,6 +104,8 @@ const OrderPage = () => { |
103 | 104 | ] = useState<boolean>(false); |
104 | 105 | const [data, setData] = useState([]); //列表数据 |
105 | 106 | const [notesEditVisible, setNotesEditVisible] = useState<boolean>(false); |
107 | + const [procureNotesEditModalVisible, setProcureNotesEditModalVisible] = | |
108 | + useState<boolean>(false); | |
106 | 109 | const [financialMergeDrawerVisible, setFinancialMergeDrawerVisible] = |
107 | 110 | useState<boolean>(false); |
108 | 111 | const [attachmentModalVisible, setAttachmentModalVisible] = |
... | ... | @@ -164,6 +167,7 @@ const OrderPage = () => { |
164 | 167 | const mainTableFormRef = useRef<ProFormInstance>(); |
165 | 168 | let [searchParams, setSearchParam] = useState(Object); //表格的查询条件存储 |
166 | 169 | const [messageApi, contextHolder] = message.useMessage(); |
170 | + const roleCode = userInfo?.roleSmallVO?.code; | |
167 | 171 | |
168 | 172 | // const openCheckNotes = (checkNotes: string) => { |
169 | 173 | // Modal.info({ |
... | ... | @@ -567,7 +571,7 @@ const OrderPage = () => { |
567 | 571 | <div className="max-w-[90%] whitespace-no-wrap overflow-hidden overflow-ellipsis"> |
568 | 572 | <span className="text-[#8C8C8C]"> |
569 | 573 | 备注: |
570 | - {optRecord.notes === undefined ? '暂无备注' : optRecord.notes} | |
574 | + {optRecord.notes === null ? '暂无备注' : optRecord.notes} | |
571 | 575 | </span> |
572 | 576 | </div> |
573 | 577 | {/* 编辑备注按钮 */} |
... | ... | @@ -580,6 +584,30 @@ const OrderPage = () => { |
580 | 584 | }} |
581 | 585 | /> |
582 | 586 | </Flex> |
587 | + {roleCode === 'procure' || | |
588 | + roleCode === 'warehouseKeeper' || | |
589 | + roleCode === 'admin' ? ( | |
590 | + <Flex title={optRecord.procureNotes}> | |
591 | + <div className="max-w-[90%] whitespace-no-wrap overflow-hidden overflow-ellipsis"> | |
592 | + <span className="text-[#8C8C8C]"> | |
593 | + 采购备注: | |
594 | + {optRecord.procureNotes === null | |
595 | + ? '暂无备注' | |
596 | + : optRecord.procureNotes} | |
597 | + </span> | |
598 | + </div> | |
599 | + {/* 编辑备注按钮 */} | |
600 | + <EditTwoTone | |
601 | + className="pl-1 hover:curcor-pointer" | |
602 | + onClick={() => { | |
603 | + setOrderRow(optRecord); | |
604 | + setProcureNotesEditModalVisible(true); | |
605 | + }} | |
606 | + /> | |
607 | + </Flex> | |
608 | + ) : ( | |
609 | + '' | |
610 | + )} | |
583 | 611 | |
584 | 612 | {/* {optRecord.applyInvoicingNotes !== undefined && |
585 | 613 | optRecord.applyInvoicingNotes !== null ? ( |
... | ... | @@ -1232,10 +1260,10 @@ const OrderPage = () => { |
1232 | 1260 | </Flex> |
1233 | 1261 | </Flex> |
1234 | 1262 | |
1235 | - {userInfo?.roleSmallVO?.code === 'admin' || | |
1236 | - userInfo?.roleSmallVO?.code === 'salesManager' || | |
1237 | - userInfo?.roleSmallVO?.code === 'salesRepresentative' || | |
1238 | - userInfo?.roleSmallVO?.code === 'finance' ? ( | |
1263 | + {roleCode === 'admin' || | |
1264 | + roleCode === 'salesManager' || | |
1265 | + roleCode === 'salesRepresentative' || | |
1266 | + roleCode === 'finance' ? ( | |
1239 | 1267 | <Flex title={optRecord.notes}> |
1240 | 1268 | <div className="flex items-center"> |
1241 | 1269 | <div className="flex items-center max-w-[500px]"> |
... | ... | @@ -1410,7 +1438,7 @@ const OrderPage = () => { |
1410 | 1438 | </Flex> |
1411 | 1439 | </Flex> |
1412 | 1440 | <Flex className="pl-6" align="center"> |
1413 | - {userInfo?.roleSmallVO?.code === 'finance' ? ( | |
1441 | + {roleCode === 'finance' ? ( | |
1414 | 1442 | <div |
1415 | 1443 | title={enumValueToLabel( |
1416 | 1444 | record.receivingCompany, |
... | ... | @@ -1432,11 +1460,7 @@ const OrderPage = () => { |
1432 | 1460 | '' |
1433 | 1461 | )} |
1434 | 1462 | |
1435 | - {userInfo?.roleSmallVO?.code === 'finance' ? ( | |
1436 | - <Divider type="vertical" /> | |
1437 | - ) : ( | |
1438 | - '' | |
1439 | - )} | |
1463 | + {roleCode === 'finance' ? <Divider type="vertical" /> : ''} | |
1440 | 1464 | |
1441 | 1465 | <div title={record.notes}> |
1442 | 1466 | <div className="max-w-md overflow-hidden whitespace-no-wrap overflow-ellipsis"> |
... | ... | @@ -1530,7 +1554,7 @@ const OrderPage = () => { |
1530 | 1554 | '' |
1531 | 1555 | )} |
1532 | 1556 | |
1533 | - {record.mainPath?.includes('orderChangeRequest') && false ? ( | |
1557 | + {record.mainPath?.includes('orderChangeRequest') ? ( | |
1534 | 1558 | <Button |
1535 | 1559 | className="p-0" |
1536 | 1560 | type="link" |
... | ... | @@ -1881,8 +1905,8 @@ const OrderPage = () => { |
1881 | 1905 | selectedSubOrders[index].orderStatus; |
1882 | 1906 | //仓库管理员在审核之后的任何时候都可以编辑 |
1883 | 1907 | if ( |
1884 | - userInfo?.roleSmallVO?.code !== 'warehouseKeeper' && | |
1885 | - userInfo?.roleSmallVO?.code !== 'admin' | |
1908 | + roleCode !== 'warehouseKeeper' && | |
1909 | + roleCode !== 'admin' | |
1886 | 1910 | ) { |
1887 | 1911 | //是审核通过及之后的订单 |
1888 | 1912 | if ( |
... | ... | @@ -1898,7 +1922,7 @@ const OrderPage = () => { |
1898 | 1922 | } else { |
1899 | 1923 | //仓库管理员只能编辑是还未审核的订单 |
1900 | 1924 | if ( |
1901 | - userInfo?.roleSmallVO?.code !== 'admin' && | |
1925 | + roleCode !== 'admin' && | |
1902 | 1926 | (orderStatus === 'UNAUDITED' || |
1903 | 1927 | orderStatus === 'AUDIT_FAILED') |
1904 | 1928 | ) { |
... | ... | @@ -2389,10 +2413,7 @@ const OrderPage = () => { |
2389 | 2413 | /** |
2390 | 2414 | * 采购的订单状态筛选内容 |
2391 | 2415 | */ |
2392 | - if ( | |
2393 | - userInfo?.roleSmallVO?.code === 'procure' && | |
2394 | - item.dataIndex === 'orderStatus' | |
2395 | - ) { | |
2416 | + if (roleCode === 'procure' && item.dataIndex === 'orderStatus') { | |
2396 | 2417 | item.valueEnum = enumToProTableEnumValue( |
2397 | 2418 | PROCURE_PRIMARY_ORDER_STATUS_OPTIONS, |
2398 | 2419 | ); |
... | ... | @@ -2402,10 +2423,7 @@ const OrderPage = () => { |
2402 | 2423 | ); |
2403 | 2424 | |
2404 | 2425 | //判断是否是采购,是的话新增一个筛选条件 |
2405 | - if ( | |
2406 | - userInfo?.roleSmallVO?.code === 'procure' || | |
2407 | - userInfo?.roleSmallVO?.code === 'admin' | |
2408 | - ) { | |
2426 | + if (roleCode === 'procure' || roleCode === 'admin') { | |
2409 | 2427 | mainOrdersColumns.push({ |
2410 | 2428 | title: '采购下单状态', |
2411 | 2429 | dataIndex: 'procureOrderStatus', |
... | ... | @@ -2416,7 +2434,6 @@ const OrderPage = () => { |
2416 | 2434 | } |
2417 | 2435 | |
2418 | 2436 | function toolBarRender() { |
2419 | - let roleCode = userInfo?.roleSmallVO?.code; | |
2420 | 2437 | let toolBtns = []; |
2421 | 2438 | |
2422 | 2439 | if ( |
... | ... | @@ -2546,6 +2563,28 @@ const OrderPage = () => { |
2546 | 2563 | onClick: () => {}, |
2547 | 2564 | }; |
2548 | 2565 | |
2566 | + if (rolePath?.includes('mergeAudit')) { | |
2567 | + toolBtns.push( | |
2568 | + <Button | |
2569 | + type="primary" | |
2570 | + key="out" | |
2571 | + onClick={() => { | |
2572 | + //选中订单 | |
2573 | + let mainOrderList = []; | |
2574 | + for (let order of mainOrderSelectedMap.values()) { | |
2575 | + mainOrderList.push(order); | |
2576 | + } | |
2577 | + setIsMainOrder(true); | |
2578 | + setSelectedRows(mainOrderList); | |
2579 | + setProcureCheckModalVisible(true); | |
2580 | + }} | |
2581 | + disabled={selectedItems?.length === 0} | |
2582 | + > | |
2583 | + 一键审核 | |
2584 | + </Button>, | |
2585 | + ); | |
2586 | + } | |
2587 | + | |
2549 | 2588 | if (rolePath?.includes('mergeApplyInvoicing')) { |
2550 | 2589 | toolBtns.push( |
2551 | 2590 | <Button |
... | ... | @@ -2564,7 +2603,7 @@ const OrderPage = () => { |
2564 | 2603 | }} |
2565 | 2604 | disabled={selectedItems?.length === 0} |
2566 | 2605 | > |
2567 | - {userInfo?.roleSmallVO?.code === 'admin' ? '合并(销售)' : '合并开票'} | |
2606 | + {roleCode === 'admin' ? '合并(销售)' : '合并开票'} | |
2568 | 2607 | </Button>, |
2569 | 2608 | ); |
2570 | 2609 | } |
... | ... | @@ -2605,7 +2644,7 @@ const OrderPage = () => { |
2605 | 2644 | }} |
2606 | 2645 | disabled={selectedItems?.length === 0} |
2607 | 2646 | > |
2608 | - {userInfo?.roleSmallVO?.code === 'admin' ? '合并(财务)' : '合并开票'} | |
2647 | + {roleCode === 'admin' ? '合并(财务)' : '合并开票'} | |
2609 | 2648 | </Button>, |
2610 | 2649 | ); |
2611 | 2650 | } |
... | ... | @@ -2884,6 +2923,19 @@ const OrderPage = () => { |
2884 | 2923 | onClose={() => { |
2885 | 2924 | setNotesEditVisible(false); |
2886 | 2925 | setOrderRow({}); |
2926 | + setIsMainOrder(false); | |
2927 | + refreshTable(); | |
2928 | + }} | |
2929 | + /> | |
2930 | + )} | |
2931 | + | |
2932 | + {procureNotesEditModalVisible && ( | |
2933 | + <ProcureNotesEditModal | |
2934 | + setNotesEditVisible={setProcureNotesEditModalVisible} | |
2935 | + data={orderRow} | |
2936 | + onClose={() => { | |
2937 | + setProcureNotesEditModalVisible(false); | |
2938 | + setOrderRow({}); | |
2887 | 2939 | refreshTable(); |
2888 | 2940 | }} |
2889 | 2941 | /> |
... | ... | @@ -3039,11 +3091,13 @@ const OrderPage = () => { |
3039 | 3091 | <ProcureCheckModal |
3040 | 3092 | setCheckVisible={setProcureCheckModalVisible} |
3041 | 3093 | data={orderRow} |
3042 | - subOrders={selectedRows} | |
3094 | + isMainOrder={isMainOrder} | |
3095 | + orders={selectedRows} | |
3043 | 3096 | onClose={() => { |
3044 | 3097 | setProcureCheckModalVisible(false); |
3045 | 3098 | setOrderRow({}); |
3046 | 3099 | setSelectedRows({}); |
3100 | + setIsMainOrder(false); | |
3047 | 3101 | refreshTable(); |
3048 | 3102 | }} |
3049 | 3103 | /> | ... | ... |
src/services/definition.ts
... | ... | @@ -1132,6 +1132,12 @@ export interface ProcureConvertProcureDto { |
1132 | 1132 | subIds?: Array<number>; |
1133 | 1133 | } |
1134 | 1134 | |
1135 | +export interface ProcureNotesEditDto { | |
1136 | + procureNotes?: string; | |
1137 | + /** @format int64 */ | |
1138 | + subOrderId?: number; | |
1139 | +} | |
1140 | + | |
1135 | 1141 | export interface ProcureOrderDto { |
1136 | 1142 | /** |
1137 | 1143 | * @description | ... | ... |
src/services/request.ts
... | ... | @@ -49,6 +49,7 @@ import type { |
49 | 49 | OrderUnlockFieldApplyVO, |
50 | 50 | OrderUpdateVO, |
51 | 51 | ProcureConvertProcureDto, |
52 | + ProcureNotesEditDto, | |
52 | 53 | ProcureOrderDto, |
53 | 54 | ProcurePrintDto, |
54 | 55 | ProductInformationDto, |
... | ... | @@ -6322,7 +6323,7 @@ export type PostServiceOrderAfterSalesCheckResponseSuccess = |
6322 | 6323 | PostServiceOrderAfterSalesCheckResponse[200]; |
6323 | 6324 | /** |
6324 | 6325 | * @description |
6325 | - * 售后审核 | |
6326 | + * 修改订单审核 | |
6326 | 6327 | * @tags 内部订单 |
6327 | 6328 | * @produces * |
6328 | 6329 | * @consumes application/json |
... | ... | @@ -6465,7 +6466,7 @@ export type PostServiceOrderApplyAfterSalesResponseSuccess = |
6465 | 6466 | PostServiceOrderApplyAfterSalesResponse[200]; |
6466 | 6467 | /** |
6467 | 6468 | * @description |
6468 | - * 申请售后 | |
6469 | + * 申请修改订单 | |
6469 | 6470 | * @tags 内部订单 |
6470 | 6471 | * @produces * |
6471 | 6472 | * @consumes application/json |
... | ... | @@ -6536,7 +6537,7 @@ export type PostServiceOrderApplyInvoicingResponseSuccess = |
6536 | 6537 | PostServiceOrderApplyInvoicingResponse[200]; |
6537 | 6538 | /** |
6538 | 6539 | * @description |
6539 | - * 销售发起开票 | |
6540 | + * 申请开票 | |
6540 | 6541 | * @tags 内部订单 |
6541 | 6542 | * @produces * |
6542 | 6543 | * @consumes application/json |
... | ... | @@ -6907,7 +6908,7 @@ export type PostServiceOrderErrorExcelInformationResponseSuccess = |
6907 | 6908 | PostServiceOrderErrorExcelInformationResponse[200]; |
6908 | 6909 | /** |
6909 | 6910 | * @description |
6910 | - * 错误表格导入 | |
6911 | + * 错误表格导出 | |
6911 | 6912 | * @tags 内部订单 |
6912 | 6913 | * @produces * |
6913 | 6914 | * @consumes multipart/form-data |
... | ... | @@ -7316,7 +7317,7 @@ export type PostServiceOrderInvoicingResponseSuccess = |
7316 | 7317 | PostServiceOrderInvoicingResponse[200]; |
7317 | 7318 | /** |
7318 | 7319 | * @description |
7319 | - * 开票 | |
7320 | + * 财务开票 | |
7320 | 7321 | * @tags 内部订单 |
7321 | 7322 | * @produces * |
7322 | 7323 | * @consumes application/json |
... | ... | @@ -8051,6 +8052,77 @@ export const postServiceOrderProcureConvertWarehouseKeeper = |
8051 | 8052 | return request; |
8052 | 8053 | })(); |
8053 | 8054 | |
8055 | +/** @description request parameter type for postServiceOrderProcureNotesEdit */ | |
8056 | +export interface PostServiceOrderProcureNotesEditOption { | |
8057 | + /** | |
8058 | + * @description | |
8059 | + * dto | |
8060 | + */ | |
8061 | + body: { | |
8062 | + /** | |
8063 | + @description | |
8064 | + dto */ | |
8065 | + dto: ProcureNotesEditDto; | |
8066 | + }; | |
8067 | +} | |
8068 | + | |
8069 | +/** @description response type for postServiceOrderProcureNotesEdit */ | |
8070 | +export interface PostServiceOrderProcureNotesEditResponse { | |
8071 | + /** | |
8072 | + * @description | |
8073 | + * OK | |
8074 | + */ | |
8075 | + 200: ServerResult; | |
8076 | + /** | |
8077 | + * @description | |
8078 | + * Created | |
8079 | + */ | |
8080 | + 201: any; | |
8081 | + /** | |
8082 | + * @description | |
8083 | + * Unauthorized | |
8084 | + */ | |
8085 | + 401: any; | |
8086 | + /** | |
8087 | + * @description | |
8088 | + * Forbidden | |
8089 | + */ | |
8090 | + 403: any; | |
8091 | + /** | |
8092 | + * @description | |
8093 | + * Not Found | |
8094 | + */ | |
8095 | + 404: any; | |
8096 | +} | |
8097 | + | |
8098 | +export type PostServiceOrderProcureNotesEditResponseSuccess = | |
8099 | + PostServiceOrderProcureNotesEditResponse[200]; | |
8100 | +/** | |
8101 | + * @description | |
8102 | + * 编辑采购备注 | |
8103 | + * @tags 内部订单 | |
8104 | + * @produces * | |
8105 | + * @consumes application/json | |
8106 | + */ | |
8107 | +export const postServiceOrderProcureNotesEdit = /* #__PURE__ */ (() => { | |
8108 | + const method = 'post'; | |
8109 | + const url = '/service/order/procureNotesEdit'; | |
8110 | + function request( | |
8111 | + option: PostServiceOrderProcureNotesEditOption, | |
8112 | + ): Promise<PostServiceOrderProcureNotesEditResponseSuccess> { | |
8113 | + return requester(request.url, { | |
8114 | + method: request.method, | |
8115 | + ...option, | |
8116 | + }) as unknown as Promise<PostServiceOrderProcureNotesEditResponseSuccess>; | |
8117 | + } | |
8118 | + | |
8119 | + /** http method */ | |
8120 | + request.method = method; | |
8121 | + /** request url */ | |
8122 | + request.url = url; | |
8123 | + return request; | |
8124 | +})(); | |
8125 | + | |
8054 | 8126 | /** @description request parameter type for postServiceOrderProcureOrder */ |
8055 | 8127 | export interface PostServiceOrderProcureOrderOption { |
8056 | 8128 | /** |
... | ... | @@ -9287,7 +9359,7 @@ export type PostServiceOrderQueryServiceOrderResponseSuccess = |
9287 | 9359 | PostServiceOrderQueryServiceOrderResponse[200]; |
9288 | 9360 | /** |
9289 | 9361 | * @description |
9290 | - * 订单页查询 | |
9362 | + * 查询订单列表 | |
9291 | 9363 | * @tags 内部订单 |
9292 | 9364 | * @produces * |
9293 | 9365 | * @consumes application/json | ... | ... |