Commit 29fcae8a9fdcb1418a0627ecb8e49e8d4790785a

Authored by 柏杨
1 parent c89daffd

fix: 修改开票状态

src/pages/Order/OrderList/OrderList.tsx
... ... @@ -102,7 +102,6 @@ import {
102 102 SHIPPING_WAREHOUSE_OPTIONS,
103 103 TAGS_COLOR,
104 104 getInvoicingType,
105   - getNeedInvoicing,
106 105 } from '../constant';
107 106 import AfterSalesDrawer from './AfterSalesDrawer';
108 107 import ApplyForInvoicingModal from './ApplyForInvoicingModal';
... ... @@ -1248,7 +1247,7 @@ const OrderList = ({ paramsNew, searchShow, toolbarShow }) => {
1248 1247  
1249 1248 <Flex className="w-[10%]" vertical gap="small">
1250 1249 {/* 开票状态 */}
1251   - {!isSupplier() ? (
  1250 + {/* {!isSupplier() ? (
1252 1251 <div className="overflow-hidden overflow-ellipsis whitespace-no-wrap">
1253 1252 <Tag
1254 1253 color={
... ... @@ -1263,7 +1262,7 @@ const OrderList = ({ paramsNew, searchShow, toolbarShow }) =&gt; {
1263 1262 </div>
1264 1263 ) : (
1265 1264 ''
1266   - )}
  1265 + )} */}
1267 1266  
1268 1267 {/* 订单状态 */}
1269 1268 <div className="overflow-hidden overflow-ellipsis whitespace-no-wrap">
... ...