修改OTA问题

This commit is contained in:
高嵩
2023-05-31 15:07:32 +08:00
parent e37b4d5dd2
commit 211e7d34ab
3 changed files with 9 additions and 9 deletions
@@ -213,8 +213,8 @@ public class OtaBaSjSjmbclServiceImpl extends ServiceImpl<OtaBaSjSjmbclMapper, O
private OtaBaSjSjmbcl parseFile(File upFile, String otaId, String cut, StringBuilder errMsg) throws Exception { private OtaBaSjSjmbcl parseFile(File upFile, String otaId, String cut, StringBuilder errMsg) throws Exception {
OtaBaSjSjmbcl mbcl = new OtaBaSjSjmbcl(); OtaBaSjSjmbcl mbcl = new OtaBaSjSjmbcl();
OtaBaSjSjmbcx mbcx = otaBaSjSjmbcxService.queryByOtaId(otaId, ""); OtaBaSjSjmbcx mbcx = otaBaSjSjmbcxService.queryByOtaId(otaId, "");
if (ObjectUtils.isNotEmpty(mbcx) && StringUtils.isNotEmpty(mbcx.getCpxh())) { if (ObjectUtils.isNotEmpty(mbcx) && StringUtils.isNotEmpty(mbcx.getCpmc())) {
String cx = mbcx.getCpxh(); String mc = mbcx.getCpmc();
Workbook wb = ImportFileUtil.readExcel(upFile); Workbook wb = ImportFileUtil.readExcel(upFile);
Sheet s = wb.getSheetAt(0); Sheet s = wb.getSheetAt(0);
@@ -227,7 +227,7 @@ public class OtaBaSjSjmbclServiceImpl extends ServiceImpl<OtaBaSjSjmbclMapper, O
vinObj.setVin(ImportFileUtil.getCellValue(cell, wb)); vinObj.setVin(ImportFileUtil.getCellValue(cell, wb));
cell = row.getCell(1); cell = row.getCell(1);
vinObj.setCx(ImportFileUtil.getCellValue(cell, wb)); vinObj.setCx(ImportFileUtil.getCellValue(cell, wb));
if (!cx.equals(vinObj.getCx())) { if (!mc.equals(vinObj.getCx())) {
continue; continue;
} }
cell = row.getCell(2); cell = row.getCell(2);
@@ -241,10 +241,10 @@ export default {
}) })
}, },
addClick(index){ addClick(index){
if(this.formInline.dataList.length + 1 > 10){ // if(this.formInline.dataList.length + 1 > 10){
this.$message.warning(this.$t('nomorethan')) // this.$message.warning(this.$t('nomorethan'))
return // return
} // }
this.formInline.dataList.splice(index + 1, 0, {}) this.formInline.dataList.splice(index + 1, 0, {})
this.formInline = { ...this.formInline } this.formInline = { ...this.formInline }
}, },
@@ -60,8 +60,8 @@
<span slot="differentialupgradeornot" slot-scope="text,record" :max-length="50"> <span slot="differentialupgradeornot" slot-scope="text,record" :max-length="50">
<!-- <a-input :placeholder="$t('pleaseEnter')" v-model="record.sfcfsj" :title='record.sfcfsj'></a-input>--> <!-- <a-input :placeholder="$t('pleaseEnter')" v-model="record.sfcfsj" :title='record.sfcfsj'></a-input>-->
<a-radio-group v-model="record.sfcfsj"> <a-radio-group v-model="record.sfcfsj">
<a-radio :value="1"> {{ $t('yes') }} </a-radio> <a-radio :value="'1'"> {{ $t('yes') }} </a-radio>
<a-radio :value="2"> {{ $t('not') }} </a-radio> <a-radio :value="'2'"> {{ $t('not') }} </a-radio>
</a-radio-group> </a-radio-group>
</span> </span>
<!-- 操作列--> <!-- 操作列-->