Ejemplo n.º 1
0
        private void btnReprint_Click(object sender, EventArgs e)
        {
            ReprintVoidForm reprintVoidForm = new ReprintVoidForm();

            reprintVoidForm.IsReprint = true;
            reprintVoidForm.ShowDialog();
        }
Ejemplo n.º 2
0
        private void btnVoid_Click(object sender, EventArgs e)
        {
            if (globalvariables.LockedPOS)
            {
                FncFilter.Alert("POS is Locked, Z-Read already generated");
                return;
            }
            ReprintVoidForm reprintVoidForm = new ReprintVoidForm();

            reprintVoidForm.IsReprint = false;
            reprintVoidForm.ShowDialog();
        }