提交 edd1ce4b authored 作者: 刘火's avatar 刘火

提交

上级 aa9a1986
...@@ -21,6 +21,7 @@ using Kingdee.BOS.Core.Metadata; ...@@ -21,6 +21,7 @@ using Kingdee.BOS.Core.Metadata;
using Kingdee.BOS.Core.Metadata.FormElement; using Kingdee.BOS.Core.Metadata.FormElement;
using Kingdee.BOS.ServiceFacade.KDServiceFx; using Kingdee.BOS.ServiceFacade.KDServiceFx;
using Kingdee.BOS.WebApi.ServicesStub; using Kingdee.BOS.WebApi.ServicesStub;
using Kingdee.BOS.Orm;
namespace LF.K3.SCM.AppServerPlugin.CreateBOM namespace LF.K3.SCM.AppServerPlugin.CreateBOM
{ {
...@@ -68,12 +69,15 @@ namespace LF.K3.SCM.AppServerPlugin.CreateBOM ...@@ -68,12 +69,15 @@ namespace LF.K3.SCM.AppServerPlugin.CreateBOM
materiglgrg.MATERIALID = table.Rows[i]["FNUMBER"].ToString(); materiglgrg.MATERIALID = table.Rows[i]["FNUMBER"].ToString();
materiglgrg.MATERIALIDCHILD = "J001"; materiglgrg.MATERIALIDCHILD = "J001";
materiglgrg.Group = "4"; materiglgrg.Group = "4";
materiglgrg.DOCUMENTSTATUS = "C"; //materiglgrg.DOCUMENTSTATUS = "C";
SetVoucherArgsToVoucher(materigls,materiglgrg); SetVoucherArgsToVoucher(materigls,materiglgrg);
if (materigls.Count>0) if (materigls.Count>0)
{ {
FormMetadata meta = MetaDataServiceHelper.Load(this.Context, "ENG_BOM") as FormMetadata; FormMetadata meta = MetaDataServiceHelper.Load(this.Context, "ENG_BOM") as FormMetadata;
BusinessDataServiceHelper.Save(this.Context, meta.BusinessInfo, materigls.ToArray()); BusinessDataServiceHelper.Save(this.Context, meta.BusinessInfo, materigls.ToArray());
var bomIds = materigls.Select(t => t["Id"]).ToArray();
BusinessDataServiceHelper.Submit(this.Context, meta.BusinessInfo, bomIds, "Submit");
BusinessDataServiceHelper.Audit(this.Context, meta.BusinessInfo, bomIds, OperateOption.Create());
} }
} }
...@@ -90,7 +94,7 @@ namespace LF.K3.SCM.AppServerPlugin.CreateBOM ...@@ -90,7 +94,7 @@ namespace LF.K3.SCM.AppServerPlugin.CreateBOM
FillProperty(billView, FieldValueType.ItemNumber, "FMATERIALID", materialarg.MATERIALID, 0); FillProperty(billView, FieldValueType.ItemNumber, "FMATERIALID", materialarg.MATERIALID, 0);
FillProperty(billView, FieldValueType.ItemNumber, "FGroup", materialarg.Group, 0); FillProperty(billView, FieldValueType.ItemNumber, "FGroup", materialarg.Group, 0);
FillProperty(billView,FieldValueType.Common, "FDocumentStatus", materialarg.DOCUMENTSTATUS,0); //FillProperty(billView,FieldValueType.Common, "FDocumentStatus", materialarg.DOCUMENTSTATUS,0);
//FillProperty(billView, FieldValueType.ItemNumber, "FITEMMODEL", materialarg.ITEMMODEL, 0); //FillProperty(billView, FieldValueType.ItemNumber, "FITEMMODEL", materialarg.ITEMMODEL, 0);
//billView.Model.DeleteEntryData("FTreeEntity"); //billView.Model.DeleteEntryData("FTreeEntity");
...@@ -162,7 +166,7 @@ namespace LF.K3.SCM.AppServerPlugin.CreateBOM ...@@ -162,7 +166,7 @@ namespace LF.K3.SCM.AppServerPlugin.CreateBOM
FormMetadata meta = MetaDataServiceHelper.Load(this.Context, formId) as FormMetadata; FormMetadata meta = MetaDataServiceHelper.Load(this.Context, formId) as FormMetadata;
Form form = meta.BusinessInfo.GetForm(); Form form = meta.BusinessInfo.GetForm();
//创建用于引入数据的单据view //创建用于引入数据的单据view
Type type = Type.GetType("Kingdee.BOS.Web.Import.ImportBillView,Kingdee.BOS.Web"); Type type = Type.GetType("Kingdee.BOS.Web.Bill.BillView,Kingdee.BOS.Web");
var billView = (IDynamicFormViewService)Activator.CreateInstance(type); var billView = (IDynamicFormViewService)Activator.CreateInstance(type);
//开始初始化billView: //开始初始化billView:
//创建视图加载参数对象,指定各种参数,如FormId, 视图(LayoutId)等 //创建视图加载参数对象,指定各种参数,如FormId, 视图(LayoutId)等
......
...@@ -9,9 +9,10 @@ ...@@ -9,9 +9,10 @@
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LF.K3.SCM.AppServerPlugin</RootNamespace> <RootNamespace>LF.K3.SCM.AppServerPlugin</RootNamespace>
<AssemblyName>LF.K3.SCM.AppServerPlugin</AssemblyName> <AssemblyName>LF.K3.SCM.AppServerPlugin</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic> <Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>
...@@ -21,6 +22,7 @@ ...@@ -21,6 +22,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants> <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
...@@ -29,6 +31,7 @@ ...@@ -29,6 +31,7 @@
<DefineConstants>TRACE</DefineConstants> <DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="Kingdee.BOS, Version=7.6.2003.9, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="Kingdee.BOS, Version=7.6.2003.9, Culture=neutral, processorArchitecture=MSIL">
......
...@@ -31,5 +31,21 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial ...@@ -31,5 +31,21 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial
/// 物料分组 /// 物料分组
/// </summary> /// </summary>
public string MaterialGroup { get; set; } public string MaterialGroup { get; set; }
/// <summary>
/// 12NC
/// </summary>
public string F12NC { get; set; }
/// <summary>
/// 产品系列
/// </summary>
public string Productseries { get; set; }
/// <summary>
/// 品牌
/// </summary>
public string Brand { get; set; }
/// <summary>
/// 物料属性
/// </summary>
public string ErpCls { get; set; }
} }
} }
...@@ -52,20 +52,26 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial ...@@ -52,20 +52,26 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial
string sqllsh = "select MAX(FSERIALNUMBER) lsh from T_LF_CPMaterials"; string sqllsh = "select MAX(FSERIALNUMBER) lsh from T_LF_CPMaterials";
var tb = DBServiceHelper.ExecuteDataSet(this.Context, sqllsh).Tables[0]; var tb = DBServiceHelper.ExecuteDataSet(this.Context, sqllsh).Tables[0];
int maxlsh =Convert.ToInt32(tb.Rows[0]["lsh"]); int maxlsh =Convert.ToInt32(tb.Rows[0]["lsh"]);
//获取点光源编码
string sqldgyFNUMBER = "select a.FNUMBER,b.FNAME from T_BD_MATERIALCATEGORY a left join T_BD_MATERIALCATEGORY_L b on a.FCATEGORYID=b.FCATEGORYID where FNAME='点光源'";
var tbdgyFNUMBER = DBServiceHelper.ExecuteDataSet(this.Context, sqldgyFNUMBER).Tables[0];
var dgyFNUMBER = tbdgyFNUMBER.Rows[0]["FNUMBER"].ToString();
foreach (DataRow item in dt.Rows) foreach (DataRow item in dt.Rows)
{ {
FEntryID.Add(item["FEntryID"]); FEntryID.Add(item["FEntryID"]);
//规格型号
LeifeiMaterialArgs lfmateriaargs = new LeifeiMaterialArgs(); LeifeiMaterialArgs lfmateriaargs = new LeifeiMaterialArgs();
lfmateriaargs.Name = item["cpxl"].ToString(); lfmateriaargs.Name = item["kzfs"].ToString() + item["cpxl"].ToString()+ item["cd"].ToString();
//拼接规格型号 //拼接规格型号
ListSpecification.Add(item["cpxh"].ToString()); ListSpecification.Add(item["cpxh"].ToString());
ListSpecification.Add(item["kzfs"].ToString()); ListSpecification.Add(item["kzfs"].ToString());
ListSpecification.Add(item["dy"].ToString()); ListSpecification.Add(item["dy"].ToString());
ListSpecification.Add(item["FPOWER"].ToString()); ListSpecification.Add(item["FPOWER"].ToString());
ListSpecification.Add(item["wbkz"].ToString()); ListSpecification.Add(item["wbkz"].ToString());
ListSpecification.Add(item["FLAMPQUANTITY"].ToString()); //ListSpecification.Add(item["FLAMPQUANTITY"].ToString());
ListSpecification.Add(item["led"].ToString()); ListSpecification.Add(item["led"].ToString());
ListSpecification.Add(item["xp"].ToString());
ListSpecification.Add(item["jdmz"].ToString()); ListSpecification.Add(item["jdmz"].ToString());
ListSpecification.Add(item["cd"].ToString()); ListSpecification.Add(item["cd"].ToString());
ListSpecification.Add(item["zkys"].ToString()); ListSpecification.Add(item["zkys"].ToString());
...@@ -74,7 +80,6 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial ...@@ -74,7 +80,6 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial
ListSpecification.Add(item["ljx"].ToString()); ListSpecification.Add(item["ljx"].ToString());
ListSpecification.Add(item["pp"].ToString()); ListSpecification.Add(item["pp"].ToString());
ListSpecification.Add(item["FSPECIALREQUIREMENTS"].ToString()); ListSpecification.Add(item["FSPECIALREQUIREMENTS"].ToString());
ListSpecification.Add(item["xp"].ToString());
ListSpecification.Add(item["FSCHEME"].ToString()); ListSpecification.Add(item["FSCHEME"].ToString());
for (int i = 0; i < ListSpecification.Count; i++) for (int i = 0; i < ListSpecification.Count; i++)
{ {
...@@ -85,15 +90,41 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial ...@@ -85,15 +90,41 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial
} }
} }
string spe = string.Join(", ", ListSpecification); string spe = string.Join(", ", ListSpecification);
lfmateriaargs.Specification = spe; lfmateriaargs.Specification = spe;
lfmateriaargs.F_qaz_Remark = spe; lfmateriaargs.F_qaz_Remark = spe;
//数据状态
lfmateriaargs.DOCUMENTSTATUS = "C"; lfmateriaargs.DOCUMENTSTATUS = "C";
//物料分组
lfmateriaargs.MaterialGroup = "036"; lfmateriaargs.MaterialGroup = "036";
//物料编码
if (item["FNUMBER"].ToString()==" ") if (item["FNUMBER"].ToString()==" ")
{ {
//物料编码 //物料编码
int count = maxlsh + 1; int count = maxlsh + 1;
var wlbm = "C2" + item["cpxh"].ToString() + count.ToString("0000"); int kzfs; //控制方式
if (item["kzfs"].ToString()== "上电常亮")
{
kzfs = 0;
}
else
{
kzfs = 1;
}
string dy; //电压
if (item["dy"].ToString() == "AC220V")
{
dy = "A";
}
else
{
dy = "D";
}
var wlbm = "C4" + item["cpxh"].ToString()+kzfs+ dy + count.ToString("0000");
lfmateriaargs.Materialcoding = wlbm; lfmateriaargs.Materialcoding = wlbm;
string sqlupdate = "update T_LF_CPMaterials set FSERIALNUMBER=" + count + " where FEntryID=" + item["FEntryID"] + ""; string sqlupdate = "update T_LF_CPMaterials set FSERIALNUMBER=" + count + " where FEntryID=" + item["FEntryID"] + "";
DBServiceHelper.Execute(this.Context, sqlupdate); DBServiceHelper.Execute(this.Context, sqlupdate);
...@@ -103,6 +134,31 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial ...@@ -103,6 +134,31 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial
lfmateriaargs.Materialcoding = item["FNUMBER"].ToString(); lfmateriaargs.Materialcoding = item["FNUMBER"].ToString();
} }
//12NC
lfmateriaargs.F12NC = item["F12NC"].ToString();
//物料属性设置为自制:2
lfmateriaargs.ErpCls = "2";
//产品系列
if (item["cpxl"].ToString()== "点状灯" || item["cpxl"].ToString() == "柔性灯")
{
//只有点光源会对应“点状灯”和“柔性灯”
//点光源:179900
lfmateriaargs.Productseries = dgyFNUMBER;
}
else
{
string sqlFNUMBER = "select a.FNUMBER,b.FNAME from T_BD_MATERIALCATEGORY a left join T_BD_MATERIALCATEGORY_L b on a.FCATEGORYID=b.FCATEGORYID where FNAME='" + item["cpxl"].ToString() + "'";
var tbFNUMBER = DBServiceHelper.ExecuteDataSet(this.Context, sqlFNUMBER).Tables[0];
var FNUMBER = tbFNUMBER.Rows[0]["FNUMBER"].ToString();
lfmateriaargs.Productseries = FNUMBER;
}
//品牌
lfmateriaargs.Brand = item["pp"].ToString();
long pkid =Convert.ToInt64(item["FINTERNALID"]); long pkid =Convert.ToInt64(item["FINTERNALID"]);
SetVoucherArgsToVoucher(materigls, lfmateriaargs,pkid); SetVoucherArgsToVoucher(materigls, lfmateriaargs,pkid);
ListSpecification = new List<object>(); ListSpecification = new List<object>();
...@@ -148,6 +204,10 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial ...@@ -148,6 +204,10 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial
FillProperty(billView, FieldValueType.Common, "FDocumentStatus", materialarg.DOCUMENTSTATUS, 0); FillProperty(billView, FieldValueType.Common, "FDocumentStatus", materialarg.DOCUMENTSTATUS, 0);
FillProperty(billView, FieldValueType.Common, "F_qaz_Remark", materialarg.F_qaz_Remark, 0); FillProperty(billView, FieldValueType.Common, "F_qaz_Remark", materialarg.F_qaz_Remark, 0);
FillProperty(billView, FieldValueType.ItemNumber, "FMaterialGroup", materialarg.MaterialGroup, 0); FillProperty(billView, FieldValueType.ItemNumber, "FMaterialGroup", materialarg.MaterialGroup, 0);
FillProperty(billView, FieldValueType.Common, "F_qaz_Text2", materialarg.F12NC, 0);
FillProperty(billView, FieldValueType.Common, "FErpClsID", materialarg.ErpCls, 0);
FillProperty(billView, FieldValueType.ItemNumber, "FCategoryID", materialarg.Productseries, 0);
FillProperty(billView, FieldValueType.Common, "F_qaz_Text", materialarg.Brand, 0);
} }
private void FillProperty(IBillView dyView, FieldValueType type, string key, object value, int row) private void FillProperty(IBillView dyView, FieldValueType type, string key, object value, int row)
{ {
...@@ -264,7 +324,7 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial ...@@ -264,7 +324,7 @@ namespace LF.K3.SCM.AppServerPlugin.SaveLeifeiMaterial
/// <returns></returns> /// <returns></returns>
private DataTable setWL(string number) private DataTable setWL(string number)
{ {
string sql = @"select cpm.FID,cpm.FEntryID,cpm.FSEQ,cpxl.FDATAVALUE as cpxl,cpxh.FDATAVALUE as cpxh,kzfs.FDATAVALUE as kzfs,dy.FDATAVALUE as dy,cpm.FPOWER,wbkz.FDATAVALUE as wbkz,cpm.FLAMPQUANTITY,led.FDATAVALUE as led,jdmz.FDATAVALUE as jdmz,cd.FDATAVALUE as cd,zkys.FDATAVALUE as zkys,pj.FDATAVALUE as pj,azzj.FDATAVALUE as azzj,ljx.FDATAVALUE as ljx,pp.FDATAVALUE as pp,cpm.FSPECIALREQUIREMENTS,xp.FDATAVALUE as xp,cpm.FSCHEME,cpm.FNUMBER,cpm.FINTERNALID from T_LF_CPMaterials cpm string sql = @"select cpm.FID,cpm.FEntryID,cpm.FSEQ,cpxl.FDATAVALUE as cpxl,cpxh.FDATAVALUE as cpxh,kzfs.FDATAVALUE as kzfs,dy.FDATAVALUE as dy,cpm.FPOWER,wbkz.FDATAVALUE as wbkz,led.FDATAVALUE as led,jdmz.FDATAVALUE as jdmz,cd.FDATAVALUE as cd,zkys.FDATAVALUE as zkys,pj.FDATAVALUE as pj,azzj.FDATAVALUE as azzj,ljx.FDATAVALUE as ljx,pp.FDATAVALUE as pp,cpm.FSPECIALREQUIREMENTS,xp.FDATAVALUE as xp,cpm.FSCHEME,cpm.FNUMBER,cpm.FINTERNALID,cpm.F12NC from T_LF_CPMaterials cpm
left join (select a.fid,a.FEntryID,c.FDATAVALUE from T_LF_CPMaterials a left join T_BAS_ASSISTANTDATAENTRY b on a.FPRODUCTSERIES=b.FMASTERID left join T_BAS_ASSISTANTDATAENTRY_L c on b.FENTRYID=c.FENTRYID) cpxl on cpm.FEntryID=cpxl.FEntryID left join (select a.fid,a.FEntryID,c.FDATAVALUE from T_LF_CPMaterials a left join T_BAS_ASSISTANTDATAENTRY b on a.FPRODUCTSERIES=b.FMASTERID left join T_BAS_ASSISTANTDATAENTRY_L c on b.FENTRYID=c.FENTRYID) cpxl on cpm.FEntryID=cpxl.FEntryID
left join (select a.fid,a.FEntryID,c.FDATAVALUE from T_LF_CPMaterials a left join T_BAS_ASSISTANTDATAENTRY b on a.FPRODUCTMODEL=b.FMASTERID left join T_BAS_ASSISTANTDATAENTRY_L c on b.FENTRYID=c.FENTRYID) cpxh on cpm.FEntryID=cpxh.FEntryID left join (select a.fid,a.FEntryID,c.FDATAVALUE from T_LF_CPMaterials a left join T_BAS_ASSISTANTDATAENTRY b on a.FPRODUCTMODEL=b.FMASTERID left join T_BAS_ASSISTANTDATAENTRY_L c on b.FENTRYID=c.FENTRYID) cpxh on cpm.FEntryID=cpxh.FEntryID
left join (select a.fid,a.FEntryID,c.FDATAVALUE from T_LF_CPMaterials a left join T_BAS_ASSISTANTDATAENTRY b on a.FCONTROLMODE=b.FMASTERID left join T_BAS_ASSISTANTDATAENTRY_L c on b.FENTRYID=c.FENTRYID) kzfs on cpm.FEntryID=kzfs.FEntryID left join (select a.fid,a.FEntryID,c.FDATAVALUE from T_LF_CPMaterials a left join T_BAS_ASSISTANTDATAENTRY b on a.FCONTROLMODE=b.FMASTERID left join T_BAS_ASSISTANTDATAENTRY_L c on b.FENTRYID=c.FENTRYID) kzfs on cpm.FEntryID=kzfs.FEntryID
......
...@@ -9,9 +9,10 @@ ...@@ -9,9 +9,10 @@
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LF.K3.SCM.BusinessPlugin</RootNamespace> <RootNamespace>LF.K3.SCM.BusinessPlugin</RootNamespace>
<AssemblyName>LF.K3.SCM.BusinessPlugin</AssemblyName> <AssemblyName>LF.K3.SCM.BusinessPlugin</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic> <Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>
...@@ -21,6 +22,7 @@ ...@@ -21,6 +22,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants> <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
...@@ -29,6 +31,7 @@ ...@@ -29,6 +31,7 @@
<DefineConstants>TRACE</DefineConstants> <DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="Kingdee.BOS, Version=7.6.2003.9, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="Kingdee.BOS, Version=7.6.2003.9, Culture=neutral, processorArchitecture=MSIL">
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
<DevPhase>Unknown</DevPhase> <DevPhase>Unknown</DevPhase>
<CanBeStopped>false</CanBeStopped> <CanBeStopped>false</CanBeStopped>
<DeployEdition>ALL</DeployEdition> <DeployEdition>ALL</DeployEdition>
<PatchType>ALL</PatchType>
<Deploy>Business</Deploy> <Deploy>Business</Deploy>
<PackageCategory>FuncPackage</PackageCategory> <PackageCategory>FuncPackage</PackageCategory>
<IsReplace>true</IsReplace> <IsReplace>true</IsReplace>
......
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
<DevPhase>Unknown</DevPhase> <DevPhase>Unknown</DevPhase>
<CanBeStopped>false</CanBeStopped> <CanBeStopped>false</CanBeStopped>
<DeployEdition>ALL</DeployEdition> <DeployEdition>ALL</DeployEdition>
<PatchType>ALL</PatchType>
<Deploy>Business</Deploy> <Deploy>Business</Deploy>
<PackageCategory>FuncPackage</PackageCategory> <PackageCategory>FuncPackage</PackageCategory>
<IsReplace>true</IsReplace> <IsReplace>true</IsReplace>
......
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
<DevPhase>Unknown</DevPhase> <DevPhase>Unknown</DevPhase>
<CanBeStopped>false</CanBeStopped> <CanBeStopped>false</CanBeStopped>
<DeployEdition>ALL</DeployEdition> <DeployEdition>ALL</DeployEdition>
<PatchType>ALL</PatchType>
<Deploy>Business</Deploy> <Deploy>Business</Deploy>
<PackageCategory>FuncPackage</PackageCategory> <PackageCategory>FuncPackage</PackageCategory>
<IsReplace>true</IsReplace> <IsReplace>true</IsReplace>
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
<DevPhase>Unknown</DevPhase> <DevPhase>Unknown</DevPhase>
<CanBeStopped>false</CanBeStopped> <CanBeStopped>false</CanBeStopped>
<DeployEdition>ALL</DeployEdition> <DeployEdition>ALL</DeployEdition>
<PatchType>ALL</PatchType>
<Deploy>Business</Deploy> <Deploy>Business</Deploy>
<PackageCategory>FuncPackage</PackageCategory> <PackageCategory>FuncPackage</PackageCategory>
<IsReplace>true</IsReplace> <IsReplace>true</IsReplace>
......
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
<DevPhase>Unknown</DevPhase> <DevPhase>Unknown</DevPhase>
<CanBeStopped>false</CanBeStopped> <CanBeStopped>false</CanBeStopped>
<DeployEdition>ALL</DeployEdition> <DeployEdition>ALL</DeployEdition>
<PatchType>ALL</PatchType>
<Deploy>Business</Deploy> <Deploy>Business</Deploy>
<PackageCategory>FuncPackage</PackageCategory> <PackageCategory>FuncPackage</PackageCategory>
<IsReplace>true</IsReplace> <IsReplace>true</IsReplace>
......
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<ProjectRefPath>H:\磊飞\项目信息\商业条款和逾期账龄\K3Cloud\bin</ProjectRefPath> <ProjectRefPath>H:\磊飞\项目信息\商业条款和逾期账龄\K3Cloud\bin</ProjectRefPath>
<IsAutoCheckIn>1</IsAutoCheckIn> <IsAutoCheckIn>1</IsAutoCheckIn>
<IsStartScc>1</IsStartScc> <IsStartScc>1</IsStartScc>
<LastExpandPackageNodeID>f7973c2f-a944-4fb0-ae0a-d2d5f3045001</LastExpandPackageNodeID> <LastExpandPackageNodeID>0d88086c-8c2d-41db-9c36-9600a7c587aa</LastExpandPackageNodeID>
<SCCCfg> <SCCCfg>
</SCCCfg> </SCCCfg>
</KDSolution> </KDSolution>
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论