Example #1
0
 private void GetExceptionVendor()
 {
     IVMModel.MaintainDataTrans BCO = new IVMModel.MaintainDataTrans(ConntionDB);
     string Chan = "";
     string Store = "";
     string Supplier = "";
     BCO.GetExceptionData(out Chan, out Store, out Supplier);
     this.hidVendorException.Value = Supplier;
 }
Example #2
0
    //取得 CHAN_NO, STORE, SUPPLIER 備用
    private void GetValueForAdd()
    {
        string strChanNo = string.Empty;
        string strStore = string.Empty;
        string strSupplier = string.Empty;

        PIC.VDS2G.VSM.IVM.MaintainDataTrans BCO = new PIC.VDS2G.VSM.IVM.MaintainDataTrans(ConntionDB);

        BCO.GetExceptionData(out strChanNo, out strStore, out strSupplier);

        H_Chan_No.Value = strChanNo;
        H_Store.Value = strStore;
        H_Supplier.Value = strSupplier;

    }