修复bug

This commit is contained in:
18942506660
2023-11-10 16:23:27 +08:00
parent f35dd85d29
commit bddd26993f
4 changed files with 14 additions and 2 deletions

View File

@@ -281,6 +281,11 @@
定时任务最新一次时间管理 定时任务最新一次时间管理
</summary> </summary>
</member> </member>
<member name="P:WMS.Web.Domain.Entitys.ErpOpsSyncDate.Id">
<summary>
主键 订单编号
</summary>
</member>
<member name="P:WMS.Web.Domain.Entitys.ErpOpsSyncDate.Type"> <member name="P:WMS.Web.Domain.Entitys.ErpOpsSyncDate.Type">
<summary> <summary>
同步类型 同步类型

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations.Schema;
using System.Text; using System.Text;
using WMS.Web.Core;
using WMS.Web.Domain.Values; using WMS.Web.Domain.Values;
namespace WMS.Web.Domain.Entitys namespace WMS.Web.Domain.Entitys
@@ -13,8 +14,13 @@ namespace WMS.Web.Domain.Entitys
/// </summary> /// </summary>
[Serializable] [Serializable]
[Table("t_wms_sync_date")] [Table("t_wms_sync_date")]
public class ErpOpsSyncDate public class ErpOpsSyncDate : EntityBase
{ {
/// <summary>
/// 主键 订单编号
/// </summary>
[Column("Id")]
public override int Id { get; set; }
/// <summary> /// <summary>
/// 同步类型 /// 同步类型
/// </summary> /// </summary>

View File

@@ -814,7 +814,7 @@ namespace WMS.Web.Domain.Services.Public
//3.获取金蝶采购订单:拼接参数和条件 //3.获取金蝶采购订单:拼接参数和条件
var query = new ErpBillQueryDto(token_result.Data); var query = new ErpBillQueryDto(token_result.Data);
var param = new ErpBillQueryParamDto(FormIdParam.SAL_DELIVERYNOTICE.ToString()); var param = new ErpBillQueryParamDto(FormIdParam.SAL_DELIVERYNOTICE.ToString());
param.FieldKeys = "FBillNo,FOrderNo,FDeliveryOrgID,FCustomerID,FMaterialID,FStockID,FStockLocID,FQty,FNoteEntry,FCreateDate"; param.FieldKeys = "FBillNo,FOrderNo,FDeliveryOrgID,FCustomerID,FMaterialID,FStockID,FStockLocID,FQty,FNoteEntry,FCreateDate,FEntryID";
param.Limit = 10; param.Limit = 10;
//查询条件:备注其中的条件值以金蝶的值为准!!! //查询条件:备注其中的条件值以金蝶的值为准!!!
//1.创建时间在两天前和当天时间之间 //1.创建时间在两天前和当天时间之间

View File

@@ -60,6 +60,7 @@ namespace WMS.Web.Repositories.Configuration
builder.Entity<ErpOpsSyncDate>(ent => builder.Entity<ErpOpsSyncDate>(ent =>
{ {
ent.ToTable("t_wms_sync_date"); ent.ToTable("t_wms_sync_date");
ent.HasKey(x => x.Id);
}); });