QDHHYT
dengyu 1 year ago
parent 6e61c25330
commit 5946ab0e94

2
.gitignore vendored

@ -98,3 +98,5 @@ DispatchWeb/DispatchWeb.csproj.user
/packages
/WebSqlHelper/bin
/ToolProject/TestForm/TestForm/obj
/OfficeHelper/obj/Debug/OfficeHelper.csproj.FileListAbsolute.txt
/OfficeHelper/obj/Release/OfficeHelper.csproj.FileListAbsolute.txt

@ -1548,7 +1548,7 @@ namespace DSWeb.MvcShipping.Controllers
= list.Count();
}
MsChFeeDAL.MakeNewFee(USERID, item.BSNO, "青岛大简云", "其它", 2, "舱单费", amount * ,"", );
MsChFeeDAL.MakeNewFee(USERID, item.BSNO, "青岛大简云", "其它", 2, "舱单费", amount * , "单票", );
}

@ -261,6 +261,30 @@ namespace DSWeb.MvcShipping.Controllers
if (headData.CONFIRMDATE == "") headData.CONFIRMDATE = null;
if (headData.ISSUEDATE == "") headData.ISSUEDATE = null;
if (!string.IsNullOrWhiteSpace(headData.SHIPPER)) {
headData.SHIPPER= headData.SHIPPER.ToUpper();
}
if (!string.IsNullOrWhiteSpace(headData.CONSIGNEE))
{
headData.CONSIGNEE = headData.CONSIGNEE.ToUpper();
}
if (!string.IsNullOrWhiteSpace(headData.NOTIFYPARTY))
{
headData.NOTIFYPARTY = headData.NOTIFYPARTY.ToUpper();
}
if (!string.IsNullOrWhiteSpace(headData.AGENT))
{
headData.AGENT = headData.AGENT.ToUpper();
}
if (!string.IsNullOrWhiteSpace(headData.MARKS))
{
headData.MARKS = headData.MARKS.ToUpper();
}
if (!string.IsNullOrWhiteSpace(headData.DESCRIPTION))
{
headData.DESCRIPTION = headData.DESCRIPTION.ToUpper();
}
if (isPost)
{

@ -1729,7 +1729,7 @@ Ext.extend(Shipping.MsOpSeaeIndex, Ext.Panel, {
queryMode: 'remote',
minChars: 0,
queryParam: 'CODENAME',
labelWidth: 45,
labelWidth: 38,
name: 'OP',
flex: 0.6,
valueField: 'UserName',
@ -1820,7 +1820,7 @@ Ext.extend(Shipping.MsOpSeaeIndex, Ext.Panel, {
this.comboxLANE = Ext.create('DsExt.ux.RefTableCombox', {
fieldLabel: Zi.LAN.LANE, //'航线',
store: this.storeLANE,
labelWidth: 30,
labelWidth: 38,
queryMode: 'remote',
minChars: 0,
queryParam: 'CODENAME',
@ -2008,11 +2008,11 @@ Ext.extend(Shipping.MsOpSeaeIndex, Ext.Panel, {
this.comboxPORTLOAD = Ext.create('DsExt.ux.RefTableCombox', {
fieldLabel: Zi.LAN.PORTLOAD,
labelWidth: 42,
flex: 0.8,
store: this.storeCodeLoadport,
matchFieldWidth: false,
name: 'PORTLOAD',
valueField: 'PORT',
flex: 0.9,
displayField: 'CodeAndName',
listeners: {
scope: this,
@ -2035,6 +2035,29 @@ Ext.extend(Shipping.MsOpSeaeIndex, Ext.Panel, {
}
});
Ext.define('DeductibleMd', {
extend: 'Ext.data.Model',
fields: [
{ name: 'IsOpen', type: 'string' },
{ name: 'IsOpen_REF', type: 'string' }
]
});
var IsCancelData = [{ "IsOpen": "0", "IsOpen_REF": "否" },
{ "IsOpen": "1", "IsOpen_REF": "是" }];
this.storeIsCancel = Ext.create('Ext.data.Store', {
model: 'DeductibleMd',
data: IsCancelData
});
this.comboxIsCancel = Ext.create('DsExt.ux.RefEnumCombox', {
fieldLabel: '是否退舱',
flex: 0.4,
forceSelection: true,
store: this.storeIsCancel,
name: 'IsCancel',
valueField: 'IsOpen',
displayField: 'IsOpen_REF'
});
//#endregion
@ -2182,10 +2205,53 @@ Ext.extend(Shipping.MsOpSeaeIndex, Ext.Panel, {
layout: 'hbox',
defaultType: 'textfield',
items: [this.comboxPORTLOAD
, { xtype: 'hiddenfield', flex: 1 }
, { xtype: 'hiddenfield', flex: 1 }
, { xtype: 'hiddenfield', flex: 1 }
, { xtype: 'hiddenfield', flex: 1 }
, this.comboxIsCancel
, {
fieldLabel: Zi.LAN.SHIPPER,
labelWidth: 60,
flex: 1,
name: 'SHIPPER',
enableKeyEvents: true,
listeners: {
specialkey: function (field, e) {
if (e.getKey() == e.ENTER) {
_this.onRefreshClick();
}
}
}
}
, {
fieldLabel: Zi.LAN.ATD, //'开船日期',
labelWidth: 60,
flex: 0.8,
format: 'Y-m-d',
xtype: 'datefield',
name: 'ATDbgn',
enableKeyEvents: true,
listeners: {
specialkey: function (field, e) {
if (e.getKey() == e.ENTER) {
_this.onRefreshClick();
}
}
}
}, {
fieldLabel: Zi.LAN.ETDend, //'到',
labelWidth: 20,
flex: 0.7,
format: 'Y-m-d',
xtype: 'datefield',
name: 'ATDend',
enableKeyEvents: true,
listeners: {
specialkey: function (field, e) {
if (e.getKey() == e.ENTER) {
_this.onRefreshClick();
}
}
}
}
, { xtype: 'hiddenfield', flex: 0.48 }
, { xtype: 'hiddenfield', width: 90 }
]
}
@ -8901,12 +8967,17 @@ Ext.extend(Shipping.MsOpSeaeIndex, Ext.Panel, {
var CUSTSERVICE = form.findField('CUSTSERVICE').getValue();
sql = sql + getAndConSql(sql, CUSTSERVICE, "B.CUSTSERVICE='" + CUSTSERVICE + "'");
//已退舱
var IsCancel = form.findField('IsCancel').getValue();
sql = sql + getAndConSql(sql, IsCancel, "B.IsCancel='" + IsCancel + "'");
// //装货港
// var PORTLOAD = form.findField('PORTLOAD').getValue();
// sql = sql + getAndConSql(sql, PORTLOAD, "B.PORTLOAD like '%" + PORTLOAD + "%'");
var SHIPPER = form.findField('SHIPPER').getValue();
sql = sql + getAndConSql(sql, SHIPPER, "B.SHIPPER like '%" + SHIPPER + "%' ");
var ATDbgn = form.findField('ATDbgn').getRawValue();
sql = sql + getAndConSql(sql, ATDbgn, "B.ATD >='" + ATDbgn + "'");
var ATDend = form.findField('ATDend').getRawValue();
sql = sql + getAndConSql(sql, ATDend, "B.ATD <='" + ATDend + " 23:59:59'");

@ -1154,7 +1154,7 @@ Ext.extend(Shipping.MsOpSeaeSaleIndex, Ext.Panel, {
this.gridList.reconfigure(this.storeList, this.girdcolums);
this.gridList.columns[1] = new Ext.grid.RowNumberer();
////////////////////////////////////////////////
//#endregion
this.gridList.addListener('itemdblclick', function (dataview, record, item, index, e, b) {
this.SelectedRecord = record;
this.OprationStatus = 'edit';
@ -1541,7 +1541,7 @@ Ext.extend(Shipping.MsOpSeaeSaleIndex, Ext.Panel, {
matchFieldWidth: false,
name: 'PORTLOAD',
valueField: 'PORT',
flex: 0.9,
flex: 0.8,
displayField: 'CodeAndName',
listeners: {
scope: this,
@ -1564,6 +1564,30 @@ Ext.extend(Shipping.MsOpSeaeSaleIndex, Ext.Panel, {
}
});
Ext.define('DeductibleMd', {
extend: 'Ext.data.Model',
fields: [
{ name: 'IsOpen', type: 'string' },
{ name: 'IsOpen_REF', type: 'string' }
]
});
var IsCancelData = [{ "IsOpen": "0", "IsOpen_REF": "否" },
{ "IsOpen": "1", "IsOpen_REF": "是" }];
this.storeIsCancel = Ext.create('Ext.data.Store', {
model: 'DeductibleMd',
data: IsCancelData
});
this.comboxIsCancel = Ext.create('DsExt.ux.RefEnumCombox', {
fieldLabel: '是否退舱',
flex:0.4,
forceSelection: true,
store: this.storeIsCancel,
name: 'IsCancel',
valueField: 'IsOpen',
displayField: 'IsOpen_REF'
});
//#endregion
//#region formSearch 查询面板
@ -1713,10 +1737,55 @@ Ext.extend(Shipping.MsOpSeaeSaleIndex, Ext.Panel, {
layout: 'hbox',
defaultType: 'textfield',
items: [this.comboxPORTLOAD
, { xtype: 'hiddenfield', flex: 1 }
, { xtype: 'hiddenfield', flex: 1 }
, { xtype: 'hiddenfield', flex: 1 }
, { xtype: 'hiddenfield', flex: 1 }
, this.comboxIsCancel
,{
fieldLabel: Zi.LAN.SHIPPER,
labelWidth: 60,
flex: 1,
name: 'SHIPPER',
enableKeyEvents: true,
listeners: {
specialkey: function (field, e) {
if (e.getKey() == e.ENTER) {
_this.onRefreshClick();
}
}
}
}
, {
fieldLabel: Zi.LAN.ATD, //'开船日期',
labelWidth: 60,
flex: 0.8,
format: 'Y-m-d',
xtype: 'datefield',
name: 'ATDbgn',
enableKeyEvents: true,
listeners: {
specialkey: function (field, e) {
if (e.getKey() == e.ENTER) {
_this.onRefreshClick();
}
}
}
}, {
fieldLabel: Zi.LAN.ETDend, //'到',
labelWidth: 20,
flex: 0.7,
format: 'Y-m-d',
xtype: 'datefield',
name: 'ATDend',
enableKeyEvents: true,
listeners: {
specialkey: function (field, e) {
if (e.getKey() == e.ENTER) {
_this.onRefreshClick();
}
}
}
}
, { xtype: 'hiddenfield', flex: 0.48 }
//, { xtype: 'hiddenfield', flex: 1 }
//, { xtype: 'hiddenfield', flex: 1 }
, { xtype: 'hiddenfield', width: 90 }
]
}
@ -2836,7 +2905,7 @@ Ext.extend(Shipping.MsOpSeaeSaleIndex, Ext.Panel, {
var ETDbgn = form.findField('ETDbgn').getRawValue();
sql = sql + getAndConSql(sql, ETDbgn, "B.ETD >='" + ETDbgn + "'");
var ETDend = form.findField('ETDend').getRawValue();
sql = sql + getAndConSql(sql, ETDend, "B.ETD <='" + ETDend + "'");
sql = sql + getAndConSql(sql, ETDend, "B.ETD <='" + ETDend + " 23:59:59'");
@ -2884,7 +2953,17 @@ Ext.extend(Shipping.MsOpSeaeSaleIndex, Ext.Panel, {
var CARRIER = form.findField('CARRIER').getValue();
sql = sql + getAndConSql(sql, CARRIER, "B.CARRIER='" + CARRIER + "'");
//已退舱
var IsCancel = form.findField('IsCancel').getValue();
sql = sql + getAndConSql(sql, IsCancel, "B.IsCancel='" + IsCancel + "'");
var SHIPPER = form.findField('SHIPPER').getValue();
sql = sql + getAndConSql(sql, SHIPPER, "B.SHIPPER like '%" + SHIPPER + "%' ");
var ATDbgn = form.findField('ATDbgn').getRawValue();
sql = sql + getAndConSql(sql, ATDbgn, "B.ATD >='" + ATDbgn + "'");
var ATDend = form.findField('ATDend').getRawValue();
sql = sql + getAndConSql(sql, ATDend, "B.ATD <='" + ATDend + " 23:59:59'");
// //揽货人
// var SALE = form2.findField('SALE').getValue();
// sql = sql + getAndConSql(sql, SALE, "B.SALE='" + SALE + "'");

@ -2,9 +2,9 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectView>ShowAllFiles</ProjectView>
<NameOfLastUsedPublishProfile>H:\DS7_QDHHYT\DSWeb\Properties\PublishProfiles\配置文件1.pubxml</NameOfLastUsedPublishProfile>
<NameOfLastUsedPublishProfile>E:\DS7_QDHHYT\DSWeb\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
<UseIISExpress>true</UseIISExpress>
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
<Use64BitIISExpress />
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />

@ -12,7 +12,7 @@
<SiteUrlToLaunchAfterPublish />
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
<ExcludeApp_Data>false</ExcludeApp_Data>
<publishUrl>F:\DS7Deploy</publishUrl>
<publishUrl>D:\DS7Deploy</publishUrl>
<DeleteExistingFiles>true</DeleteExistingFiles>
<PrecompileBeforePublish>true</PrecompileBeforePublish>
<EnableUpdateable>true</EnableUpdateable>

@ -88,21 +88,22 @@
<add name="DongShengDB" connectionString="Server=123.234.225.158,26600;Database=shippingwebTEST;User ID=sa;Password=Ds20040201;Connect Timeout=120000;" providerName="System.Data.SqlClient" />
<add name="sydevzsh" connectionString="Server=123.234.225.158,26600;Database=shippingwebTEST;User ID=sa;Password=Ds20040201;Connect Timeout=120000;" providerName="System.Data.SqlClient" />
-->
<!-- 环海运通 http://221.215.122.2:8081/login.aspx qdhhyt admin 888666 -->
<!-- 环海运通 http://221.215.122.2:8081/login.aspx qdhhyt admin 888666
<add name="DongShengDB" connectionString="Server=221.215.122.2,12456 ;Database=Shippingweb_HHYT;User ID=sa;Password=Ds20040201;Connect Timeout=120000;" providerName="System.Data.SqlClient" />
<add name="sydevzsh" connectionString="Server=221.215.122.2,12456 ;Database=Shippingweb_HHYT;User ID=sa;Password=Ds20040201;Connect Timeout=120000;" providerName="System.Data.SqlClient" />
<!-- 环海运通 测试 http://221.215.122.2:8088/login.aspx qdhhyt admin 666888
-->
<!-- 环海运通 测试 http://221.215.122.2:8088/login.aspx qdhhyt admin 666888
<add name="DongShengDB" connectionString="Server=221.215.122.2,12456 ;Database=20230604;User ID=sa;Password=Ds20040201;Connect Timeout=120000;" providerName="System.Data.SqlClient" />
<add name="sydevzsh" connectionString="Server=221.215.122.2,12456 ;Database=20230604;User ID=sa;Password=Ds20040201;Connect Timeout=120000;" providerName="System.Data.SqlClient" />
-->
<!-- 锦海运通 http://221.215.122.2:8081/login.aspx qdhhyt admin 666888
<!-- 锦海运通 http://221.215.122.2:8081/login.aspx qdhhyt admin 666888
<add name="DongShengDB" connectionString="Server=221.215.122.2,12456 ;Database=Shippingweb_QDJHYT;User ID=sa;Password=Ds20040201;Connect Timeout=120000;" providerName="System.Data.SqlClient" />
<add name="sydevzsh" connectionString="Server=221.215.122.2,12456 ;Database=Shippingweb_QDJHYT;User ID=sa;Password=Ds20040201;Connect Timeout=120000;" providerName="System.Data.SqlClient" />
-->
<!-- 锦海运通 http://221.215.122.2:8081/login.aspx qdjhyt admin 666888
<!-- 锦海运通 http://221.215.122.2:8081/login.aspx qdjhyt admin 666888 -->
<add name="DongShengDB" connectionString="Server=123.235.53.14,12456 ;Database=Shippingweb_QDJHYT;User ID=sa;Password=Ds20040201;Connect Timeout=120000;" providerName="System.Data.SqlClient" />
<add name="sydevzsh" connectionString="Server=123.235.53.14,12456 ;Database=Shippingweb_QDJHYT;User ID=sa;Password=Ds20040201;Connect Timeout=120000;" providerName="System.Data.SqlClient" />
-->
</connectionStrings>
<!--
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。

@ -1,41 +0,0 @@
E:\DS7\OfficeHelper\bin\Debug\OfficeHelper.dll
E:\DS7\OfficeHelper\bin\Debug\OfficeHelper.pdb
E:\DS7\OfficeHelper\obj\Debug\OfficeHelper.csproj.CoreCompileInputs.cache
E:\DS7\OfficeHelper\obj\Debug\OfficeHelper.dll
E:\DS7\OfficeHelper\obj\Debug\OfficeHelper.pdb
H:\DS7\OfficeHelper\bin\Debug\OfficeHelper.dll
H:\DS7\OfficeHelper\bin\Debug\OfficeHelper.pdb
H:\DS7\OfficeHelper\obj\Debug\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7\OfficeHelper\obj\Debug\OfficeHelper.dll
H:\DS7\OfficeHelper\obj\Debug\OfficeHelper.pdb
H:\DS7同步版\OfficeHelper\bin\Debug\OfficeHelper.dll
H:\DS7同步版\OfficeHelper\bin\Debug\OfficeHelper.pdb
H:\DS7同步版\OfficeHelper\obj\Debug\OfficeHelper.csprojAssemblyReference.cache
H:\DS7同步版\OfficeHelper\obj\Debug\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7同步版\OfficeHelper\obj\Debug\OfficeHelper.dll
H:\DS7同步版\OfficeHelper\obj\Debug\OfficeHelper.pdb
H:\DS7含注册\OfficeHelper\bin\Debug\OfficeHelper.dll
H:\DS7含注册\OfficeHelper\bin\Debug\OfficeHelper.pdb
H:\DS7含注册\OfficeHelper\obj\Debug\OfficeHelper.csprojAssemblyReference.cache
H:\DS7含注册\OfficeHelper\obj\Debug\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7含注册\OfficeHelper\obj\Debug\OfficeHelper.dll
H:\DS7含注册\OfficeHelper\obj\Debug\OfficeHelper.pdb
H:\DS7发布版\OfficeHelper\bin\Debug\OfficeHelper.dll
H:\DS7发布版\OfficeHelper\bin\Debug\OfficeHelper.pdb
H:\DS7发布版\OfficeHelper\obj\Debug\OfficeHelper.csprojAssemblyReference.cache
H:\DS7发布版\OfficeHelper\obj\Debug\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7发布版\OfficeHelper\obj\Debug\OfficeHelper.dll
H:\DS7发布版\OfficeHelper\obj\Debug\OfficeHelper.pdb
H:\DS7发布版2019\OfficeHelper\bin\Debug\OfficeHelper.dll
H:\DS7发布版2019\OfficeHelper\bin\Debug\OfficeHelper.pdb
H:\DS7发布版2019\OfficeHelper\obj\Debug\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7发布版2019\OfficeHelper\obj\Debug\OfficeHelper.dll
H:\DS7发布版2019\OfficeHelper\obj\Debug\OfficeHelper.pdb
H:\DS7发布版2019\OfficeHelper\obj\Debug\OfficeHelper.csproj.AssemblyReference.cache
H:\DS7\OfficeHelper\obj\Debug\OfficeHelper.csproj.AssemblyReference.cache
H:\DS7_QDHHYT\OfficeHelper\bin\Debug\OfficeHelper.dll
H:\DS7_QDHHYT\OfficeHelper\bin\Debug\OfficeHelper.pdb
H:\DS7_QDHHYT\OfficeHelper\obj\Debug\OfficeHelper.csproj.AssemblyReference.cache
H:\DS7_QDHHYT\OfficeHelper\obj\Debug\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7_QDHHYT\OfficeHelper\obj\Debug\OfficeHelper.dll
H:\DS7_QDHHYT\OfficeHelper\obj\Debug\OfficeHelper.pdb

@ -1,42 +0,0 @@
E:\DS7\OfficeHelper\bin\Release\OfficeHelper.dll
E:\DS7\OfficeHelper\bin\Release\OfficeHelper.pdb
E:\DS7\OfficeHelper\obj\Release\OfficeHelper.csprojAssemblyReference.cache
E:\DS7\OfficeHelper\obj\Release\OfficeHelper.csproj.CoreCompileInputs.cache
E:\DS7\OfficeHelper\obj\Release\OfficeHelper.dll
E:\DS7\OfficeHelper\obj\Release\OfficeHelper.pdb
H:\DS7\OfficeHelper\bin\Release\OfficeHelper.dll
H:\DS7\OfficeHelper\bin\Release\OfficeHelper.pdb
H:\DS7\OfficeHelper\obj\Release\OfficeHelper.csprojAssemblyReference.cache
H:\DS7\OfficeHelper\obj\Release\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7\OfficeHelper\obj\Release\OfficeHelper.dll
H:\DS7\OfficeHelper\obj\Release\OfficeHelper.pdb
H:\DS7同步版\OfficeHelper\bin\Release\OfficeHelper.dll
H:\DS7同步版\OfficeHelper\bin\Release\OfficeHelper.pdb
H:\DS7同步版\OfficeHelper\obj\Release\OfficeHelper.csprojAssemblyReference.cache
H:\DS7同步版\OfficeHelper\obj\Release\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7同步版\OfficeHelper\obj\Release\OfficeHelper.dll
H:\DS7同步版\OfficeHelper\obj\Release\OfficeHelper.pdb
H:\DS7含注册\OfficeHelper\bin\Release\OfficeHelper.dll
H:\DS7含注册\OfficeHelper\bin\Release\OfficeHelper.pdb
H:\DS7含注册\OfficeHelper\obj\Release\OfficeHelper.csprojAssemblyReference.cache
H:\DS7含注册\OfficeHelper\obj\Release\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7含注册\OfficeHelper\obj\Release\OfficeHelper.dll
H:\DS7含注册\OfficeHelper\obj\Release\OfficeHelper.pdb
H:\DS7发布版\OfficeHelper\bin\Release\OfficeHelper.dll
H:\DS7发布版\OfficeHelper\bin\Release\OfficeHelper.pdb
H:\DS7发布版\OfficeHelper\obj\Release\OfficeHelper.csprojAssemblyReference.cache
H:\DS7发布版\OfficeHelper\obj\Release\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7发布版\OfficeHelper\obj\Release\OfficeHelper.dll
H:\DS7发布版\OfficeHelper\obj\Release\OfficeHelper.pdb
H:\DS7发布版2019\OfficeHelper\bin\Release\OfficeHelper.dll
H:\DS7发布版2019\OfficeHelper\bin\Release\OfficeHelper.pdb
H:\DS7发布版2019\OfficeHelper\obj\Release\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7发布版2019\OfficeHelper\obj\Release\OfficeHelper.dll
H:\DS7发布版2019\OfficeHelper\obj\Release\OfficeHelper.pdb
H:\DS7发布版2019\OfficeHelper\obj\Release\OfficeHelper.csproj.AssemblyReference.cache
H:\DS7_QDHHYT\OfficeHelper\bin\Release\OfficeHelper.dll
H:\DS7_QDHHYT\OfficeHelper\bin\Release\OfficeHelper.pdb
H:\DS7_QDHHYT\OfficeHelper\obj\Release\OfficeHelper.csproj.AssemblyReference.cache
H:\DS7_QDHHYT\OfficeHelper\obj\Release\OfficeHelper.csproj.CoreCompileInputs.cache
H:\DS7_QDHHYT\OfficeHelper\obj\Release\OfficeHelper.dll
H:\DS7_QDHHYT\OfficeHelper\obj\Release\OfficeHelper.pdb
Loading…
Cancel
Save