コード例 #1
0
 public ActionResult DeliveredBarCodeList(int deliveryId)
 {
     try
     {
         var chalan = _iDeliveryManager.GetChalanByDeliveryIdFromFactory(deliveryId);
         return(View(chalan));
     }
     catch (Exception exception)
     {
         Log.WriteErrorLog(exception);
         return(PartialView("_ErrorPartial", exception));
     }
 }
コード例 #2
0
 public ActionResult OrderChalan(int deliveryId)
 {
     try
     {
         Session["DeliveryFromBranch"] = _iBranchManager.GetAllBranches().FirstOrDefault(n => n.BranchId == 13);
         var chalan = _iDeliveryManager.GetChalanByDeliveryIdFromFactory(deliveryId);
         return(View(chalan));
     }
     catch (Exception exception)
     {
         Log.WriteErrorLog(exception);
         return(PartialView("_ErrorPartial", exception));
     }
 }