private void lbl_InternalTax_Exception_Count_Click(object sender, EventArgs e)
        {
            Client_Type = "INTERNAL";
            Tax_Order_Allocation_New tx = new Tax_Order_Allocation_New(user_id, user_role, "Internal_Exception", Client_Type);

            tx.Show();
        }
        private void lbl_External_Tax_cancelled_Click(object sender, EventArgs e)
        {
            Client_Type = "EXTERNAL";
            Tax_Order_Allocation_New tx = new Tax_Order_Allocation_New(user_id, user_role, "External_Cancelled", Client_Type);

            tx.Show();
        }
 private void lbl_External_Tax_Request_Qc_Allocation_Click(object sender, EventArgs e)
 {
     if (user_role != "2")
     {
         Client_Type = "EXTERNAL";
         Tax_Order_Allocation_New tx = new Tax_Order_Allocation_New(user_id, user_role, "External_Tax_Request_Qc_For_Order_Allocate", Client_Type);
         tx.Show();
     }
     else
     {
         MessageBox.Show("Unauthorised Access");
     }
 }