From 05909b4ca845d54ade85c8d2a91340bfafd0c58b Mon Sep 17 00:00:00 2001
From: cdk <2441919651@qq.com>
Date: 星期五, 19 十二月 2025 21:32:53 +0800
Subject: [PATCH] 增加一键调拨

---
 H5/Yjdb.aspx.cs |   14 +
 H5/Js/Dbrk.js   |    6 
 H5/Yjdb.aspx    |  164 ++++++++++++++
 H5/Js/Dbck.js   |   91 ++++----
 H5/Js/Yjdb.js   |  341 +++++++++++++++++++++++++++++++
 5 files changed, 569 insertions(+), 47 deletions(-)

diff --git a/H5/Js/Dbck.js b/H5/Js/Dbck.js
index 6eac1c9..37e9047 100644
--- a/H5/Js/Dbck.js
+++ b/H5/Js/Dbck.js
@@ -11,7 +11,7 @@
             num: "",
             fum: "",
             billNo: "",
-            barcode:"",
+            barcode: "",
 
             ItemBlDetail: [], // 寰呮壂
             ItemYsDetail: [], // 宸叉壂
@@ -35,56 +35,56 @@
         };
     },
     methods: {
-            handleRowClick(item, index) {
-                if (this.isLoading) {
-                    return;
-                }
+        handleRowClick(item, index) {
+            if (this.isLoading) {
+                return;
+            }
 
-                // 閲嶇疆鎵�鏈夎鐨勯�変腑鐘舵��
-                this.currentIndex = -1;
+            // 閲嶇疆鎵�鏈夎鐨勯�変腑鐘舵��
+            this.currentIndex = -1;
 
-                // 璁剧疆褰撳墠閫変腑琛�
-                this.currentIndex = index;
-                this.selItem = {
-                    itemid: item.itemId,
-                    index: index
-                };
+            // 璁剧疆褰撳墠閫変腑琛�
+            this.currentIndex = index;
+            this.selItem = {
+                itemid: item.itemId,
+                index: index
+            };
 
-                console.log('褰撳墠閫変腑椤�:', this.selItem); // 璋冭瘯鐢�
+            console.log('褰撳墠閫変腑椤�:', this.selItem); // 璋冭瘯鐢�
 
-                this.GetBarKwByItem();
-                //this.active = 1;            //鑷姩鍒囨崲鍒板簱浣嶅垪琛╰ab
-            },
-            GetBarKwByItem() {
+            this.GetBarKwByItem();
+            //this.active = 1;            //鑷姩鍒囨崲鍒板簱浣嶅垪琛╰ab
+        },
+        GetBarKwByItem() {
 
-                var that = this;
-                that.isLoading = true;
-                that.AxiosHttp("post", 'Womdaa/GetBarKwByItemCK', {
-                    itemId: that.selItem.itemid,
-                    userName: that.userInfo.loginAccount,
-                    type: 'DBCK',//璋冩嫧鍑哄簱
-                    billNo: that.billNo
-                }, false)
-                    .then(function (res) {
-                        var json = res;
-                        if (json.status == 0) {
-                            that.ItemBarKw = json.data.tbBillList;
-                        }
-                        else {
-                            that.$toast.fail(json.message);
-                            that.$playSound('error');
-                            that.ItemBarKw = [];
-                        }
-                        that.isLoading = false;
-                    })
-                    .catch(function (error) {
-                        that.isLoading = false;
-                        that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+            var that = this;
+            that.isLoading = true;
+            that.AxiosHttp("post", 'Womdaa/GetBarKwByItemCK', {
+                itemId: that.selItem.itemid,
+                userName: that.userInfo.loginAccount,
+                type: 'DBCK',//璋冩嫧鍑哄簱
+                billNo: that.billNo
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+                        that.ItemBarKw = json.data.tbBillList;
+                    }
+                    else {
+                        that.$toast.fail(json.message);
                         that.$playSound('error');
-                        console.log(error);
                         that.ItemBarKw = [];
-                    });
-            },
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    that.$playSound('error');
+                    console.log(error);
+                    that.ItemBarKw = [];
+                });
+        },
         getInfo() {
             this.show = true;
 
@@ -148,6 +148,9 @@
                         that.ItemYsDetail = tbBillList.ysDetails || []; // 宸叉壂
                         that.$refs.barcode.focus();
                         that.barcode = "";
+                        // 閲嶇疆搴撲綅鏌ヨ涓墍鏈夎鐨勯�変腑鐘舵��
+                        that.currentIndex = -1;
+                        that.ItemBarKw = [];
                     }
                     else {
                         that.$toast.fail(json.message);
diff --git a/H5/Js/Dbrk.js b/H5/Js/Dbrk.js
index 7cc93b8..cc68df3 100644
--- a/H5/Js/Dbrk.js
+++ b/H5/Js/Dbrk.js
@@ -11,8 +11,8 @@
             num: "",
             billNo: "",
             barcode: "",
-            sectionCode:"",
-            ItemBlDetail:[],
+            sectionCode: "",
+            ItemBlDetail: [],
             modeInfo: [],
             active: 0,
             show: false,
@@ -209,7 +209,7 @@
                 });
         },
         tmcf() {
-            
+
         }
     }
 })
\ No newline at end of file
diff --git a/H5/Js/Yjdb.js b/H5/Js/Yjdb.js
new file mode 100644
index 0000000..db3125c
--- /dev/null
+++ b/H5/Js/Yjdb.js
@@ -0,0 +1,341 @@
+锘縱ar vm = new Vue({
+    el: '#app',
+    data: function () {
+        return {
+            isLoading: false,
+            userInfo: {
+                "loginGuid": '',
+                "loginAccount": '',
+            },
+            itemNo: "",
+            num: "",
+            fum: "",
+            billNo: "",
+            barcode:"",
+
+            ItemBlDetail: [], // 寰呮壂
+            ItemYsDetail: [], // 宸叉壂
+            ItemDetail: [],
+            ItemBarKw: [],
+            currentIndex: -1,
+
+            modeInfo: [],
+            active: 0,
+            show: false,
+            actions: [],
+            ItemDetail: [],
+            scanInfo: { barcodeNum: "", splitNum: "", barcode: "" },
+            sectionCode:"",
+        }
+    },
+    mounted() {
+        var that = this;
+        this.userInfo = {
+            loginGuid: this.GetLoginInfor().loginGuid,
+            loginAccount: this.GetLoginInfor().loginAccount,
+        };
+    },
+    methods: {
+            handleRowClick(item, index) {
+                if (this.isLoading) {
+                    return;
+                }
+
+                // 閲嶇疆鎵�鏈夎鐨勯�変腑鐘舵��
+                this.currentIndex = -1;
+
+                // 璁剧疆褰撳墠閫変腑琛�
+                this.currentIndex = index;
+                this.selItem = {
+                    itemid: item.itemId,
+                    index: index
+                };
+
+                console.log('褰撳墠閫変腑椤�:', this.selItem); // 璋冭瘯鐢�
+
+                this.GetBarKwByItem();
+                //this.active = 1;            //鑷姩鍒囨崲鍒板簱浣嶅垪琛╰ab
+            },
+            GetBarKwByItem() {
+
+                var that = this;
+                that.isLoading = true;
+                that.AxiosHttp("post", 'Womdaa/GetBarKwByItemCK', {
+                    itemId: that.selItem.itemid,
+                    userName: that.userInfo.loginAccount,
+                    type: 'DBCK',//璋冩嫧鍑哄簱
+                    billNo: that.billNo
+                }, false)
+                    .then(function (res) {
+                        var json = res;
+                        if (json.status == 0) {
+                            that.ItemBarKw = json.data.tbBillList;
+                        }
+                        else {
+                            that.$toast.fail(json.message);
+                            that.$playSound('error');
+                            that.ItemBarKw = [];
+                        }
+                        that.isLoading = false;
+                    })
+                    .catch(function (error) {
+                        that.isLoading = false;
+                        that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                        that.$playSound('error');
+                        console.log(error);
+                        that.ItemBarKw = [];
+                    });
+            },
+        getInfo() {
+            this.show = true;
+
+            var that = this;
+            that.isLoading = true;
+            that.AxiosHttp("post", 'TransferOut/GetTransferOutNoList', {
+                //name: that.userInfo.loginAccount,
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+
+                        if (json.data.tbBillList.length == 0) {
+                            that.$toast.fail("娌℃湁鎵惧埌鍙互閫夋嫨鐨勫嚭搴撳崟鍙�");
+                        }
+
+                        that.actions = json.data.tbBillList.map(item => {
+                            return { name: item }
+                        });
+                    }
+                    else {
+                        that.$toast.fail(json.message);
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    console.log(error);
+                });
+        },
+        onClick(index, title) {
+            this.$toast(`${index} ${title}`);
+            //this.$notify({ type: 'success', message: '鏌愭煇鐗╂枡鎵爜鎴愬姛鏌愭煇鐗╂枡鎵爜鎴愬姛鏌愭煇鐗╂枡鎵爜鎴愬姛鏌愭煇鐗╂枡鎵爜鎴愬姛' });
+
+        },
+        onSelect(item) {
+            // 榛樿鎯呭喌涓嬬偣鍑婚�夐」鏃朵笉浼氳嚜鍔ㄦ敹璧�
+            // 鍙互閫氳繃 close-on-click-action 灞炴�у紑鍚嚜鍔ㄦ敹璧�
+            this.show = false;
+
+            this.billNo = item.name;
+            // 娓呯┖搴撲綅鍒楄〃
+            this.ItemBarKw = [];
+            this.GetMesItemBlDetailByBillNo();
+            //this.$toast(item.name);
+
+        },
+        GetMesItemBlDetailByBillNo() {
+            var that = this;
+            that.isLoading = true;
+            that.AxiosHttp("post", 'TransferOut/GetTransferOutDetailListByBillNo', {
+                billNo: that.billNo
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+                        //that.ItemDetail = json.data.tbBillList;
+                        var tbBillList = json.data.tbBillList || {};
+                        that.ItemBlDetail = tbBillList.blDetails || []; // 寰呮壂
+                        that.ItemYsDetail = tbBillList.ysDetails || []; // 宸叉壂
+                        that.$refs.barcode.focus();
+                        that.barcode = "";
+                        var firstItemInKw = tbBillList.allList[0].inKw;
+                        if (firstItemInKw !== null && firstItemInKw !== '') {
+                            that.sectionCode = firstItemInKw;
+                        }
+                        // 閲嶇疆搴撲綅鏌ヨ涓墍鏈夎鐨勯�変腑鐘舵��
+                        that.currentIndex = -1;
+                        that.ItemBarKw = [];
+                    }
+                    else {
+                        that.$toast.fail(json.message);
+                        that.$refs.billNo.focus();
+                        that.billNo = "";
+                        that.ItemDetail = null;
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    that.$refs.billNo.focus();
+                    that.billNo = "";
+                    that.ItemBlDetail = null;
+                    //console.log(error);
+                });
+        },
+        getScan() {
+
+            //this.barcode = value;
+
+            var that = this;
+            that.isLoading = true;
+
+            if (!that.userInfo.loginAccount) {
+                this.$toast.fail("璇烽噸鏂版鏌ョ櫥褰曠姸鎬�");
+                that.isLoading = false;
+                return;
+            }
+
+            if (!that.barcode) {
+                this.$toast.fail("鏉$爜涓嶈兘涓虹┖");
+                that.isLoading = false;
+                return;
+            }
+
+            if (!that.billNo) {
+                this.$toast.fail("鐢宠鍗曞彿涓嶈兘涓虹┖");
+                that.isLoading = false;
+                return;
+            }
+
+            that.AxiosHttp("post", 'TransferOut/ScanYjdb', {
+                userName: that.userInfo.loginAccount,
+                barcode: that.barcode,
+                billNo: that.billNo,
+                sectionCode: that.sectionCode,
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+
+                        //that.itemNo = json.data.tbBillList.itemNo;
+                        ////that.num = json.data.form.num;
+                        ////that.fum = json.data.form.fum;
+                        //that.ItemBlDetail = json.data.items
+                        that.$notify({ type: 'success', message: '鎵爜鎴愬姛' });
+                        that.$toast.success("鎵弿鎴愬姛");
+                        that.$refs.barcode.focus();
+                        that.barcode = "";
+                        //that.GetMesItemBlDetailByBillNo();
+                        that.GetMesItemBlDetailByBillNo();
+                    }
+                    else if (json.status == 2) {
+                        that.itemNo = json.data.tbBillList.itemNo;
+                        that.$refs.splitNum.focus();
+                        that.scanInfo.splitNum = json.data.tbBillList.splitNum;
+                        that.scanInfo.barcodeNum = json.data.tbBillList.barcodeNum;
+                    }
+                    else {
+                        that.$toast.fail(json.message);
+                        that.$refs.barcode.focus();
+                        that.barcode = "";
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    //console.log(error);
+                    that.$refs.barcode.focus();
+                    that.barcode = "";
+                });
+        },
+        getChaiFen() {
+            //this.isPrinterPopupVisible = true; // 鏄剧ず寮圭獥
+
+            if (this.isLoading) {
+                return;
+            }
+
+            var that = this;
+            if (that.billNo.length <= 0) {
+                that.$toast.fail("鐢宠鍗曞彿涓嶈兘涓虹┖锛�");
+                return;
+            }
+            if (that.scanInfo.splitNum * 1 <= 0) {
+                that.$toast.fail("鎷嗗垎鏁伴噺涓嶈兘涓虹┖锛�");
+                return;
+            }
+            if (that.barcode.length * 1 <= 0) {
+                that.$toast.fail("鐗╂枡鏉$爜涓嶈兘涓虹┖锛�");
+                return;
+            }
+            //that.ip = "";
+            //that.prot = "";
+            //that.getPrintInfo();
+
+            //if (that.ip.length <= 0 || that.prot.length <= 0) {
+            //    alert(that.ip);
+            //    alert(that.prot);
+            //    return;
+            //}
+
+            that.isLoading = true;
+            that.AxiosHttp("post", 'TransferOut/ScanYjdbCF', {
+                daa001: that.billNo,
+                userName: that.userInfo.loginAccount,
+                barcode: that.barcode,
+                Num: that.scanInfo.splitNum,
+                sectionCode: that.sectionCode,
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+                        //  that.modeInfo = json.data.tbBillList;
+                        that.scanInfo.splitNum = null;
+                        that.scanInfo.barcodeNum = null;
+                        that.scanInfo.barcode = null;
+                        that.$notify({ type: 'success', message: json.message });
+                        that.$playSound('success');
+
+                        that.sendPrintMessage(json.data.tbBillList);
+
+                        that.$refs.barcode.focus();
+                        that.barcode = "";
+                        //that.GetMesItemBlDetailByBillNo();
+                        that.GetMesItemBlDetailByBillNo();
+                    }
+                    else {
+                        that.$toast.fail(json.message);
+                        that.$playSound('error');
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    that.$playSound('error');
+                });
+        },
+        getKwInfo() {
+            var that = this;
+            that.isLoading = true;
+            that.AxiosHttp("post", 'MesDepotSections/GetSectionName', {
+                sectionCode: that.sectionCode
+            }, false)
+                .then(function (res) {
+                    var json = res;
+                    if (json.status == 0) {
+                        that.depotData = json.data.tbBillList;
+                        that.$refs.barcode.focus();
+                    }
+                    else {
+                        that.$toast.fail(json.message);
+                        that.$playSound('error');
+                        that.depotData = [];
+                        that.sectionCode = "";
+                    }
+                    that.isLoading = false;
+                })
+                .catch(function (error) {
+                    that.isLoading = false;
+                    that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
+                    that.$playSound('error');
+                    that.depotData = [];
+                    that.sectionCode = "";
+                    that.$refs.sectionCode.focus();
+                });
+        },
+    }
+})
\ No newline at end of file
diff --git a/H5/Yjdb.aspx b/H5/Yjdb.aspx
new file mode 100644
index 0000000..6b3f416
--- /dev/null
+++ b/H5/Yjdb.aspx
@@ -0,0 +1,164 @@
+锘�<%@ Page Title="" Language="C#" MasterPageFile="~/Mst.master" AutoEventWireup="true" %>
+
+<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
+        <style>
+    .bg-info {
+        background-color:#fff;
+    }
+</style>
+</asp:Content>
+<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
+                <van-notice-bar 
+    :scrollable="false" 
+    :text="'褰撳墠缁勭粐锛�' + (Cookies.get('orgName') || '鏆傛棤缁勭粐淇℃伅')" 
+    class="org-info"
+/></van-notice-bar>
+        <van-nav-bar
+          title="涓�閿皟鎷�"
+          left-text="杩斿洖"
+          left-arrow
+          @click-left="GoBack()"
+        ></van-nav-bar>
+        <div>
+        <van-cell-group>
+  <van-field
+      ref="billNo"
+    value=""
+    label="璋冩嫧鐢宠"
+    clearable 
+     placeholder="閫夋嫨/鎵嬪綍"
+    :right-icon-size="19"
+      v-model="billNo"
+      @keyup.enter.native ="GetMesItemBlDetailByBillNo"
+     v-focus.noKeyboard
+  ><template #button>
+    <van-button size="small" type="info" plain @click="getInfo" >閫夋嫨</van-button>
+  </template></van-field>
+                        <van-field
+                    ref="sectionCode"
+                    v-model="sectionCode"
+                    label="璋冨叆搴撲綅"
+                    clearable 
+                    placeholder="璇锋壂鐮�"
+                    :right-icon-size="19"
+                    v-focus.noKeyboard
+                    @keyup.enter.native="getKwInfo">
+                </van-field>
+                <van-field
+                    ref="barcode"
+                    v-model="barcode"
+                    label="鐗╂枡鏉$爜"
+                    clearable 
+                    placeholder="璇锋壂鐮�"
+                    :right-icon-size="19"
+                    v-focus.noKeyboard
+                    @keyup.enter.native="getScan">
+                </van-field>
+
+ <van-field
+  value=""
+  label="鐗╂枡缂栫爜"
+   clearable 
+ placeholder="鐗╂枡缂栫爜"
+  :right-icon-size="19"
+     v-model="itemNo"
+  v-focus.noKeyboard
+     disabled
+></van-field>
+                <van-field
+                    v-model="scanInfo.barcodeNum"
+                    label="鏉$爜鏁伴噺"
+                    placeholder="鏉$爜鏁伴噺"
+                    disabled>
+                </van-field>
+<van-field
+    ref="splitNum"
+    v-model="scanInfo.splitNum"
+    center
+    clearable
+    label="鍙戞枡鏁伴噺"
+    placeholder="鍙戞枡鏁伴噺">
+    <van-button 
+        slot="button" 
+        type="info" 
+        size="small"  
+        plain 
+        @click="getChaiFen">
+        鏉$爜鎷嗗垎
+    </van-button>
+</van-field>
+</van-cell-group>
+    </div>
+
+  <van-tabs color="#000" title-active-color="#0283EF">
+    <van-tab title="寰呮壂鐗╂枡" class="mySolid font">
+        <van-row>
+            <van-col span="8" class="text-left padding-left">鐗╂枡</van-col>
+            <van-col span="8" class="text-left padding-left">瑙勬牸</van-col>
+            <van-col span="3">寰呮壂</van-col>
+            <van-col span="5">鎺ㄨ崘搴撲綅</van-col>
+        </van-row>
+        <van-row v-for="(itm,index) in ItemBlDetail" :key="index"
+            :style="{ background: currentIndex === index ? '#87CEEB' : '' }"
+            @click.native="handleRowClick(itm, index)">
+            <van-col span="8" class="text-left padding-left">
+                <div class="blue-text">{{itm.itemNo}}</div>
+                <div>{{itm.itemName}}</div>
+            </van-col>
+            <van-col span="8" class="text-left padding-left">
+                <div>{{itm.itemModel}}</div>
+            </van-col>
+            <van-col span="3" class="blue-text">{{itm.dsQty}}</van-col>
+            <van-col span="5">{{itm.recoKw}}</van-col>
+        </van-row>
+    </van-tab>
+
+    <van-tab title="搴撲綅鍒楄〃" class="mySolid font">
+        <van-row>
+            <van-col span="10" class="text-left padding-left">鏉$爜缂栧彿</van-col>
+            <van-col span="5" class="text-left padding-left">搴撲綅</van-col>
+            <van-col span="4">鏁伴噺</van-col>
+            <van-col span="5">浠撳簱</van-col>
+        </van-row>
+        <van-row v-for="(itm,index) in ItemBarKw" :key="index">
+            <van-col span="10" class="text-left padding-left">
+                <div class="blue-text">{{itm.iteM_BARCODE}}</div>
+            </van-col>
+            <van-col span="5" class="text-left padding-left">
+                <div>{{itm.depoT_SECTIONS_CODE}}</div>
+            </van-col>
+            <van-col span="4" class="blue-text">{{itm.quantity}}</van-col>
+            <van-col span="5" >{{itm.depot_name}}</van-col>
+        </van-row>
+    </van-tab>
+
+    <van-tab title="宸叉壂鐗╂枡" class="mySolid font">
+        <van-row>
+            <van-col span="8" class="text-left padding-left">鐗╂枡</van-col>
+            <van-col span="8" class="text-left padding-left">瑙勬牸</van-col>
+            <van-col span="3">闇�棰嗘暟</van-col>
+            <van-col span="5">宸查鏁�</van-col>
+        </van-row>
+        <van-row v-for="(itm,index) in ItemYsDetail" :key="index">
+            <van-col span="8" class="text-left padding-left">
+                <div class="blue-text">{{itm.itemNo}}</div>
+                <div>{{itm.itemName}}</div>
+            </van-col>
+            <van-col span="8" class="text-left padding-left">
+                <div>{{itm.itemModel}}</div>
+            </van-col>
+            <van-col span="3">{{itm.fQty}}</van-col>
+            <van-col span="5" class="blue-text">{{itm.sQty}}</van-col>
+        </van-row>
+    </van-tab>
+</van-tabs>
+    <van-action-sheet v-model="show" :actions="actions" @select="onSelect" ></van-action-sheet>
+
+</asp:Content>
+<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder3" Runat="Server">
+    <comloading  v-if="isLoading"></comloading>
+  <%--<comback ></comback>--%>
+</asp:Content>
+<asp:Content ID="Content4" ContentPlaceHolderID="ContentPlaceHolder4" Runat="Server">
+ <script src="Js/Yjdb.js?<%=13 %>"></script>
+</asp:Content>
diff --git a/H5/Yjdb.aspx.cs b/H5/Yjdb.aspx.cs
new file mode 100644
index 0000000..0bbf74c
--- /dev/null
+++ b/H5/Yjdb.aspx.cs
@@ -0,0 +1,14 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+public partial class H5_Scbl : System.Web.UI.Page
+{
+    protected void Page_Load(object sender, EventArgs e)
+    {
+
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.3