using Kingdee.BOS;
|
using Kingdee.BOS.App.Data;
|
using Kingdee.BOS.Contracts;
|
using Kingdee.BOS.Contracts.Report;
|
using Kingdee.BOS.Core.DynamicForm.PlugIn.Args;
|
using Kingdee.BOS.Core.List;
|
using Kingdee.BOS.Core.Report;
|
using Kingdee.BOS.Orm.DataEntity;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Kingdee.BOS.ServiceHelper;
|
using Kingdee.BOS.Util;
|
using ZD.Cloud.Logger;
|
using Newtonsoft.Json;
|
|
namespace zymes_Project.Report
|
{
|
/// <summary>
|
/// 供应商送料计划列表订单
|
/// </summary>
|
[Description("供应商送料计划列表订单")]
|
[HotUpdate]
|
public class FeedPlanOrderReport : SysReportBaseService
|
{
|
|
public override void Initialize()
|
{
|
//base.Initialize();
|
//this.ReportProperty.ReportType = ReportType.REPORTTYPE_NORMAL;
|
//this.ReportProperty.ReportName = new LocaleValue("供应商送料计划列表订单", base.Context.UserLocale.LCID);
|
//this.ReportProperty.IsUIDesignerColumns = true;
|
//this.ReportProperty.IsGroupSummary = true;
|
//this.ReportProperty.SimpleAllCols = false;
|
|
base.Initialize();
|
// 简单账表类型:普通、树形、分页
|
this.ReportProperty.ReportType = ReportType.REPORTTYPE_NORMAL;
|
this.IsCreateTempTableByPlugin = true;
|
//取代码中配置的列
|
this.ReportProperty.IsUIDesignerColumns = false;
|
//是否分组汇总
|
this.ReportProperty.IsGroupSummary = true;
|
|
|
|
}
|
|
public override ReportHeader GetReportHeaders(IRptParams filter)
|
{
|
ReportHeader header = new ReportHeader();
|
|
header.AddChild("FIDENTITYID", new LocaleValue("序号"), SqlStorageType.Sqlvarchar).ColIndex = 0;
|
header.AddChild("Fcolumn32", new LocaleValue("订单号"), SqlStorageType.Sqlvarchar).ColIndex = 1;
|
header.AddChild("Fcolumn2", new LocaleValue("旧物料代码"), SqlStorageType.Sqlvarchar).ColIndex = 2;
|
header.AddChild("Fcolumn3", new LocaleValue("物料代码"), SqlStorageType.Sqlvarchar).ColIndex = 3;
|
header.AddChild("Fcolumn4", new LocaleValue("物料名称"), SqlStorageType.Sqlvarchar).ColIndex = 4;
|
header.AddChild("Fcolumn5", new LocaleValue("规格型号"), SqlStorageType.Sqlvarchar).ColIndex = 5;
|
header.AddChild("Fcolumn6", new LocaleValue("采购计量单位"), SqlStorageType.Sqlvarchar).ColIndex = 6;
|
header.AddChild("Fcolumn7", new LocaleValue("供应商"), SqlStorageType.Sqlvarchar).ColIndex = 7;
|
header.AddChild("Fcolumn8", new LocaleValue("库存数量"), SqlStorageType.Sqlvarchar).ColIndex = 8;
|
header.AddChild("Fcolumn9", new LocaleValue("线边仓数量"), SqlStorageType.Sqlvarchar).ColIndex = 9;
|
header.AddChild("Fcolumn10", new LocaleValue("采购在途数量"), SqlStorageType.Sqlvarchar).ColIndex = 10;
|
header.AddChild("Fcolumn11", new LocaleValue("厂区"), SqlStorageType.Sqlvarchar).ColIndex = 11;
|
header.AddChild("Fcolumn41", new LocaleValue("老厂仓库")).ColIndex = 11;
|
header.AddChild("Fcolumn42", new LocaleValue("新厂仓库")).ColIndex = 11;
|
header.AddChild("Fcolumn12", new LocaleValue("拖期数量"), SqlStorageType.Sqlvarchar).ColIndex = 12;
|
header.AddChild("Fcolumn13", new LocaleValue("T数量"), SqlStorageType.Sqlvarchar).ColIndex = 13;
|
header.AddChild("Fcolumn14", new LocaleValue("T+1数量"), SqlStorageType.Sqlvarchar).ColIndex = 14;
|
header.AddChild("Fcolumn15", new LocaleValue("T+2数量"), SqlStorageType.Sqlvarchar).ColIndex = 15;
|
header.AddChild("Fcolumn16", new LocaleValue("T+3数量"), SqlStorageType.Sqlvarchar).ColIndex = 16;
|
header.AddChild("Fcolumn17", new LocaleValue("T+4数量"), SqlStorageType.Sqlvarchar).ColIndex = 17;
|
header.AddChild("Fcolumn18", new LocaleValue("T+5数量"), SqlStorageType.Sqlvarchar).ColIndex = 18;
|
header.AddChild("Fcolumn19", new LocaleValue("T+6数量"), SqlStorageType.Sqlvarchar).ColIndex = 19;
|
header.AddChild("Fcolumn20", new LocaleValue("T+7数量"), SqlStorageType.Sqlvarchar).ColIndex = 20;
|
header.AddChild("Fcolumn21", new LocaleValue("T合计")).ColIndex = 21;
|
header.AddChild("Fcolumn22", new LocaleValue("拖期计划数量"), SqlStorageType.Sqlvarchar).ColIndex = 22;
|
header.AddChild("Fcolumn23", new LocaleValue("T计划数量"), SqlStorageType.Sqlvarchar).ColIndex = 23;
|
header.AddChild("Fcolumn24", new LocaleValue("T+1计划数量"), SqlStorageType.Sqlvarchar).ColIndex = 24;
|
header.AddChild("Fcolumn25", new LocaleValue("T+2计划数量"), SqlStorageType.Sqlvarchar).ColIndex = 25;
|
header.AddChild("Fcolumn26", new LocaleValue("T+3计划数量"), SqlStorageType.Sqlvarchar).ColIndex = 26;
|
header.AddChild("Fcolumn27", new LocaleValue("T+4计划数量"), SqlStorageType.Sqlvarchar).ColIndex = 27;
|
header.AddChild("Fcolumn28", new LocaleValue("T+5计划数量"), SqlStorageType.Sqlvarchar).ColIndex = 28;
|
header.AddChild("Fcolumn29", new LocaleValue("T+6计划数量"), SqlStorageType.Sqlvarchar).ColIndex = 29;
|
header.AddChild("Fcolumn30", new LocaleValue("T+7计划数量"), SqlStorageType.Sqlvarchar).ColIndex = 30;
|
header.AddChild("Fcolumn31", new LocaleValue("T计划合计")).ColIndex = 31;
|
|
|
return header;
|
}
|
|
public override void BuilderReportSqlAndTempTable(IRptParams filter, string tableName)
|
{
|
base.BuilderReportSqlAndTempTable(filter, tableName);
|
|
DynamicObject customFil = filter.FilterParameter.CustomFilter;
|
string FMateriel = ""; //物料
|
string FMaterielName = "";//物料名称
|
string FModel = "";//规格型号
|
string FSupplier = "0";//供应商 默认值为0
|
string FOrgId = "100092"; //组织(默认取值当前组织)
|
string FFactoryArea = ""; //厂区
|
string FBuyer = ""; //采购员
|
string FWarehouse = "";//仓库
|
string saleOrderNo = "";
|
bool FIsMainMaterial = Convert.ToBoolean(customFil["FIsMainMaterial"]);//True False//是否主料
|
bool FIsTq = Convert.ToBoolean(customFil["FIsTq"]);//True False//是否拖期
|
bool FIsXBC = Convert.ToBoolean(customFil["FIsXBC"]);//True False//是否线边仓
|
bool FIsZZ = Convert.ToBoolean(customFil["FIsZZ"]);//True False//是否显示所有物料
|
|
//5fe5d920a3f2bf
|
//5fe5d926a3f2c1
|
//5fe5d92ca3f2c3
|
|
if (((DynamicObject)customFil["FMateriel"]) != null)
|
{
|
FMateriel = ((DynamicObject)customFil["FMateriel"])["Number"].ToString();
|
FMaterielName = ((DynamicObject)customFil["FMateriel"])["Name"].ToString();
|
FModel = ((DynamicObject)customFil["FMateriel"])["Specification"].ToString();
|
|
}
|
if (((DynamicObject)customFil["FSupplier"]) != null)
|
{
|
FSupplier = ((DynamicObject)customFil["FSupplier"])["Id"].ToString();
|
}
|
if (((DynamicObject)customFil["FFactoryArea"]) != null)
|
{
|
FFactoryArea = ((DynamicObject)customFil["FFactoryArea"])["Id"].ToString();
|
}
|
|
if (((DynamicObject)customFil["FBuyer"]) != null)
|
{
|
FBuyer = ((DynamicObject)customFil["FBuyer"])["Id"].ToString();
|
}
|
if (((DynamicObject)customFil["FWarehouse"]) != null)
|
{
|
FWarehouse = ((DynamicObject)customFil["FWarehouse"])["Id"].ToString();
|
}
|
if ((customFil["FIsMainMaterial"]) != null)
|
{
|
FIsMainMaterial = Convert.ToBoolean(customFil["FIsMainMaterial"]);//True False
|
}
|
if ((customFil["FSaleOrderNo"]) != null)
|
{
|
saleOrderNo = customFil["FSaleOrderNo"].ToString();
|
}
|
if (((DynamicObject)customFil["FOrgId"]) != null)
|
{
|
FOrgId = ((DynamicObject)customFil["FOrgId"])["Id"].ToString();
|
|
}
|
string sql = string.Format(@"/*dialect*/
|
exec [h_p_Cg_SupSendGoodsPlanZSFDD] '{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}','{8}','{9}','{10}' ,'{11}' ,'{12}','{13}'
|
", FSupplier, FOrgId, FFactoryArea, FMateriel, FMaterielName, FModel, saleOrderNo, FBuyer, FWarehouse, FIsMainMaterial ? 1 : 0, FIsXBC ? 1 : 0, FIsTq ? 1 : 0, FIsZZ ? 1 : 0, tableName);
|
LogHelper.Info(sql);
|
DBUtils.Execute(this.Context, sql);
|
//EXEC h_p_Cg_SupSendGoodsPlanZSFDD 0,100092,'5fe5d920a3f2bf','','','','',0,0,1
|
}
|
public override void CloseReport()
|
{
|
|
}
|
}
|
}
|