Commit 2b8dc8a6e06943e93002c803d7be1e74f33e7222

Authored by zhangzzzz
1 parent 8fa4a17d

处理快速报价报错问题;

src/components/QuoQuotation/QuotationPackTableTree/QuotationPackTableTree.js
... ... @@ -2395,7 +2395,7 @@ class QuotationPackTableTree extends Component {
2395 2395 return {
2396 2396 ...item,
2397 2397 sId: manyqtysData[index] ? manyqtysData[index].sId : item.sId,
2398   - handleType: dQuickQuoteProductQty ? 'add' : (manyqtysDataOld[index].handleType || item.handleType)
  2398 + handleType: dQuickQuoteProductQty ? 'add' : (manyqtysDataOld[index]?.handleType || item.handleType)
2399 2399 }
2400 2400 });
2401 2401 if (cacheIndex === -1 && manyqtysData?.some(item => item.manyData)) {
... ...