Commit ae8ac73c4e29845de4ef73507e80e10c282ed0f2

Authored by boyang
1 parent de89f453

fix: 修改仓库角色排序

dist.zip deleted 100644 → 0
No preview for this file type
src/pages/Order/OrderList/OrderDrawer.tsx
... ... @@ -96,6 +96,7 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
96 96 invoicingStatus: '';
97 97 invoiceIdentificationNumber: '';
98 98 invoicingTime: '';
  99 + productBelongBusinessUpdateTime: '';
99 100 bank: '';
100 101 bankAccountNumber: '';
101 102 deleteSubOrderLists: [];
... ... @@ -900,6 +901,9 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
900 901 const seconds = String(date.getSeconds()).padStart(2, '0');
901 902 const formattedDate = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
902 903 values.productBelongBusinessUpdateTime = formattedDate;
  904 + } else {
  905 + values.productBelongBusinessUpdateTime =
  906 + data.productBelongBusinessUpdateTime;
903 907 }
904 908 return item;
905 909 });
... ...