From bfc71b2cf359bad53e78921c915cf42a38de1ab1 Mon Sep 17 00:00:00 2001
From: yxj <yxj@hz-kingdee.com>
Date: 星期三, 07 八月 2024 16:33:46 +0800
Subject: [PATCH] 凯贝浪潮客户标签生成模块修改
---
WarM/条码打印/Gy_CusBarCodeBill_KaiBei.cs | 140 ++++++++++++++++++++--------------------------
WebAPI/Web.config | 4
WarM/条码打印/Gy_CusBarCodeBill_KaiBei.designer.cs | 17 +++--
3 files changed, 71 insertions(+), 90 deletions(-)
diff --git "a/WarM/\346\235\241\347\240\201\346\211\223\345\215\260/Gy_CusBarCodeBill_KaiBei.cs" "b/WarM/\346\235\241\347\240\201\346\211\223\345\215\260/Gy_CusBarCodeBill_KaiBei.cs"
index ae8941a..bc5cde2 100644
--- "a/WarM/\346\235\241\347\240\201\346\211\223\345\215\260/Gy_CusBarCodeBill_KaiBei.cs"
+++ "b/WarM/\346\235\241\347\240\201\346\211\223\345\215\260/Gy_CusBarCodeBill_KaiBei.cs"
@@ -41,26 +41,27 @@
public const Int16 HCode1Col = 20;
public const Int16 HCode2Col = 21;
public const Int16 HCode3Col = 22;
- public const Int16 HQtyCol = 23;
- public const Int16 HMinQtyCol = 24;
- public const Int16 HBQtyCol = 25;
- public const Int16 HProduceDateCol = 26;
- public const Int16 HExpiryDateCol = 27;
- public const Int16 HCusIDCol = 28;
- public const Int16 HCusNumberCol = 29;
- public const Int16 HCusNameCol = 30;
- public const Int16 HSourceInterIDCol = 31;
- public const Int16 HSourceEntryIDCol = 32;
- public const Int16 HSourceBillNoCol = 33;
- public const Int16 HSourceBillTypeCol = 34;
- public const Int16 HRemarkCol = 35;
- public const Int16 HInitQtyCol = 36;
- public const Int16 HMTONoCol = 37;
- public const Int16 HISKFPERIODCol = 38;
- public const Int16 HEXPUNITCol = 39;
- public const Int16 HEXPPERIODCol = 40;
- public const Int16 HLSHCol = 41;
- public const Int16 HBaNoCol = 42;
+ public const Int16 HInnerBillNoCol = 23;
+ public const Int16 HQtyCol = 24;
+ public const Int16 HMinQtyCol = 25;
+ public const Int16 HBQtyCol = 26;
+ public const Int16 HProduceDateCol = 27;
+ public const Int16 HExpiryDateCol = 28;
+ public const Int16 HCusIDCol = 29;
+ public const Int16 HCusNumberCol = 30;
+ public const Int16 HCusNameCol = 31;
+ public const Int16 HSourceInterIDCol = 32;
+ public const Int16 HSourceEntryIDCol = 33;
+ public const Int16 HSourceBillNoCol = 34;
+ public const Int16 HSourceBillTypeCol = 35;
+ public const Int16 HRemarkCol = 36;
+ public const Int16 HInitQtyCol = 37;
+ public const Int16 HMTONoCol = 38;
+ public const Int16 HISKFPERIODCol = 39;
+ public const Int16 HEXPUNITCol = 40;
+ public const Int16 HEXPPERIODCol = 41;
+ public const Int16 HLSHCol = 42;
+ public const Int16 HBaNoCol = 43;
//
public string ModName = "85";
public string ModCaption = "瀹㈡埛鏍囩鐢熸垚";
@@ -74,8 +75,7 @@
public bool grdStatus;
public int selectRow = 0;
public Int64 HInterID = 0; //鍐呯爜
- public Int64 HOrgID = -1;
- public string HOrgNumber = "";
+ public Int64 HOrgID = ClsPub.HOrgID;
public string HCusModel = "Z"; //鍘傚晢浠g爜
public string sDate = ""; //鏃ユ湡
public string sYear = ""; //骞�
@@ -95,15 +95,15 @@
cmbHBarCodeType.Items.Add("澶栫鐮�");
//婧愬崟绫诲瀷
cmbSourceBillType.Items.Add("鐢熶骇姹囨姤鍗�");
- //
+
DBUtility.Xt_BaseBillFun.Sub_ClearBill(gbUp);
- //鑾峰彇缁勭粐
+ //鑾峰彇褰撳墠缁勭粐
DataSet Ds1 = oCn.RunProcReturn("select * from Xt_ORGANIZATIONS with(nolock) where HItemID=" + ClsPub.HOrgID, "Xt_ORGANIZATIONS", ref DBUtility.ClsPub.sExeReturnInfo);
if (Ds1.Tables[0].Rows.Count != 0)
{
cmbHOrgID.Text = DBUtility.ClsPub.isStrNull(Ds1.Tables[0].Rows[0]["HName"]);
}
- //
+
txtHMaker.Text = ClsPub.CurUserName;
txtHMakeDate.Text = "";
txtHChecker.Text = "";
@@ -255,22 +255,25 @@
MessageBox.Show("鑾峰彇缁勭粐澶辫触");
return;
}
+ cmbHOrgID.DataSource = null;
cmbHOrgID.Items.Clear();
- for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
- {
- cmbHOrgID.Items.Add(DBUtility.ClsPub.isStrNull(ds.Tables[0].Rows[i]["HName"]));
- }
+ cmbHOrgID.DataSource = ds.Tables[0];
+ cmbHOrgID.DisplayMember = "HName";
+ cmbHOrgID.ValueMember = "HItemID";
}
//鍔犺浇瀹㈡埛淇℃伅
private void Sub_AddHCusNameList()
{
- DataSet ds = oCn.RunProcReturn("exec h_p_Gy_CusBarCodeBill_Cus ", "h_p_Gy_CusBarCodeBill_Cus");
+ DataSet ds = oCn.RunProcReturn("exec h_p_Gy_CusBarCodeBill_Cus " + HOrgID.ToString(), "h_p_Gy_CusBarCodeBill_Cus");
if (ds == null || ds.Tables[0].Rows.Count == 0)
{
+ cmbHCusName.DataSource = null;
+ cmbHCusName.Items.Clear();
MessageBox.Show("鑾峰彇瀹㈡埛淇℃伅澶辫触");
return;
}
+ cmbHCusName.DataSource = null;
cmbHCusName.Items.Clear();
cmbHCusName.DataSource = ds.Tables[0];
cmbHCusName.DisplayMember = "HName";
@@ -412,19 +415,7 @@
{
//鑾峰彇鍐呯爜
HInterID = DBUtility.ClsPub.CreateBillID_Prod(ModName, ref DBUtility.ClsPub.sExeReturnInfo);
- //鑾峰彇缁勭粐淇℃伅
- DAL.ClsGy_ORGANIZATIONS_View oClsGy_ORGANIZATIONS_View = new DAL.ClsGy_ORGANIZATIONS_View();
- HOrgNumber = "";
- if (oClsGy_ORGANIZATIONS_View.GetInfoByName(cmbHOrgID.Text))
- {
- HOrgID = oClsGy_ORGANIZATIONS_View.omodel.HItemID;
- HOrgNumber = DBUtility.ClsPub.isStrNull(oClsGy_ORGANIZATIONS_View.omodel.HNumber);
- }
- if (HOrgID == -1)
- {
- MessageBox.Show("閫夋嫨缁勭粐鏈夐敊璇紒");
- return false;
- }
+
lblCaption.Focus();
//鐢熸垚鏉$爜鍓嶆帶鍒�
if (!Sub_AllowSave())
@@ -575,10 +566,12 @@
string HCode3 = DBUtility.ClsPub.isStrNull(grdMain.Rows[j].Cells[HCode3Col].Value); // 鐗堟湰鍙�
string HBatchNoNumber = HCode1 + sYear + sPeriod + sDay + HCusModel; // 鎵规鐢熸垚鍓嶇紑
HBatchNoNumber = HBatchNoNumber.ToUpper();
+ string HBarCodeType = DBUtility.ClsPub.isStrNull(cmbHBarCodeType.Text); // 鏉$爜绫诲瀷
+ string HInnerBillNo = DBUtility.ClsPub.isStrNull(grdMain.Rows[j].Cells[HInnerBillNoCol].Value); // 瀹㈡埛璁㈠崟鍙�
if (HMaterID != 0)
{
- DataSet oDsCheck = oCn.RunProcReturn("exec h_p_Gy_CusBarCodeBill_AddCheck " + HSno.ToString() + ",'" + HSourceBillNo + "'," + HMaterID.ToString() + "," + HSourceQty.ToString() + "," + HQty.ToString() + "," + HMinQty.ToString() + ",'" + HCusModelName + "','" + HCode1 + "','" + HCode2 + "','" + HCode3 + "','" + HBatchNoNumber + "'", "h_p_Gy_CusBarCodeBill_AddCheck");
+ DataSet oDsCheck = oCn.RunProcReturn("exec h_p_Gy_CusBarCodeBill_AddCheck " + HSno.ToString() + ",'" + HSourceBillNo + "'," + HMaterID.ToString() + "," + HSourceQty.ToString() + "," + HQty.ToString() + "," + HMinQty.ToString() + ",'" + HCusModelName + "','" + HCode1 + "','" + HCode2 + "','" + HCode3 + "','" + HBatchNoNumber + "','" + HBarCodeType + "','" + HInnerBillNo + "'", "h_p_Gy_CusBarCodeBill_AddCheck");
//
if (oDsCheck == null && oDsCheck.Tables[0].Rows.Count == 0)
{
@@ -685,6 +678,7 @@
string HSourceBillType = "";//婧愬崟绫诲瀷
string HMTONo = ""; //MTO鍙�
string HRemark = ""; //澶囨敞
+ string HInnerBillNo = ""; //瀹㈡埛璁㈠崟鍙�
string HSno = ""; //鎵规搴忓垪鍙�
string HBoxNo = ""; //鎵规鐢熸垚鍓嶇紑
string sHBaNo = ""; //鐣岄潰涓婅緭鍏ョ殑鎵规浣�
@@ -768,15 +762,17 @@
HSourceBillType = ClsPub.isStrNull(grdMain.Rows[j].Cells[HSourceBillTypeCol].Value);
HRemark = ClsPub.isStrNull(grdMain.Rows[j].Cells[HRemarkCol].Value);
HMTONo = ClsPub.isStrNull(grdMain.Rows[j].Cells[HMTONoCol].Value);
+ HInnerBillNo = ClsPub.isStrNull(grdMain.Rows[j].Cells[HInnerBillNoCol].Value);
HCode1 = ClsPub.isStrNull(grdMain.Rows[j].Cells[HCode1Col].Value).ToUpper();
HCode2 = ClsPub.isStrNull(grdMain.Rows[j].Cells[HCode2Col].Value).ToUpper();
HCode3 = ClsPub.isStrNull(grdMain.Rows[j].Cells[HCode3Col].Value).ToUpper();
HSno = ClsPub.isStrNull(LSH);
HBoxNo = HCode1 + sYear + sPeriod + sDay + HCusModel;
HBoxNo = HBoxNo.ToUpper();
- sHBaNo = DBUtility.ClsPub.isStrNull(grdMain.Rows[j].Cells[HBaNoCol].Value); // 鐣岄潰涓婅緭鍏ョ殑鎵规浣�
+ sHBaNo = ClsPub.isStrNull(grdMain.Rows[j].Cells[HBaNoCol].Value); // 鐣岄潰涓婅緭鍏ョ殑鎵规浣�
- //瀹㈡埛鏂欏彿HCusModelName銆佺墿鏂欑被鍒獺Code1銆佹壒娆′綅HCode2銆佺増鏈彿HCode3銆佹壒娆″簭鍒楀彿HSno銆佹壒娆$敓鎴愬墠缂�HBoxNo銆佸巶鍟嗕唬鐮丠CusModel銆佺晫闈笂杈撳叆鐨勬壒娆′綅HSupName銆�36杩涘埗鎵规搴忓垪鍙稨SupNumber
+ //瀹㈡埛鏂欏彿HCusModelName銆佺墿鏂欑被鍒獺Code1銆佹壒娆′綅HCode2銆佺増鏈彿HCode3銆佹壒娆″簭鍒楀彿HSno銆佹壒娆$敓鎴愬墠缂�HBoxNo銆佸巶鍟嗕唬鐮丠CusModel
+ //鐣岄潰涓婅緭鍏ョ殑鎵规浣岺SupName銆�36杩涘埗鎵规搴忓垪鍙稨SupNumber銆佸鎴疯鍗曞彿HInnerBillNo
oCn.RunProc("insert into Gy_BarCodeBill_Cus" +
"(HInterID,HEntryID,HBillType,HBarCode,HBarCodeType" +
",HMaterID,HUnitID,HAuxPropID,HBatchNo,HQty" +
@@ -799,7 +795,7 @@
+ "," + HSourceInterID.ToString() + "," + HSourceEntryID.ToString() + ",'" + HSourceBillNo + "','" + HSourceBillType + "'"
+ ",0,'','" + HRemark + "'," + HOrgID.ToString() + "," + HOrgID.ToString()
+ ",'" + ClsPub.CurUserName + "',getdate(),'','','" + HMTONo + "'"
- + ",0,'','',''"
+ + ",0,'','','" + HInnerBillNo + "'"
+ ",'','','" + LSH2 + "','" + sHBaNo + "','" + HCode1 + "'"
+ ",'" + HCode2 + "','" + HCode3 + "','','" + HSno + "','" + HBoxNo + "')");
n = n + 1;
@@ -878,7 +874,7 @@
private void initGrid()
{
grdMain.RowCount = 0;
- grdMain.ColumnCount = 43; //鎬诲垪鏁�
+ grdMain.ColumnCount = 44; //鎬诲垪鏁�
DBUtility.Xt_BaseBillFun.initGridFst(grdMain, this.Name);
grdMain.Columns[HSnoCol].HeaderText = "搴忓彿";
grdMain.Columns[HMainIDCol].HeaderText = "婧愬崟涓籌D";
@@ -915,6 +911,7 @@
grdMain.Columns[HCode1Col].HeaderText = "鐗╂枡绫诲埆";
grdMain.Columns[HCode2Col].HeaderText = "鎵规浣�";
grdMain.Columns[HCode3Col].HeaderText = "鐗堟湰鍙�";
+ grdMain.Columns[HInnerBillNoCol].HeaderText = "瀹㈡埛璁㈠崟鍙�";
//鏍煎紡鍖� 闅愯棌鍒�
grdMain.Columns[HTagCol].Visible = false;
@@ -956,6 +953,7 @@
"," + HCode1Col.ToString() +
//"," + HCode2Col.ToString() +
"," + HCode3Col.ToString() +
+ "," + HInnerBillNoCol.ToString() +
"," + HRemarkCol.ToString();
//璁剧疆鍚堣鍒�
@@ -1030,19 +1028,7 @@
//甯姪鍑芥暟
private void Sub_GridKey(int sKeyCode, int sRow, int sCol, DataGridViewTextBoxEditingControl oEdit)
{
- long sHOrgID = -1;
string sWhere = "";
-
- DAL.ClsGy_ORGANIZATIONS_View oClsGy_ORGANIZATIONS_View = new DAL.ClsGy_ORGANIZATIONS_View();
- if (oClsGy_ORGANIZATIONS_View.GetInfoByName(cmbHOrgID.Text))
- {
- sHOrgID = oClsGy_ORGANIZATIONS_View.omodel.HItemID;
- }
- if (sHOrgID == -1)
- {
- MessageBox.Show("閫夋嫨缁勭粐鏈夐敊璇紒");
- return;
- }
DAL.ClsIF_Material_View oMater = new DAL.ClsIF_Material_View();//鐗╂枡
DAL.ClsIF_Unit_View oUnit = new DAL.ClsIF_Unit_View();//璁¢噺鍗曚綅
DAL.ClsIF_Property_View oProperty = new DAL.ClsIF_Property_View();//杈呭姪灞炴��
@@ -1060,7 +1046,7 @@
{
case HMaterNumberCol:
oMater.WherePart = "";
- sWhere = " and HUSEORGID = " + sHOrgID;
+ sWhere = " and HUSEORGID = " + HOrgID;
if (oMater.RefreshViewForBig(sWhere))
{
if (oMater.GetInfoByID(oMater.oModel.HItemID))
@@ -1272,17 +1258,6 @@
private void cmdSourceBillNo_Click(object sender, EventArgs e)
{
- DAL.ClsGy_ORGANIZATIONS_View oClsGy_ORGANIZATIONS_View = new DAL.ClsGy_ORGANIZATIONS_View();
- if (oClsGy_ORGANIZATIONS_View.GetInfoByName(cmbHOrgID.Text))
- {
- HOrgID = oClsGy_ORGANIZATIONS_View.omodel.HItemID;
- }
- if (HOrgID == -1)
- {
- MessageBox.Show("閫夋嫨缁勭粐鏈夐敊璇紒");
- return;
- }
-
if (cmbSourceBillType.Text.Trim() == "鐢熶骇姹囨姤鍗�")
{
string sWhere = " and HOrgID =" + HOrgID.ToString();
@@ -1365,6 +1340,7 @@
"," + HCode1Col.ToString() +
//"," + HCode2Col.ToString() +
"," + HCode3Col.ToString() +
+ "," + HInnerBillNoCol.ToString() +
"," + HRemarkCol.ToString();
grdMain.Columns[HBillNoCol].ReadOnly = true;
//璁剧疆鍚堣鍒�
@@ -1385,13 +1361,6 @@
{
if (e.KeyChar == (char)Keys.Return)//鍥炶溅甯﹀嚭婧愬崟淇℃伅
{
- long sHOrgID = -1;
- DAL.ClsGy_ORGANIZATIONS_View oClsGy_ORGANIZATIONS_View = new DAL.ClsGy_ORGANIZATIONS_View();
- if (oClsGy_ORGANIZATIONS_View.GetInfoByName(cmbHOrgID.Text))
- {
- sHOrgID = oClsGy_ORGANIZATIONS_View.omodel.HItemID;
- }
-
if (txtHSourceBillNo.Text.Length < 4)
{
MessageBox.Show("璇疯緭鍏�4浣嶄互涓婃暟鎹紒");
@@ -1401,7 +1370,7 @@
if (cmbSourceBillType.Text.Trim() == "鐢熶骇姹囨姤鍗�")
{
DAL.Cls_S_IF_ICMOReportBillList_CusBarCodeBill oIF_ICMOReportBillList = new DAL.Cls_S_IF_ICMOReportBillList_CusBarCodeBill();
- if (oIF_ICMOReportBillList.RefreshBySourceBillNo(" Where 鍗曟嵁鍙� like '%" + txtHSourceBillNo.Text + "' ")) //閫夋嫨鍘熷崟
+ if (oIF_ICMOReportBillList.RefreshBySourceBillNo(" Where 鍗曟嵁鍙� like '%" + txtHSourceBillNo.Text + "' and HOrgID =" + HOrgID.ToString())) //閫夋嫨鍘熷崟
{
FillSelectData(oIF_ICMOReportBillList.oBillSelectColl);
txtHSourceBillNo.Text = "";
@@ -1582,7 +1551,18 @@
#endregion
+ #region 閫夋嫨缁勭粐
+ private void cmbHOrgID_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ HOrgID = ClsPub.isLong(cmbHOrgID.SelectedValue);
+ //鍔犺浇瀹㈡埛淇℃伅
+ Sub_AddHCusNameList();
+ //娓呯┖鍒濆鍖栧垪琛�
+ initGrid();
+ grdMain.Columns[HBillNoCol].ReadOnly = false;
+ }
+ #endregion
diff --git "a/WarM/\346\235\241\347\240\201\346\211\223\345\215\260/Gy_CusBarCodeBill_KaiBei.designer.cs" "b/WarM/\346\235\241\347\240\201\346\211\223\345\215\260/Gy_CusBarCodeBill_KaiBei.designer.cs"
index 2177e46..404980e 100644
--- "a/WarM/\346\235\241\347\240\201\346\211\223\345\215\260/Gy_CusBarCodeBill_KaiBei.designer.cs"
+++ "b/WarM/\346\235\241\347\240\201\346\211\223\345\215\260/Gy_CusBarCodeBill_KaiBei.designer.cs"
@@ -46,6 +46,7 @@
this.tc = new System.Windows.Forms.ToolStripButton();
this.lblCaption = new System.Windows.Forms.Label();
this.P1 = new System.Windows.Forms.Panel();
+ this.pb1 = new System.Windows.Forms.ProgressBar();
this.pic1 = new System.Windows.Forms.PictureBox();
this.gbUp = new System.Windows.Forms.GroupBox();
this.cmbHCusName = new System.Windows.Forms.ComboBox();
@@ -93,7 +94,6 @@
this.tabPage1 = new System.Windows.Forms.TabPage();
this.grdMain = new System.Windows.Forms.DataGridView();
this.tabControl1 = new System.Windows.Forms.TabControl();
- this.pb1 = new System.Windows.Forms.ProgressBar();
this.Tool.SuspendLayout();
this.P1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pic1)).BeginInit();
@@ -299,6 +299,13 @@
this.P1.Size = new System.Drawing.Size(937, 137);
this.P1.TabIndex = 31;
//
+ // pb1
+ //
+ this.pb1.Location = new System.Drawing.Point(76, 12);
+ this.pb1.Name = "pb1";
+ this.pb1.Size = new System.Drawing.Size(256, 23);
+ this.pb1.TabIndex = 93;
+ //
// pic1
//
this.pic1.Location = new System.Drawing.Point(313, 3);
@@ -379,6 +386,7 @@
this.cmbHOrgID.Name = "cmbHOrgID";
this.cmbHOrgID.Size = new System.Drawing.Size(188, 20);
this.cmbHOrgID.TabIndex = 85;
+ this.cmbHOrgID.SelectionChangeCommitted += new System.EventHandler(this.cmbHOrgID_SelectionChangeCommitted);
//
// label3
//
@@ -820,13 +828,6 @@
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(937, 300);
this.tabControl1.TabIndex = 47;
- //
- // pb1
- //
- this.pb1.Location = new System.Drawing.Point(76, 12);
- this.pb1.Name = "pb1";
- this.pb1.Size = new System.Drawing.Size(256, 23);
- this.pb1.TabIndex = 93;
//
// Gy_CusBarCodeBill_KaiBei
//
diff --git a/WebAPI/Web.config b/WebAPI/Web.config
index b35ef1b..62e9402 100644
--- a/WebAPI/Web.config
+++ b/WebAPI/Web.config
@@ -22,7 +22,7 @@
<!--<add key="FileIP" value="http://localhost:8082/LuBaoAPI"/>-->
<!--<add key="FileIP" value="http://localhost:8080/" />-->
<!--<add key="sUrl" value="http://183.129.128.86:9090/WEBS-WMSTest/WebService1.asmx"/> -->
- <!--<add key="sUrl" value="http://192.168.0.81/WEBS-WMS/WebService1.asmx"/>--><!--棰滃彴寮忔満-->
+ <add key="sUrl" value="http://192.168.0.81/WEBS-WMS/WebService1.asmx"/><!--棰滃彴寮忔満-->
<!--<add key="sUrl" value="http://60.190.4.42:9003/WebService/WebService1.asmx" /> 澶忓疂-->
<!--<add key="sUrl" value="http://60.190.4.42:9003/WebService/WebService1.asmx" /> -->
<!--<add key="sUrl" value="http://10.10.130.181/WEBS-WMS/WebService1.asmx"/> 鍗氭棩绉戞妧-->
@@ -35,7 +35,7 @@
<!--<add key="sUrl" value="http://47.96.97.237/WEBS-WMS/WebService1.asmx"/> --> <!--娴嬭瘯鏈嶅姟鍣�-->
<!--<add key="surl" value="http://localhost:8082/webs/webservice1.asmx"/> 鏈湴-->
<!--<add key="sUrl" value="http://192.168.110.57:81/WEBS/WebService1.asmx"/>--> <!--闄堥洴闈欐湰鍦伴厤缃�-->
- <add key="surl" value="http://localhost/webs-web/webservice1.asmx"/> <!--缈佹稕娑涙湰鍦伴厤缃�-->
+ <!--<add key="surl" value="http://localhost/webs-web/webservice1.asmx"/>--> <!--缈佹稕娑涙湰鍦伴厤缃�-->
<!--<add key="sUrl" value="http://192.168.1.57:8082/WEBS-WMS/WebService1.asmx"/>涔濊彵-->
<!--<add key="sUrl" value="http://61.130.182.102:18181/WEBSCS/WebService1.asmx"/>--><!--鏂帿灏�-->
--
Gitblit v1.9.1