Ejemplo n.º 1
0
 // Load data to so hợp đồng và tên giảng viên
 private void load_data_2_basic_control()
 {
     try
     {
         US_V_GD_THANH_TOAN v_us_gd_thanh_toan = new US_V_GD_THANH_TOAN(CIPConvert.ToDecimal(Request.QueryString["id_gdtt"]));
         if (!v_us_gd_thanh_toan.IsIDNull())
         {
             m_lbl_so_phieu_thanh_toan.Text = v_us_gd_thanh_toan.strSO_PHIEU_THANH_TOAN;
             m_lbl_so_hop_dong.Text         = get_so_hop_dong_by_id(v_us_gd_thanh_toan.dcID_HOP_DONG_KHUNG);
             if (v_us_gd_thanh_toan.datNGAY_THANH_TOAN != null)
             {
                 m_lbl_dat_ngay_thanh_toan.Text = CIPConvert.ToStr(v_us_gd_thanh_toan.datNGAY_THANH_TOAN, "dd/MM/yyyy");
             }
             m_lbl_don_vi_thanh_toan.Text = get_dv_thanh_toan_by_id_hd(v_us_gd_thanh_toan.dcID_HOP_DONG_KHUNG);
         }
     }
     catch (Exception v_e)
     {
         throw v_e;
     }
 }