Пример #1
0
        public ActionResult FinishLeatherBuyerQC()
        {
            ViewBag.formTiltle          = "Finish Leather Buyer QC";
            ViewBag.ddlBuyerQCStoreList = objDalSysStore.GetAllActiveFinishBuyerQCStore();
            ViewBag.ddlPackingStoreList = objDalSysStore.GetAllActivePackingStores();
            ViewBag.ddlFinishStoreList  = objDalSysStore.GetAllActiveStoreTransferReceiveStore();

            return(View());
        }
Пример #2
0
        public ActionResult FinishLeatherQC()
        {
            ViewBag.formTiltle = "Finish Leather Own QC";
            ViewBag.ddlFinishProductionFloorList = objDalSysStore.GetAllActiveFinishProductionStore();
            ViewBag.ddlBuyerQCStoreList          = objDalSysStore.GetAllActiveFinishBuyerQCStore();
            ViewBag.ddlFinishStoreList           = objDalSysStore.GetAllActiveStoreTransferReceiveStore();

            return(View());
        }
        public ActionResult GetFinishIssueFromList(string QCTransactionOf)
        {
            switch (QCTransactionOf)
            {
            case "AOQC":
            {
                var ddlFinishOwnQCStoreList = objDalSysStore.GetAllActiveFinishOwnQCStore();
                return(Json(ddlFinishOwnQCStoreList, JsonRequestBehavior.AllowGet));
            }

            case "ABQC":
            {
                var ddlFinishBuyerQCStoreList = objDalSysStore.GetAllActiveFinishBuyerQCStore();
                return(Json(ddlFinishBuyerQCStoreList, JsonRequestBehavior.AllowGet));
            }

            default:
                return(null);
            }
        }