|
|
|
@ -38,6 +38,7 @@ import com.spring.modules.request.vo.PlmRequestDetailVo; |
|
|
|
import com.spring.modules.request.vo.PlmRequestHeaderVo; |
|
|
|
import com.spring.modules.sys.dao.SysUserDao; |
|
|
|
import com.spring.modules.sys.entity.SysUserEntity; |
|
|
|
import com.spring.modules.test.entity.TestSoBom; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
|
@ -340,6 +341,10 @@ public class ProjectToolingApplyServiceImpl implements ProjectToolingApplyServic |
|
|
|
} |
|
|
|
md.setFieldValue(oaIds.get(0).getId()); |
|
|
|
} |
|
|
|
} else if ("C".equals(nodeDetail.getFieldType())) { // 判断是否为金额 |
|
|
|
BigDecimal v = (BigDecimal) getPropertyValue(changeRequest, nodeDetail.getPlmField()); |
|
|
|
fieldValue = v == null ? "" : v.toString(); |
|
|
|
md.setFieldValue(fieldValue); |
|
|
|
} else { |
|
|
|
md.setFieldValue(fieldValue); |
|
|
|
} |
|
|
|
|