Commit 1c0cc26111b2798b31dc0b11d6e486097d743adc
1 parent
7ec1ec16
1.补充提交
Showing
1 changed file
with
5 additions
and
5 deletions
src/components/Manufacture/CommonPackEvent.js
| ... | ... | @@ -172,11 +172,11 @@ const CommonPackEvent = props => { |
| 172 | 172 | if (masterData.handleType === "update" && !commonUtils.isEmpty(sMakePerson)) { |
| 173 | 173 | masterData.sMakePerson = sMakePerson; |
| 174 | 174 | } |
| 175 | - let slaveData = valueReturn[`${slaveConfig.sTbName.toLowerCase()}_tmp`] || []; | |
| 176 | - let packData = valueReturn[`${packConfig.sTbName.toLowerCase()}_tmp`] || []; | |
| 177 | - let controlData = valueReturn[`${controlConfig.sTbName.toLowerCase()}_tmp`] || []; | |
| 178 | - let materials0Data = valueReturn[`${materials0Config.sTbName.toLowerCase()}_tmp`] || []; | |
| 179 | - let processData = valueReturn[`${processConfig.sTbName.toLowerCase()}_tmp`] || []; | |
| 175 | + slaveData = valueReturn[`${slaveConfig.sTbName.toLowerCase()}_tmp`] || []; | |
| 176 | + packData = valueReturn[`${packConfig.sTbName.toLowerCase()}_tmp`] || []; | |
| 177 | + controlData = valueReturn[`${controlConfig.sTbName.toLowerCase()}_tmp`] || []; | |
| 178 | + materials0Data = valueReturn[`${materials0Config.sTbName.toLowerCase()}_tmp`] || []; | |
| 179 | + processData = valueReturn[`${processConfig.sTbName.toLowerCase()}_tmp`] || []; | |
| 180 | 180 | |
| 181 | 181 | const slaveDelNewData = slaveData.filter(item => item?.handleType === 'del'); |
| 182 | 182 | slaveData = slaveData.filter(item => item?.handleType !== 'del'); | ... | ... |