Beispiel #1
0
        public DataTable GetSalesCompleteStatus(ShipmentClosingVO vo)
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.GetSalesCompleteStatus(vo));
        }
Beispiel #2
0
        public int GetPresentPrice(int product_id)
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.GetPresentPrice(product_id));
        }
Beispiel #3
0
        public bool EndProcessing(List <ShipmentOutVO> list)
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.EndProcessing(list));
        }
Beispiel #4
0
        public bool TransferProcessing(List <ShipmentVO> list)
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.TransferProcessing(list));
        }
Beispiel #5
0
        public List <ShipmentOutVO> GetClientOrder()
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.GetClientOrder());
        }
Beispiel #6
0
        public List <ShipmentVO> GetInventoryStatusByOrder(InventoryOrderMgtVO vo)
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.GetInventoryStatusByOrder(vo));
        }