wbc
3 天以前 ffda0baad362ac0b72caae668e2ca229eea2bbe2
分割前订单增加
已修改3个文件
24 ■■■■ 文件已修改
StandardPda/MES.Service/Dto/webApi/ErpCAA.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/Modes/Womcaa.cs 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/service/WomcaaManager.cs 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/Dto/webApi/ErpCAA.cs
@@ -27,9 +27,6 @@
    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; }
@@ -66,6 +63,9 @@
    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; }
StandardPda/MES.Service/Modes/Womcaa.cs
@@ -513,6 +513,12 @@
    public decimal? Isforcewholeset { get; set; }
    /// <summary>
    ///    分割前原订单编号
    /// </summary>
    [SugarColumn(ColumnName = "PREVMO")]
    public string? PREVMO { get; set; }
    /// <summary>
    ///     1,新增;2,变更
    /// </summary>
    [SugarColumn(ColumnName = "TYPEA")]
StandardPda/MES.Service/service/WomcaaManager.cs
@@ -102,13 +102,7 @@
            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,
@@ -118,7 +112,6 @@
            CloseType = dto.FCloseType,
            SrcSplitBillno = dto.FSrcSplitBillNo,
            Caa016 = dto.FDescription,
            //BTBZ = dto.BTBZ,
            PrdOrg = dto.FPrdOrgId,
            TrustOrg = dto.FEnTrustOrgId,
            Bomtype = dto.FBOMType,
@@ -140,7 +133,8 @@
            Totalrcvqty = dto.FTotalRcvQty,
            Totalreworkingqty = dto.FTotalReworkingQty,
            Reasonforrework = dto.FReasonForRework,
            Isforcewholeset = dto.FIsForceWholeSet,
            Isforcewholeset = dto.FIsForceWholeSet,
            PREVMO = dto.FPrevMO,
            Typea = dto.TypeA
        };