Exemplo n.º 1
0
 private void btnDelete_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(orderid))
     {
         Common.WarningMessageBox("Vui lòng chọn phiếu cần xóa");
         return;
     }
     if (Common.ConfirmMessage("Xác nhận xóa phiếu nhập", "Bạn chắc chắn muốn xóa phiếu: " + orderid + "?") == DialogResult.Yes)
     {
         var rs = new PharmacyOrder().Delete(orderid);
         if (rs.Equals("NOTFOUND"))
         {
             Common.WarningMessageBox("Mã phiếu nhập không tồn tại");
             return;
         }
         if (rs.Equals("T"))
         {
             Common.ErrorMessageBox("KHÔNG THỂ XÓA", "PHIẾU ĐÃ XÁC NHẬN NHẬP KHO");
             return;
         }
         if (rs.Equals("SUCCESS"))
         {
             Common.SuccessMessageBox("Xóa phiếu thành công");
             btnSearch.PerformClick();
         }
     }
     orderid = null;
 }
Exemplo n.º 2
0
 public void DeletePharmacyOrder(int id)
 {
     using (UnitOfWork unitOfWork = new UnitOfWork(new GreencardContext()))
     {
         PharmacyOrder pharmacyOrder = unitOfWork.PharmacyOrderRepository.GetById(id);
         unitOfWork.PharmacyOrderRepository.Remove(pharmacyOrder);
         _result = unitOfWork.Complete();
         unitOfWork.Dispose();
     }
 }
Exemplo n.º 3
0
 public int UpdatePharmacyOrder(PharmacyOrder p)
 {
     using (UnitOfWork unitOfWork = new UnitOfWork(new GreencardContext()))
     {
         unitOfWork.PharmacyOrderRepository.Update(p);
         _result = unitOfWork.Complete();
         unitOfWork.Dispose();
         return(_result);
     }
 }
Exemplo n.º 4
0
 private void btnAction_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(orderid))
     {
         Common.WarningMessageBox("Vui lòng chọn phiếu nhập trước");
         return;
     }
     if (!isSubmit)
     {
         var rs = new PharmacyOrder().Submit(orderid);
         if (rs == "T")
         {
             Common.SuccessMessageBox("Xác nhận thành công");
             btnSearch.PerformClick();
             return;
         }
         if (rs == "N")
         {
             Common.ErrorMessageBox("PHIẾU NHẬP TRỐNG", "Vui lòng nhập thuốc vào trước");
             new frmAddPharmacyOrder(orderid).ShowDialog();
         }
     }
 }