'20220814-4'

临时发布20240103
ddlucky 2 years ago
parent e042430e09
commit 2bd6a418d1

@ -2293,7 +2293,7 @@ namespace DSWeb.Common.DB
{
var cdc = new CommonDataContext();
var result = cdc.v_info_shipper.FirstOrDefault(x => x.shipperID == str || x.shipperdetail.IndexOf(str) == 0);
var result = cdc.v_info_shipper.FirstOrDefault(x => x.shipperID == str || x.codename == str || x.SHORTNAME == str || x.shipperdetail.IndexOf(str) == 0);
return result;
}

@ -952,7 +952,7 @@ Ext.extend(Shipping.MsChRecvapplicationIndex, Ext.Panel, {
sql = sql + getAndConSql(sql, BillNo, " BillNo like '%" + BillNo + "%' ");
var BsNo = form.findField('BsNo').getValue();
sql = sql + getAndConSql(sql, BsNo, " Billno in (select BILLNO from ch_fee_do where bsno in(select bsno from v_op_bs where Custno like '%" + BsNo + "%' OR MBLNO like '%" + BsNo + "%')) ");
sql = sql + getAndConSql(sql, BsNo, "exists (SELECT 1 FROM CH_FEE_DO d LEFT JOIN V_OP_BILL B ON (B.BSNO=D.BSNO) WHERE cm.BILLNO=d.BILLNO AND (b.CUSTNO+''+b.MBLNO+''+b.HBLNO+''+b.CUSTOMNO+''+b.ORDERNO) like '%" + BsNo + "%' )");
var SettNo = form.findField('SettNo').getValue();

@ -507,7 +507,7 @@ Ext.extend(Shipping.MsChPaysettlementIndex, Ext.Panel, {
layout: 'hbox',
defaultType: 'textfield',
items: [{
fieldLabel: Zi.LAN.BillNo,
fieldLabel: Zi.LAN.BsNo,
name: 'BsNo',
enableKeyEvents: true,
listeners: {
@ -1307,7 +1307,7 @@ Ext.extend(Shipping.MsChPaysettlementIndex, Ext.Panel, {
var sql = ' BILLTYPE=2 ';
var customNo = form.findField('BsNo').getValue();
sql = sql + getAndConSql(sql, customNo, "BILLNO like '%" + customNo + "%'");
sql = sql + getAndConSql(sql, customNo, "(BILLNO like '%" + customNo + "%' or exists (SELECT 1 FROM CH_FEE_DO d LEFT JOIN V_OP_BILL B ON (B.BSNO=D.BSNO) WHERE cm.BILLNO=d.BILLNO AND (b.CUSTNO+''+b.MBLNO+''+b.HBLNO+''+b.CUSTOMNO+''+b.ORDERNO) like '%" + customNo + "%' ))");
var ShenNo = form.findField('ShenNo').getValue();
sql = sql + getAndConSql(sql, ShenNo, "BILLNO in (SELECT DISTINCT BILLNO from v_fee_do_payapplication WHERE PAYBILLNO like '%" + ShenNo + "%')");

@ -1318,7 +1318,7 @@ Ext.extend(Shipping.MsChRecvsettlementIndex, Ext.Panel, {
var sql = ' BILLTYPE=1 ';
var customNo = form.findField('BsNo').getValue();
sql = sql + getAndConSql(sql, customNo, "BILLNO like '%" + customNo + "%'");
sql = sql + getAndConSql(sql, customNo, "(BILLNO like '%" + customNo + "%' or exists (SELECT 1 FROM CH_FEE_DO d LEFT JOIN V_OP_BILL B ON (B.BSNO=D.BSNO) WHERE cm.BILLNO=d.BILLNO AND (b.CUSTNO+''+b.MBLNO+''+b.HBLNO+''+b.CUSTOMNO+''+b.ORDERNO) like '%" + customNo + "%' ))");
var VOUCHERNO = form.findField('VOUCHERNO').getValue();
//sql = sql + getAndConSql(sql, VOUCHERNO, "VOUCHERNO like '%" + VOUCHERNO + "%'");

@ -12,6 +12,7 @@ Zi.LAN.CustomerNameFull = "结算单位全称";
Zi.LAN.SettlementType = "结算方式";
Zi.LAN.BankAccount = "银行账号";
Zi.LAN.DepartmentName = "所属分部";
Zi.LAN.BsNo = "业务编号";
Zi.LAN.BillNo = "结算单号";
Zi.LAN.BillStatus = "状态";
Zi.LAN.SettlementTime = "结算日期";

@ -12,7 +12,7 @@ Zi.LAN.CustomerNameFull = "结算单位全称";
Zi.LAN.SettlementType = "结算方式";
Zi.LAN.BankAccount = "银行账号";
Zi.LAN.DepartmentName = "所属分部";
Zi.LAN.BillNo = "结算单号";
Zi.LAN.BillNo = "业务编号";
Zi.LAN.BillStatus = "状态";
Zi.LAN.SettlementTime = "结算日期";
Zi.LAN.SettlementUser = "结算人";

@ -1529,6 +1529,10 @@ namespace DSWeb.MvcShipping.DAL.MsSeaeOrderDAL
newrec.KGS = fenitem.KGS;
newrec.CBM = fenitem.CBM;
newrec.NOPKGS = newrec.PKGS;
newrec.GROSSWEIGHT = newrec.KGS.ToString();
newrec.MEASUREMENT = newrec.CBM.ToString();
}
#endregion

@ -74,7 +74,7 @@ Ext.extend(Shipping.MsOpBillLSEdit, Ext.Panel, {
store: this.storeShipper,
// forceSelection: true,
queryMode: 'remote',
minChars: 0,
minChars: 2,
queryParam: 'CODENAME',
labelWidth: 150,
labelAlign: 'left',
@ -118,7 +118,7 @@ Ext.extend(Shipping.MsOpBillLSEdit, Ext.Panel, {
store: this.storeConsignee,
// forceSelection: true,
queryMode: 'remote',
minChars: 0,
minChars: 2,
queryParam: 'CODENAME',
name: 'CONSIGNEEID',
valueField: 'SHORTNAME',
@ -160,7 +160,7 @@ Ext.extend(Shipping.MsOpBillLSEdit, Ext.Panel, {
labelAlign: 'left',
// forceSelection: true,
queryMode: 'remote',
minChars: 0,
minChars: 2,
queryParam: 'CODENAME',
name: 'NOTIFYPARTYID',
valueField: 'SHORTNAME',
@ -201,7 +201,7 @@ Ext.extend(Shipping.MsOpBillLSEdit, Ext.Panel, {
labelAlign: 'left',
// forceSelection: true,
queryMode: 'remote',
minChars: 0,
minChars: 2,
queryParam: 'CODENAME',
name: 'NOTIFYPARTYIDSECOND',
valueField: 'SHORTNAME',
@ -1016,97 +1016,97 @@ Ext.extend(Shipping.MsOpBillLSEdit, Ext.Panel, {
this.comboxConsignee,
{
xtype: 'fieldset',
defaultType: 'textfield',
layout: 'hbox',
defaults: {
anchor: '100%'
},
items: [{
xtype: 'textareafield',
grow: true,
labelWidth: 0,
height: 100,
name: 'CONSIGNEE',
anchor: '100%',
listeners: {
scope: this,
blur: function (field, The, eOpts) {
_this.formEdit.getForm().findField('CONSIGNEE').setValue(field.value.toUpperCase());
}
}
}, { xtype: 'container',
layout: 'anchor',
flex: 0.6,
defaultType: 'textfield',
items: [{
fieldLabel: '企业代码',
name: 'CONSIGNEECODE'
}, {
fieldLabel: '国家代码',
name: 'CONSIGNEECOUNTRY'
}, {
fieldLabel: '电话',
name: 'CONSIGNEETEL'
}, {
fieldLabel: '邮箱',
name: 'CONSIGNEEEMAIL'
}]
}]
},
{
xtype: 'fieldset',
defaultType: 'textfield',
layout: 'hbox',
defaults: {
anchor: '100%'
},
items: [{
xtype: 'textareafield',
grow: true,
labelWidth: 0,
height: 100,
name: 'CONSIGNEE',
anchor: '100%',
listeners: {
scope: this,
blur: function (field, The, eOpts) {
_this.formEdit.getForm().findField('CONSIGNEE').setValue(field.value.toUpperCase());
}
}
}, { xtype: 'container',
layout: 'anchor',
flex: 0.6,
defaultType: 'textfield',
items: [{
fieldLabel: '企业代码',
name: 'CONSIGNEECODE'
}, {
fieldLabel: '国家代码',
name: 'CONSIGNEECOUNTRY'
}, {
fieldLabel: '电话',
name: 'CONSIGNEETEL'
}, {
fieldLabel: '邮箱',
name: 'CONSIGNEEEMAIL'
}]
}]
},
this.comboxNotifyParty,
{
xtype: 'fieldset',
defaultType: 'textfield',
layout: 'hbox',
defaults: {
anchor: '100%'
},
items: [{
xtype: 'textareafield',
grow: true,
labelWidth: 0,
height: 100,
name: 'NOTIFYPARTY',
anchor: '100%',
listeners: {
scope: this,
blur: function (field, The, eOpts) {
_this.formEdit.getForm().findField('NOTIFYPARTY').setValue(field.value.toUpperCase());
}
}
}, { xtype: 'container',
layout: 'anchor',
flex: 0.6,
defaultType: 'textfield',
items: [{
fieldLabel: '企业代码',
name: 'NOTIFYPARTYCODE'
}, {
fieldLabel: '国家代码',
name: 'NOTIFYPARTYCOUNTRY'
}, {
fieldLabel: '电话',
name: 'NOTIFYPARTYTEL'
}, {
fieldLabel: '邮箱',
name: 'NOTIFYPARTYEMAIL'
}]
}]
}
]
{
xtype: 'fieldset',
defaultType: 'textfield',
layout: 'hbox',
defaults: {
anchor: '100%'
},
items: [{
xtype: 'textareafield',
grow: true,
labelWidth: 0,
height: 100,
name: 'NOTIFYPARTY',
anchor: '100%',
listeners: {
scope: this,
blur: function (field, The, eOpts) {
_this.formEdit.getForm().findField('NOTIFYPARTY').setValue(field.value.toUpperCase());
}
}
}, { xtype: 'container',
layout: 'anchor',
flex: 0.6,
defaultType: 'textfield',
items: [{
fieldLabel: '企业代码',
name: 'NOTIFYPARTYCODE'
}, {
fieldLabel: '国家代码',
name: 'NOTIFYPARTYCOUNTRY'
}, {
fieldLabel: '电话',
name: 'NOTIFYPARTYTEL'
}, {
fieldLabel: '邮箱',
name: 'NOTIFYPARTYEMAIL'
}]
}]
}
]
}, {
xtype: 'container',
layout: 'anchor',
@ -3553,10 +3553,14 @@ this.storeConsignee.on('beforeload', function (store) {
if (data.CONSIGNEECODE.indexOf('+') < 0) data.CONSIGNEECODE = data.ENTERPRISECODETYPE1 + '+' + data.CONSIGNEECODE;
if (data.NOTIFYPARTYCODE.indexOf('+') < 0) data.NOTIFYPARTYCODE = data.ENTERPRISECODETYPE2 + '+' + data.NOTIFYPARTYCODE;
if (data.CUSTOMERNAME) {
var currcust = { CustName: data.CUSTOMERNAME, CodeAndName: data.CUSTOMERNAME }
this.storeCustCode.add(currcust);
}
this.formEdit.AGENTID = data.CONSIGNEECODE;
this.formEdit.AGENT = data.CONSIGNEENAME;
this.formEdit.getForm().setValues(data);
this.formcd.getForm().setValues(data);
@ -3568,7 +3572,9 @@ this.storeConsignee.on('beforeload', function (store) {
});
} else {
}
else {
Ext.Ajax.request({
waitMsg: '正在查询主表数据...',
@ -3592,6 +3598,11 @@ this.storeConsignee.on('beforeload', function (store) {
data = result.data;
if (data.CUSTOMERNAME) {
var currcust = { CustName: data.CUSTOMERNAME, CodeAndName: data.CUSTOMERNAME }
this.storeCustCode.add(currcust);
}
this.formEdit.getForm().reset();
this.formEdit.getForm().setValues(data);
@ -5013,38 +5024,38 @@ this.storeConsignee.on('beforeload', function (store) {
var CUSTOMERNAME = this.MainEditRecord.CUSTOMERNAME;
this.storeShipper.load({ params: { condition: "shippertype=2 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
callback: function (r, options, success) {
if (success) {
this.formEdit.getForm().findField('SHIPPERID').setValue(data.SHIPPERID);
}
},
scope: this
});
this.storeConsignee.load({ params: { condition: "shippertype=1 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
callback: function (r, options, success) {
if (success) {
this.formEdit.getForm().findField('CONSIGNEEID').setValue(data.CONSIGNEEID);
}
},
scope: this
});
this.storenotifyparty.load({ params: { condition: "shippertype=3 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
callback: function (r, options, success) {
if (success) {
this.formEdit.getForm().findField('NOTIFYPARTYID').setValue(data.NOTIFYPARTYID);
}
},
scope: this
});
this.storeagent.load({ params: { condition: "shippertype=4 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
callback: function (r, options, success) {
if (success) {
this.formEdit.getForm().findField('AGENTID').setValue(data.AGENTID);
}
},
scope: this
});
//this.storeShipper.load({ params: { condition: "shippertype=2 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
// callback: function (r, options, success) {
// if (success) {
// this.formEdit.getForm().findField('SHIPPERID').setValue(data.SHIPPERID);
// }
// },
// scope: this
//});
//this.storeConsignee.load({ params: { condition: "shippertype=1 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
// callback: function (r, options, success) {
// if (success) {
// this.formEdit.getForm().findField('CONSIGNEEID').setValue(data.CONSIGNEEID);
// }
// },
// scope: this
//});
//this.storenotifyparty.load({ params: { condition: "shippertype=3 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
// callback: function (r, options, success) {
// if (success) {
// this.formEdit.getForm().findField('NOTIFYPARTYID').setValue(data.NOTIFYPARTYID);
// }
// },
// scope: this
//});
//this.storeagent.load({ params: { condition: "shippertype=4 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
// callback: function (r, options, success) {
// if (success) {
// this.formEdit.getForm().findField('AGENTID').setValue(data.AGENTID);
// }
// },
// scope: this
//});

@ -13312,10 +13312,7 @@ Ext.extend(Shipping.MsOpSeaeEdit, Ext.Panel, {
// memberbody.set("BSNO", '*');
// memberbody.commit();
// };
// } else {
// }
// }
// },

@ -8665,7 +8665,7 @@ Ext.extend(Shipping.MsOpSeaeIndex, Ext.Panel, {
var MblNo = form.findField('MblNo').getValue();
MblNo = MblNo.trim();
sql = sql + getAndConSql(sql, MblNo, "(B.MblNo like '%" + MblNo + "%' or B.CONTRACTNO like '%" + MblNo + "%' or B.CUSTNO like '%" + MblNo + "%' or B.HBLNO like '%"
+ MblNo + "%' or B.ORDERNO like '%" + MblNo + "%' or B.APPLYNO like '%" + MblNo + "%' or B.SERVICECONTRACTNO like '%" + MblNo + "%' or exists (select 1 from crm_seaeorder where ORDNO like '%" + MblNo +"%' and BSNO= OP_SEAE.BSNO) )");
+ MblNo + "%' or B.ORDERNO like '%" + MblNo + "%' or B.APPLYNO like '%" + MblNo + "%' or B.SERVICECONTRACTNO like '%" + MblNo + "%' or exists (select 1 from crm_seaeorder where ORDNO like '%" + MblNo +"%' and BSNO= B.BSNO) )");
var HblNo = form.findField('HblNo').getValue();

@ -4024,6 +4024,25 @@ Ext.extend(Shipping.MsSeaeOrderEdit, Ext.Panel, {
this.LoadInit(data);
if (data.SHIPPERID) {
//name: 'SHIPPERID',
// valueField: 'SHORTNAME',
// displayField: 'CodeAndName',
var currSHIPPERID = { SHORTNAME: data.SHIPPERID, CodeAndName: data.SHIPPERID }
this.storeShipper.add(currSHIPPERID);
}
if (data.CONSIGNEEID) {
var currCONSIGNEEID = { SHORTNAME: data.CONSIGNEEID, CodeAndName: data.CONSIGNEEID }
this.storeConsignee.add(currCONSIGNEEID);
}
if (data.NOTIFYPARTYID) {
var currNOTIFYPARTYID = { SHORTNAME: data.NOTIFYPARTYID, CodeAndName: data.NOTIFYPARTYID }
this.storenotifyparty.add(currNOTIFYPARTYID);
}
this.formHead.getForm().reset();
this.formHead.getForm().setValues(data);
this.formEdit.getForm().reset();

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

@ -887,7 +887,7 @@
<publishTime>07/30/2022 22:51:42</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/Chfee_recvapplication/ChRecvapplicationIndex.js">
<publishTime>08/13/2022 22:57:36</publishTime>
<publishTime>08/14/2022 22:26:01</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/Chfee_recvapplication/ChRecvapplicationModel.js">
<publishTime>08/13/2022 22:57:36</publishTime>
@ -929,7 +929,7 @@
<publishTime>07/30/2022 22:51:42</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/Chfee_settlement/ChPaysettlementIndex.js">
<publishTime>08/13/2022 22:57:36</publishTime>
<publishTime>08/14/2022 22:26:48</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/Chfee_settlement/ChRecvAppBLsettlementEdit.js">
<publishTime>07/30/2022 22:51:42</publishTime>
@ -947,7 +947,7 @@
<publishTime>07/30/2022 22:51:42</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/Chfee_settlement/ChRecvsettlementIndex.js">
<publishTime>08/13/2022 22:57:36</publishTime>
<publishTime>08/14/2022 22:38:05</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/Chfee_settlement/ChSettlementModel.js">
<publishTime>08/13/2022 22:57:36</publishTime>
@ -989,10 +989,10 @@
<publishTime>07/07/2022 21:30:22</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/Chfee_settlement/Zi_en-us.js">
<publishTime>08/13/2022 22:57:36</publishTime>
<publishTime>08/14/2022 22:24:40</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/Chfee_settlement/Zi_zh-cn.js">
<publishTime>08/13/2022 22:57:36</publishTime>
<publishTime>08/14/2022 22:24:29</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/ChMonthClose/Index.js">
<publishTime>07/07/2022 21:30:21</publishTime>
@ -7718,7 +7718,7 @@
<publishTime>07/07/2022 21:30:25</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsOpSeae/MsOpBillLSEdit.js">
<publishTime>08/13/2022 22:37:37</publishTime>
<publishTime>08/14/2022 21:48:13</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsOpSeae/MsOpBillLSEditIndex.js">
<publishTime>07/30/2022 22:51:42</publishTime>
@ -7751,7 +7751,7 @@
<publishTime>07/07/2022 21:30:25</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsOpSeae/MsOpSeaeEdit.js">
<publishTime>08/13/2022 22:57:36</publishTime>
<publishTime>08/14/2022 21:31:23</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsOpSeae/MsOpSeaeEditView.js">
<publishTime>08/13/2022 20:06:55</publishTime>
@ -7772,7 +7772,7 @@
<publishTime>07/30/2022 22:51:42</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsOpSeae/MsOpSeaeIndex.js">
<publishTime>08/13/2022 19:28:43</publishTime>
<publishTime>08/14/2022 22:19:32</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsOpSeae/MsOpSeaeModel.js">
<publishTime>08/06/2022 07:38:12</publishTime>
@ -8519,7 +8519,7 @@
<publishTime>08/13/2022 22:57:36</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsSeaeOrder/MsSeaeOrderEdit.js">
<publishTime>08/14/2022 10:38:07</publishTime>
<publishTime>08/14/2022 21:53:21</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsSeaeOrder/MsSeaeOrderIndex.js">
<publishTime>08/14/2022 10:55:45</publishTime>
@ -12815,10 +12815,10 @@
<publishTime>07/07/2022 21:30:18</publishTime>
</File>
<File Include="bin/App_global.asax.compiled">
<publishTime>08/14/2022 16:19:01</publishTime>
<publishTime>08/14/2022 22:47:39</publishTime>
</File>
<File Include="bin/App_global.asax.dll">
<publishTime>08/14/2022 16:19:01</publishTime>
<publishTime>08/14/2022 22:47:39</publishTime>
</File>
<File Include="bin/AspNetPager.dll">
<publishTime>07/30/2022 22:51:42</publishTime>
@ -12869,28 +12869,28 @@
<publishTime>07/30/2022 22:51:42</publishTime>
</File>
<File Include="bin/DSWeb.Common.dll">
<publishTime>08/14/2022 15:50:03</publishTime>
<publishTime>08/14/2022 18:33:04</publishTime>
</File>
<File Include="bin/DSWeb.Common.dll.config">
<publishTime>07/07/2022 21:30:20</publishTime>
</File>
<File Include="bin/DSWeb.Common.pdb">
<publishTime>08/14/2022 15:50:03</publishTime>
<publishTime>08/14/2022 18:33:04</publishTime>
</File>
<File Include="bin/DSWeb.dll">
<publishTime>08/14/2022 16:18:47</publishTime>
<publishTime>08/14/2022 22:47:19</publishTime>
</File>
<File Include="bin/DSWeb.Interface.dll">
<publishTime>08/14/2022 15:50:03</publishTime>
<publishTime>08/14/2022 18:33:04</publishTime>
</File>
<File Include="bin/DSWeb.Interface.pdb">
<publishTime>08/14/2022 15:50:03</publishTime>
<publishTime>08/14/2022 18:33:04</publishTime>
</File>
<File Include="bin/DSWeb.pdb">
<publishTime>08/14/2022 16:18:47</publishTime>
<publishTime>08/14/2022 22:47:19</publishTime>
</File>
<File Include="bin/DSWeb.XmlSerializers.dll">
<publishTime>08/14/2022 16:18:47</publishTime>
<publishTime>08/14/2022 22:47:19</publishTime>
</File>
<File Include="bin/DSWebComponent.dll">
<publishTime>08/13/2022 23:01:21</publishTime>
@ -17522,7 +17522,7 @@
<publishTime>07/07/2022 21:30:29</publishTime>
</File>
<File Include="PrecompiledApp.config">
<publishTime>08/14/2022 16:18:56</publishTime>
<publishTime>08/14/2022 22:47:32</publishTime>
</File>
<File Include="PriceCarrier/CrmPriceCarrierInfo.aspx">
<publishTime>07/07/2022 21:30:29</publishTime>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.
Loading…
Cancel
Save