private void handle_btn_update_clicked()
 {
     if(m_grv_main.FocusedRowHandle < 0)
     {
         XtraMessageBox.Show("Bạn chưa chọn dòng dữ liệu nào để sửa!", "THÔNG BÁO", MessageBoxButtons.OK, MessageBoxIcon.Warning);
         return;
     }
     var v_dc_id_gd_thu_nhap_khac = Convert.ToDecimal(m_grv_main.GetFocusedDataRow()[GD_THU_NHAP_KHAC.ID]);
     f355_tnk_chi_tiet_quy_thu_nhap_khac_detail v_frm = new f355_tnk_chi_tiet_quy_thu_nhap_khac_detail();
     v_frm.Display_for_update(v_dc_id_gd_thu_nhap_khac);
     load_data_to_grid();
 }
 private void handle_btn_insert_clicked()
 {
     f355_tnk_chi_tiet_quy_thu_nhap_khac_detail v_frm = new f355_tnk_chi_tiet_quy_thu_nhap_khac_detail();
     v_frm.Display_for_insert(m_dc_id_quy);
     load_data_to_grid();
 }