Created
December 1, 2019 17:42
-
-
Save facilita-tecnologia/0c8a6acc1ca441f2fe49d2fc1d529899 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string Config_Impressao_Secundaria = ini.IniReadValue("COZINHA", "ATIVO"); | |
if (!string.IsNullOrEmpty(Config_Impressao_Secundaria)) | |
{ | |
if (Config_Impressao_Secundaria == "S") | |
{ | |
DialogResult result_impressao_secundaria = MessageBox.Show("Deseja Imprimir o pedido na Impressora da Cozinha?", "Sistema Integrado de Automação", MessageBoxButtons.YesNo, MessageBoxIcon.Information); | |
if (result_impressao_secundaria == DialogResult.Yes) | |
{ | |
Helper_Cozinha _Helper_Cozinha = new Helper_Cozinha(); | |
_Helper_Cozinha.Imprimir(_Pedido_Id, Program.Sessao_Usuario); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment