|
@@ -183,6 +183,12 @@ public class ExtQuotationServiceImpl extends ServiceImpl<ExtQuotationMapper, Ext
|
|
|
throw new ServiceException("查询不到明细信息请检查");
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ SysDept sysDept = sysDeptService.getById(result.getCompanyId());
|
|
|
+ if (ObjectUtil.isNotEmpty(sysDept)) {
|
|
|
+ result.setCompanyName(sysDept.getDeptName());
|
|
|
+ }
|
|
|
+
|
|
|
return setDetailInfo(Arrays.asList(result)).get(0);
|
|
|
|
|
|
|