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

View File

@ -404,6 +404,8 @@ namespace MyCode.Project.Services.Implementation
billPush.CustomParams.ScanEntry.Add(tempUpdate); 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; billPush.CustomParams.F_URXD_Date = act.F_URXD_Date;
if (string.IsNullOrWhiteSpace(billPush.CustomParams.F_URXD_Date))
billPush.CustomParams.F_URXD_Date = null;
t.FReceiveQty = t.FReceiveQty.SafeValue() + temp.Qty; t.FReceiveQty = t.FReceiveQty.SafeValue() + temp.Qty;
t.FRemainReceiveQty = t.FRemainReceiveQty.SafeValue() - temp.Qty; t.FRemainReceiveQty = t.FRemainReceiveQty.SafeValue() - temp.Qty;