Browse Source

修改工位描述为工位id

pull/170/head
zhangxin 3 years ago
parent
commit
a2703b5159
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      services/om/implments/SerialOrder.service.impl.go

+ 2
- 2
services/om/implments/SerialOrder.service.impl.go View File

@ -3927,7 +3927,7 @@ func (impl *SerialOrderServiceImplement) TraceSubArticleBatch(user *global.User,
if workplace == nil {
workplaceDesc = "工位系统中已不存在"
} else {
workplaceDesc = workplace.Descr
workplaceDesc = workplace.WorkPlaceId
}
workplaceMap[item.WorkPlaceNr] = workplaceDesc
}
@ -3981,7 +3981,7 @@ func (impl *SerialOrderServiceImplement) ExportTraceSubArticleBatch(user *global
if workplace == nil {
workplaceDesc = "工位系统中已不存在"
} else {
workplaceDesc = workplace.Descr
workplaceDesc = workplace.WorkPlaceId
}
workplaceMap[item.WorkPlaceNr] = workplaceDesc
}


Loading…
Cancel
Save