| | |
| | | FDocumentStatus = erpDto.FDocumentStatus, // 单据状态 |
| | | FDate = !String.IsNullOrEmpty(erpDto.FDate) ? DateTime.ParseExact(erpDto.FDate, "yyyy-MM-dd HH:mm:ss", null) : null, // 申请日期 |
| | | FAppOrgId = erpDto.FAPPORGID, // 申请组织 |
| | | |
| | | |
| | | FBusinessType = erpDto.FBusinessType, // 业务类型 |
| | | //FTransType = erpDto.FTRANSTYPE, // 调拨类型 |
| | | //FTransferDirect = erpDto.FTransferDirect, // 调拨方向 |
| | |
| | | FUnwBaseBomBb = erpDto.F_UNW_Base_BOMBB, // BOM版本 |
| | | FUnwBaseFxwlBm = erpDto.F_UNW_Base_FXWLBM, // 父项物料编号 |
| | | Source = "ERP",//单据来源 |
| | | FHasLink = true, |
| | | FApproveStatus = 1,//审核状态 |
| | | }; |
| | | |