public void ExcelExport()
        {
            List <Balju>       master = SearchedList.ToList();
            List <BaljuDetail> detail = BaljuDetail_AllList.ToList();

            string[] exceptColumns = { "Balju_DeletedYN", "Balju_ReceiptDate" };
            UtilClass.ExportTo2DataGridView(master, detail, exceptColumns);
        }
Example #2
0
        public void ExcelExport()
        {
            List <Order>       master = SearchedList.ToList();
            List <OrderDetail> detail = OrderDetail_AllList.ToList();

            string[] exceptColumns = { "Order_DeletedYN", "OrderCompleted_Date" };
            UtilClass.ExportTo2DataGridView(master, detail, exceptColumns);
        }
        public void ExcelExport()
        {
            List <Shipment>       master = SearchedList.ToList();
            List <ShipmentDetail> detail = ShipmentDetail_AllList.ToList();

            string[] exceptColumns = { "Shipment_DoneDate" };
            UtilClass.ExportTo2DataGridView(master, detail, exceptColumns);
        }
Example #4
0
        private void ExcelExport()
        {
            List <WorkVO>    excellist  = searchedlist.ToList();
            List <ProduceVO> detaillist = produces.ToList();

            string[] exceptlist = new string[] { "Employees_ID", "Factory_ID", "Line_ID", "Product_ID", "ProduceWork_ID" };
            UtilClass.ExportTo2DataGridView(excellist, detaillist, exceptlist);
        }
Example #5
0
        private void ExcelExport()
        {
            //엑셀로 내보내기 위한 list들을 복사해서 보이지 않는 컬럼은 엑셀에서 제외시킨다.
            List <ProductVO> allList = list.ToList();
            List <BOMVO>     detail1 = bomList.ToList();
            List <BOMVO>     detail2 = bomReverseList.ToList();

            string[] gg = new string[] { "Product_Category", "Warehouse_ID", "Warehouse_Name", "Product_Qty", "Product_Safety", "Product_DeletedYN", "Category_Division", "Product_Image", "Combination_ID", "Combination_Product_ID", "Combination_DeletedYN", "Product_Origin" };
            UtilClass.ExportTo2DataGridView(allList, detail1, detail2, gg);
        }