| | |
| | | |
| | | public string? FBomId { get; set; } |
| | | public string? FCreateType { get; set; } |
| | | public string? PLAN_ID { get; set; } |
| | | public string? PLAN_SEQ { get; set; } |
| | | public string? PLAN_NUM { get; set; } |
| | | public string? FSrcBillType { get; set; } |
| | | public string? FSrcBillNo { get; set; } |
| | | public string? FSrcBillEntrySeq { get; set; } |
| | |
| | | public decimal? FTotalReworkingQty { get; set; } |
| | | public string? FReasonForRework { get; set; } |
| | | public decimal? FIsForceWholeSet { get; set; } |
| | | |
| | | public string? FPrevMO { get; set; } |
| | | |
| | | public string? TypeA { get; set; } |
| | | |
| | | |
| | |
| | | public decimal? Isforcewholeset { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 分割前原订单编号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "PREVMO")] |
| | | public string? PREVMO { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 1,新增;2,变更 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "TYPEA")] |
| | |
| | | Caa013 = dto.FBomId, |
| | | |
| | | CreateType = dto.FCreateType, |
| | | Caa018 = !string.IsNullOrEmpty(dto.PLAN_ID) |
| | | ? Convert.ToInt64(dto.PLAN_ID) |
| | | : null, |
| | | Caa019 = !string.IsNullOrEmpty(dto.PLAN_SEQ) |
| | | ? Convert.ToInt64(dto.PLAN_SEQ) |
| | | : null, |
| | | Caa020 = dto.PLAN_NUM, |
| | | Caa020 = dto.FBillNo, |
| | | SrcBillType = dto.FSrcBillType, |
| | | SrcBillNo = dto.FSrcBillNo, |
| | | SrcBillentryseq = dto.FSrcBillEntrySeq, |
| | |
| | | CloseType = dto.FCloseType, |
| | | SrcSplitBillno = dto.FSrcSplitBillNo, |
| | | Caa016 = dto.FDescription, |
| | | //BTBZ = dto.BTBZ, |
| | | PrdOrg = dto.FPrdOrgId, |
| | | TrustOrg = dto.FEnTrustOrgId, |
| | | Bomtype = dto.FBOMType, |
| | |
| | | Totalreworkingqty = dto.FTotalReworkingQty, |
| | | Reasonforrework = dto.FReasonForRework, |
| | | Isforcewholeset = dto.FIsForceWholeSet, |
| | | PREVMO = dto.FPrevMO, |
| | | Typea = dto.TypeA |
| | | }; |
| | | |