|
|
@@ -2,6 +2,7 @@
|
|
|
using Volo.Abp.AutoMapper;
|
|
|
using Business.Domain;
|
|
|
using Business.ResourceExamineManagement.Dto;
|
|
|
+using Business.StructuredDB.SaleFcst;
|
|
|
|
|
|
namespace Business
|
|
|
{
|
|
|
@@ -100,6 +101,8 @@ namespace Business
|
|
|
#region 销售预测
|
|
|
CreateMap<YearDemandManagement, YearDemandManagementHistory>()
|
|
|
.ForMember(d=>d.Id, opt => opt.Ignore());
|
|
|
+ CreateMap<MonthlyShipmentPlanHistory, MonthlyShipmentPlan>()
|
|
|
+ .ForMember(d => d.Id, opt => opt.Ignore());
|
|
|
#endregion
|
|
|
|
|
|
#region Bang
|