Commit 6357ebc5755de670dd41bda15c1a23d5fc4cf028
Merge branch 'znh' into zgt
# Conflicts: # src/services/definition.ts # src/services/request.ts
Showing
4 changed files
with
25 additions
and
7 deletions
src/pages/Invoice/constant.tsx
... | ... | @@ -175,14 +175,14 @@ export const BANK_STATEMENT_COLUMNS = [ |
175 | 175 | width: 100, |
176 | 176 | }, |
177 | 177 | { |
178 | - dataIndex: 'collectionDate', | |
178 | + dataIndex: 'collectionDatetime', | |
179 | 179 | title: '收款时间', |
180 | 180 | valueType: 'date', |
181 | 181 | width: 100, |
182 | 182 | hideInSearch: true, |
183 | 183 | }, |
184 | 184 | { |
185 | - dataIndex: 'collectionDateSearch', | |
185 | + dataIndex: 'collectionDatetimeSearch', | |
186 | 186 | title: '收款时间', |
187 | 187 | valueType: 'dateRange', |
188 | 188 | width: 100, |
... | ... | @@ -191,8 +191,8 @@ export const BANK_STATEMENT_COLUMNS = [ |
191 | 191 | transform: (value) => { |
192 | 192 | if (value) { |
193 | 193 | return { |
194 | - collectionDateBegin: value[0], | |
195 | - collectionDateEnd: value[1], | |
194 | + collectionDatetimeBegin: value[0], | |
195 | + collectionDatetimeEnd: value[1], | |
196 | 196 | }; |
197 | 197 | } |
198 | 198 | }, | ... | ... |
src/pages/Order/components/ReissueModal.tsx
src/pages/Order/constant.ts
... | ... | @@ -147,6 +147,8 @@ export const LOGISTICS_STATUS_OPTIONS = { |
147 | 147 | JINGDONG_LOGISTICS: '京东', |
148 | 148 | SF_EXPRESS: '顺丰', |
149 | 149 | ZHONGTONG_LOGISTICS: '中通快递', |
150 | + SHENTONG_LOGISTICS: '申通快递', | |
151 | + YUANTONG_LOGISTICS: '圆通快递', | |
150 | 152 | DEBANG_LOGISTICS: '德邦物流', |
151 | 153 | YUNDA_LOGISTICS: '韵达快递', |
152 | 154 | OTHER_LOGISTICS: '其他物流方式', | ... | ... |
src/services/definition.ts
... | ... | @@ -948,6 +948,22 @@ export interface InvoiceRecordQueryRequest { |
948 | 948 | uid?: string; |
949 | 949 | } |
950 | 950 | |
951 | +export interface InvoiceRecordQueryRequest { | |
952 | + /** @format date */ | |
953 | + createTimeGe?: string; | |
954 | + /** @format date */ | |
955 | + createTimeLe?: string; | |
956 | + /** @format int32 */ | |
957 | + pageNumber?: number; | |
958 | + /** @format int32 */ | |
959 | + pageSize?: number; | |
960 | + /** | |
961 | + * @description | |
962 | + * 用户id | |
963 | + */ | |
964 | + uid?: string; | |
965 | +} | |
966 | + | |
951 | 967 | export interface Item { |
952 | 968 | billDate?: string; |
953 | 969 | billNo?: string; |
... | ... | @@ -1521,13 +1537,13 @@ export interface QueryBankStatementDto { |
1521 | 1537 | * collection_date |
1522 | 1538 | * @format date |
1523 | 1539 | */ |
1524 | - collectionDateBegin?: string; | |
1540 | + collectionDatetimeBegin?: string; | |
1525 | 1541 | /** |
1526 | 1542 | * @description |
1527 | 1543 | * collection_date |
1528 | 1544 | * @format date |
1529 | 1545 | */ |
1530 | - collectionDateEnd?: string; | |
1546 | + collectionDatetimeEnd?: string; | |
1531 | 1547 | /** @format int32 */ |
1532 | 1548 | current?: number; |
1533 | 1549 | /** @format int64 */ | ... | ... |