This commit is contained in:
余宇波 2025-05-15 09:22:12 +08:00
parent 29c83dd9da
commit 0684d8e4f5
2 changed files with 8 additions and 6 deletions

View File

@ -33,12 +33,12 @@ namespace MyCode.Project.Domain.Dtos.Request.Act
/// <summary>
/// 珠海版本号
/// </summary>
public int Version { get; set; }
public string Version { get; set; }
/// <summary>
/// 泰国版本号
/// </summary>
public int TaiGuoVersion { get; set; }
public string TaiGuoVersion { get; set; }
/// <summary>
/// 备注
@ -69,12 +69,12 @@ namespace MyCode.Project.Domain.Dtos.Request.Act
/// <summary>
/// 珠海版本号版本号
/// </summary>
public int Version { get; set; }
public string Version { get; set; }
/// <summary>
/// 泰国版本号
/// </summary>
public int TaiGuoVersion { get; set; }
public string TaiGuoVersion { get; set; }
}

View File

@ -402,9 +402,11 @@ namespace MyCode.Project.Services.Implementation
tempUpdate.FENTRYID = t.EntityId.SafeValue();
tempUpdate.FSupplierLot = temp.FSupplierLot;
billPush.CustomParams.ScanEntry.Add(tempUpdate);
billPush.CustomParams.FPH= act.F_VHUB_Text;
billPush.CustomParams.FPH= act.F_VHUB_Text;
billPush.CustomParams.F_URXD_Date = act.F_URXD_Date;
t.FReceiveQty = t.FReceiveQty.SafeValue() + temp.Qty;
if (string.IsNullOrWhiteSpace(billPush.CustomParams.F_URXD_Date))
billPush.CustomParams.F_URXD_Date = null;
t.FReceiveQty = t.FReceiveQty.SafeValue() + temp.Qty;
t.FRemainReceiveQty = t.FRemainReceiveQty.SafeValue() - temp.Qty;