Browse Source

修改提取派生id的规则

pull/148/head
zhangxin 3 years ago
parent
commit
9f5e2f6418
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      services/pln/implments/HondaCalloff.service.impl.go

+ 1
- 1
services/pln/implments/HondaCalloff.service.impl.go View File

@ -288,7 +288,7 @@ func (impl *HondaCalloffServiceImplement) LoadFile(entity *model.HondaCalloff) (
return nil, grmi.NewBusinessError("行数据中的需求时间解析失败, error:" + err.Error() + ", 行号:" + strconv.Itoa(currentRow))
}
modelValue := matchLi[4][4:7]
configValue := matchLi[4][:4]
configValue := matchLi[4][1:4]
vinNo := matchLi[5]
color := matchLi[6]
productFamilyId := configValue + "-" + modelValue + "-" + color


Loading…
Cancel
Save