/TISS_Add-in/TISS_Add-in/Ribbon1.cs

# · C# · 1030 lines · 948 code · 77 blank · 5 comment · 156 complexity · 0f3a3d2ff7564f8dc14d54ae29c75493 MD5 · raw file

Large files are truncated click here to view the full file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Windows.Forms;
  6. using System.Xml;
  7. using System.Xml.Linq;
  8. using Microsoft.Office.Tools.Ribbon;
  9. using Office = Microsoft.Office.Core;
  10. namespace TISS_Add_in
  11. {
  12. public partial class Ribbon1 : OfficeRibbon
  13. {
  14. public Ribbon1()
  15. {
  16. InitializeComponent();
  17. }
  18. #region Eventos
  19. private void Ribbon1_Load(object sender, RibbonUIEventArgs e)
  20. {
  21. }
  22. private void btCriar_Click(object sender, RibbonControlEventArgs e)
  23. {
  24. if (!btCriar.Checked)
  25. {
  26. try
  27. {
  28. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.SelectGuiaTypeCTP);
  29. }
  30. catch (Exception)
  31. {
  32. Globals.ThisAddIn.SelectGuiaTypeCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_SelectGuiaType(), "Selecione");
  33. Globals.ThisAddIn.SelectGuiaTypeCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionFloating;
  34. Globals.ThisAddIn.SelectGuiaTypeCTP.Width = 395;
  35. Globals.ThisAddIn.SelectGuiaTypeCTP.Height = 385;
  36. Globals.ThisAddIn.SelectGuiaTypeCTP.Visible = true;
  37. //Globals.ThisAddIn.doc = Globals.ThisAddIn.Application.ActiveDocument;
  38. Globals.ThisAddIn.SelectGuiaTypeCTP.VisibleChanged += new EventHandler(SelectGuiaTypeCTP_VisibleChanged);
  39. btCriar.Checked = true;
  40. }
  41. }
  42. else
  43. {
  44. Globals.ThisAddIn.SelectGuiaTypeCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_SelectGuiaType(), "Selecione");
  45. Globals.ThisAddIn.SelectGuiaTypeCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionFloating;
  46. Globals.ThisAddIn.SelectGuiaTypeCTP.Width = 395;
  47. Globals.ThisAddIn.SelectGuiaTypeCTP.Height = 385;
  48. Globals.ThisAddIn.SelectGuiaTypeCTP.Visible = true;
  49. //Globals.ThisAddIn.doc = Globals.ThisAddIn.Application.ActiveDocument;
  50. Globals.ThisAddIn.SelectGuiaTypeCTP.VisibleChanged += new EventHandler(SelectGuiaTypeCTP_VisibleChanged);
  51. }
  52. }
  53. private void btAssinar_Click(object sender, RibbonControlEventArgs e)
  54. {
  55. Globals.ThisAddIn.Application.ActiveDocument.Signatures.Add();
  56. }
  57. private void btAcompanhar_Click(object sender, RibbonControlEventArgs e)
  58. {
  59. if (!btnAcompanhar.Checked)
  60. {
  61. try
  62. {
  63. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.AcompanhaGuiaCTP);
  64. }
  65. catch (Exception)
  66. {
  67. Globals.ThisAddIn.AcompanhaGuiaCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_AcompanhaGuia(), "Lotes");
  68. Globals.ThisAddIn.AcompanhaGuiaCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionLeft;
  69. Globals.ThisAddIn.AcompanhaGuiaCTP.Width = 315;
  70. Globals.ThisAddIn.AcompanhaGuiaCTP.Visible = true;
  71. Globals.ThisAddIn.AcompanhaGuiaCTP.VisibleChanged += new EventHandler(AcompanhaGuiaCTP_VisibleChanged);
  72. btnAcompanhar.Checked = true;
  73. }
  74. }
  75. else
  76. {
  77. Globals.ThisAddIn.AcompanhaGuiaCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_AcompanhaGuia(), "Lotes");
  78. Globals.ThisAddIn.AcompanhaGuiaCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionLeft;
  79. Globals.ThisAddIn.AcompanhaGuiaCTP.Width = 315;
  80. Globals.ThisAddIn.AcompanhaGuiaCTP.Visible = true;
  81. Globals.ThisAddIn.AcompanhaGuiaCTP.VisibleChanged += new EventHandler(AcompanhaGuiaCTP_VisibleChanged);
  82. }
  83. }
  84. private void btnModConf_Click(object sender, RibbonControlEventArgs e)
  85. {
  86. if (!btnModConf.Checked)
  87. {
  88. try
  89. {
  90. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.ModConfCTP);
  91. }
  92. catch (Exception)
  93. {
  94. try
  95. {
  96. Globals.ThisAddIn.AcompanhaGuiaCTP.Visible = false;
  97. Globals.ThisAddIn.DemonstrativosCTP.Visible = false;
  98. Globals.ThisAddIn.ListaProcedimentosCTP.Visible = false;
  99. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.AcompanhaGuiaCTP);
  100. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.DemonstrativosCTP);
  101. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.ListaProcedimentosCTP);
  102. }
  103. catch (Exception) { }
  104. Globals.ThisAddIn.ModConfCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_ModConfig(), "Configurações");
  105. Globals.ThisAddIn.ModConfCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionFloating;
  106. Globals.ThisAddIn.ModConfCTP.Width = 550;
  107. Globals.ThisAddIn.ModConfCTP.Height = 460;
  108. Globals.ThisAddIn.ModConfCTP.Visible = true;
  109. Globals.ThisAddIn.ModConfCTP.VisibleChanged += new EventHandler(ModConfCTP_VisibleChanged);
  110. btnModConf.Checked = true;
  111. }
  112. }
  113. else
  114. {
  115. try
  116. {
  117. Globals.ThisAddIn.AcompanhaGuiaCTP.Visible = false;
  118. Globals.ThisAddIn.DemonstrativosCTP.Visible = false;
  119. Globals.ThisAddIn.ListaProcedimentosCTP.Visible = false;
  120. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.AcompanhaGuiaCTP);
  121. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.DemonstrativosCTP);
  122. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.ListaProcedimentosCTP);
  123. }
  124. catch (Exception) { }
  125. Globals.ThisAddIn.ModConfCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_ModConfig(), "Configurações");
  126. Globals.ThisAddIn.ModConfCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionFloating;
  127. Globals.ThisAddIn.ModConfCTP.Width = 550;
  128. Globals.ThisAddIn.ModConfCTP.Height = 460;
  129. Globals.ThisAddIn.ModConfCTP.Visible = true;
  130. Globals.ThisAddIn.ModConfCTP.VisibleChanged += new EventHandler(ModConfCTP_VisibleChanged);
  131. }
  132. }
  133. private void btValidar_Click(object sender, RibbonControlEventArgs e)
  134. {
  135. if (!btValidar.Checked)
  136. {
  137. try
  138. {
  139. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.ValidacaoCTP);
  140. }
  141. catch (Exception)
  142. {
  143. btValidar.Checked = false;
  144. }
  145. }
  146. else
  147. {
  148. try
  149. {
  150. Globals.ThisAddIn.Application.ActiveDocument.Save();
  151. XmlDocument xDoc = new XmlDocument();
  152. Globals.ThisAddIn.validationResults = new System.Collections.Generic.List<ValidationInfo>();
  153. bool isGuiaTiss = false;
  154. foreach (Microsoft.Office.Core.CustomXMLPart ccPart in Globals.ThisAddIn.Application.ActiveDocument.CustomXMLParts)
  155. {
  156. if (ccPart.XML.Contains("guiaConsultaReapresentacao"))
  157. {
  158. xDoc.LoadXml(ccPart.XML);
  159. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Consulta_Reapresentação);
  160. isGuiaTiss = true;
  161. break;
  162. }
  163. else if (ccPart.XML.Contains("guiaSP_SADTReapresentacao"))
  164. {
  165. xDoc.LoadXml(ccPart.XML);
  166. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.SP_SADT_Reapresentação);
  167. isGuiaTiss = true;
  168. break;
  169. }
  170. else if (ccPart.XML.Contains("guiaResumoInternacaoReapresentacao"))
  171. {
  172. xDoc.LoadXml(ccPart.XML);
  173. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Resumo_Internação_Reapresentação);
  174. isGuiaTiss = true;
  175. break;
  176. }
  177. else if (ccPart.XML.Contains("guiaHonorarioIndividualReapresentacao"))
  178. {
  179. xDoc.LoadXml(ccPart.XML);
  180. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Honorário_Individual_Reapresentação);
  181. isGuiaTiss = true;
  182. break;
  183. }
  184. else if (ccPart.XML.Contains("guiaOdontologiaReapresentacao"))
  185. {
  186. xDoc.LoadXml(ccPart.XML);
  187. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Odontologia_Reapresentação);
  188. isGuiaTiss = true;
  189. break;
  190. }
  191. else
  192. if (ccPart.XML.Contains("guiaConsulta"))
  193. {
  194. xDoc.LoadXml(ccPart.XML);
  195. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Consulta);
  196. isGuiaTiss = true;
  197. break;
  198. }
  199. else if (ccPart.XML.Contains("guiaSP_SADT"))
  200. {
  201. xDoc.LoadXml(ccPart.XML);
  202. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.SP_SADT);
  203. isGuiaTiss = true;
  204. break;
  205. }
  206. else if (ccPart.XML.Contains("guiaResumoInternacao"))
  207. {
  208. xDoc.LoadXml(ccPart.XML);
  209. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Resumo_Internação);
  210. isGuiaTiss = true;
  211. break;
  212. }
  213. else if (ccPart.XML.Contains("guiaHonorarioIndividual"))
  214. {
  215. xDoc.LoadXml(ccPart.XML);
  216. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Honorário_Individual);
  217. isGuiaTiss = true;
  218. break;
  219. }
  220. else if (ccPart.XML.Contains("guiaOdontologia"))
  221. {
  222. xDoc.LoadXml(ccPart.XML);
  223. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Odontologia);
  224. isGuiaTiss = true;
  225. break;
  226. }
  227. else if (ccPart.XML.Contains("guiaSolicInternacao"))
  228. {
  229. xDoc.LoadXml(ccPart.XML);
  230. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Solicitação_Internação);
  231. isGuiaTiss = true;
  232. break;
  233. }
  234. else if (ccPart.XML.Contains("guiaSolicitacaoSP_SADT"))
  235. {
  236. xDoc.LoadXml(ccPart.XML);
  237. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Solicitação_SADT);
  238. isGuiaTiss = true;
  239. break;
  240. }
  241. else if (ccPart.XML.Contains("guiaSolicitacaoProrrogacao"))
  242. {
  243. xDoc.LoadXml(ccPart.XML);
  244. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Solicitação_Prorrogação);
  245. isGuiaTiss = true;
  246. break;
  247. }
  248. else if (ccPart.XML.Contains("guiaSolicitacaoOdonto"))
  249. {
  250. xDoc.LoadXml(ccPart.XML);
  251. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Solicitação_Odontologia);
  252. isGuiaTiss = true;
  253. break;
  254. }
  255. else if (ccPart.XML.Contains("outrasDespesas"))
  256. {
  257. xDoc.LoadXml(ccPart.XML);
  258. Globals.ThisAddIn.validationResults = XMLUtils.ValidateGuia(XMLUtils.GetNormalizedXMLString(xDoc), TipoGuia.Outras_Despesas);
  259. isGuiaTiss = true;
  260. break;
  261. }
  262. }
  263. if (!isGuiaTiss)
  264. Globals.ThisAddIn.validationResults.Add(new ValidationInfo("ERRO", "O Documento Não É Uma Guia TISS"));
  265. uc_Validacao ucValidacao = new uc_Validacao(Globals.ThisAddIn.validationResults);
  266. Globals.ThisAddIn.ValidacaoCTP = Globals.ThisAddIn.CustomTaskPanes.Add(ucValidacao, "Resultados de Validação");
  267. Globals.ThisAddIn.ValidacaoCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionTop;
  268. Globals.ThisAddIn.ValidacaoCTP.Height = 140;
  269. Globals.ThisAddIn.ValidacaoCTP.Visible = true;
  270. Globals.ThisAddIn.ValidacaoCTP.Control.Focus();
  271. Globals.ThisAddIn.ValidacaoCTP.VisibleChanged += new EventHandler(ValidacaoCTP_VisibleChanged);
  272. }
  273. catch (Exception)
  274. { }
  275. }
  276. }
  277. private void btLogin_Click(object sender, RibbonControlEventArgs e)
  278. {
  279. bool loggedIn = true;
  280. if (!btnLogin.Checked)
  281. {
  282. try
  283. {
  284. Globals.Ribbons.Ribbon1.grpProcedimentos.Visible = false;
  285. Globals.Ribbons.Ribbon1.btnAcompanhar.Enabled = false;
  286. Globals.Ribbons.Ribbon1.btnDemonstrativos.Enabled = false;
  287. Globals.Ribbons.Ribbon1.btnAcompanhar.Checked = false;
  288. Globals.Ribbons.Ribbon1.btnDemonstrativos.Checked = false;
  289. Globals.ThisAddIn.UsuarioID = -1;
  290. Globals.ThisAddIn.PrestadorNome = null;
  291. Globals.Ribbons.Ribbon1.btnLogin.Image = new Bitmap(TISS_Add_in.Properties.Resources.login32);
  292. Globals.Ribbons.Ribbon1.btnLogin.Label = "Login";
  293. loggedIn = false;
  294. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.LoginCTP);
  295. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.AcompanhaGuiaCTP);
  296. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.DemonstrativosCTP);
  297. }
  298. catch (Exception)
  299. { }
  300. }
  301. if (loggedIn)
  302. {
  303. Globals.ThisAddIn.LoginCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_Login(), "Login");
  304. Globals.ThisAddIn.LoginCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionFloating;
  305. Globals.ThisAddIn.LoginCTP.Width = 125;
  306. Globals.ThisAddIn.LoginCTP.Height = 155;
  307. Globals.ThisAddIn.LoginCTP.Visible = true;
  308. Globals.ThisAddIn.LoginCTP.Control.Focus();
  309. Globals.ThisAddIn.LoginCTP.VisibleChanged += new EventHandler(LoginCTP_VisibleChanged);
  310. Globals.Ribbons.Ribbon1.btnLogin.Image = new Bitmap(TISS_Add_in.Properties.Resources.logoff32);
  311. Globals.Ribbons.Ribbon1.btnLogin.Label = "Logoff";
  312. }
  313. btnLogin.Checked = loggedIn;
  314. }
  315. private void btAddEquipe_Click(object sender, RibbonControlEventArgs e)
  316. {
  317. if (Globals.ThisAddIn.Application.Documents.Count > 0)
  318. {
  319. try
  320. {
  321. Globals.ThisAddIn.Application.ActiveDocument.Save();
  322. Office.CustomXMLPart cXMLPart = null;
  323. TipoGuia tipoGuia = new TipoGuia();
  324. foreach (Office.CustomXMLPart cPart in Globals.ThisAddIn.Application.ActiveDocument.CustomXMLParts)
  325. {
  326. if (cPart.XML.Contains("guiaResumoInternacao"))
  327. {
  328. cXMLPart = cPart;
  329. tipoGuia = TipoGuia.Resumo_Internação;
  330. break;
  331. }
  332. else if (cPart.XML.Contains("guiaSP_SADT"))
  333. {
  334. cXMLPart = cPart;
  335. tipoGuia = TipoGuia.SP_SADT;
  336. break;
  337. }
  338. }
  339. if (cXMLPart != null)
  340. {
  341. if (!btAddEquipe.Checked)
  342. {
  343. try
  344. {
  345. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.ListaProcedimentosCTP);
  346. }
  347. catch (Exception)
  348. {
  349. List<ProcedimentoHandler> listaProcedimentos = ProcedimentoHandler.GetAllProcedimentosFromCustomXMLPart(cXMLPart);
  350. Globals.ThisAddIn.ListaProcedimentosCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_ListaProcedimentos(cXMLPart, listaProcedimentos, tipoGuia), "Selecione");
  351. Globals.ThisAddIn.ListaProcedimentosCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionFloating;
  352. Globals.ThisAddIn.ListaProcedimentosCTP.Height = 263;
  353. Globals.ThisAddIn.ListaProcedimentosCTP.Width = 336;
  354. Globals.ThisAddIn.ListaProcedimentosCTP.Visible = true;
  355. Globals.ThisAddIn.ListaProcedimentosCTP.VisibleChanged += new EventHandler(ListaProcedimentosCTP_VisibleChanged);
  356. btAddEquipe.Checked = true;
  357. }
  358. }
  359. else
  360. {
  361. List<ProcedimentoHandler> listaProcedimentos = ProcedimentoHandler.GetAllProcedimentosFromCustomXMLPart(cXMLPart);
  362. Globals.ThisAddIn.ListaProcedimentosCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_ListaProcedimentos(cXMLPart, listaProcedimentos, tipoGuia), "Selecione");
  363. Globals.ThisAddIn.ListaProcedimentosCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionFloating;
  364. Globals.ThisAddIn.ListaProcedimentosCTP.Height = 263;
  365. Globals.ThisAddIn.ListaProcedimentosCTP.Width = 336;
  366. Globals.ThisAddIn.ListaProcedimentosCTP.Visible = true;
  367. Globals.ThisAddIn.ListaProcedimentosCTP.VisibleChanged += new EventHandler(ListaProcedimentosCTP_VisibleChanged);
  368. }
  369. }
  370. }
  371. catch (Exception ex)
  372. {
  373. if (ex.Message.Contains("Command failed"))
  374. {
  375. btAddEquipe.Checked = false;
  376. MessageBox.Show("Por favor, selecione uma Guia");
  377. }
  378. }
  379. }
  380. else
  381. {
  382. btAddEquipe.Checked = false;
  383. MessageBox.Show("Por favor, selecione uma Guia");
  384. }
  385. }
  386. private void btnDemonstrativos_Click(object sender, RibbonControlEventArgs e)
  387. {
  388. if (!btnDemonstrativos.Checked)
  389. {
  390. try
  391. {
  392. Globals.ThisAddIn.CustomTaskPanes.Remove(Globals.ThisAddIn.DemonstrativosCTP);
  393. }
  394. catch (Exception)
  395. {
  396. Globals.ThisAddIn.DemonstrativosCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_Demonstrativos(), "Demonstrativos");
  397. Globals.ThisAddIn.DemonstrativosCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionRight;
  398. Globals.ThisAddIn.DemonstrativosCTP.Width = 285;
  399. Globals.ThisAddIn.DemonstrativosCTP.Visible = true;
  400. Globals.ThisAddIn.DemonstrativosCTP.Control.Focus();
  401. Globals.ThisAddIn.DemonstrativosCTP.VisibleChanged += new EventHandler(DemonstrativosCTP_VisibleChanged);
  402. btnDemonstrativos.Checked = true;
  403. }
  404. }
  405. else
  406. {
  407. Globals.ThisAddIn.DemonstrativosCTP = Globals.ThisAddIn.CustomTaskPanes.Add(new uc_Demonstrativos(), "Demonstrativos");
  408. Globals.ThisAddIn.DemonstrativosCTP.DockPosition = Microsoft.Office.Core.MsoCTPDockPosition.msoCTPDockPositionRight;
  409. Globals.ThisAddIn.DemonstrativosCTP.Width = 285;
  410. Globals.ThisAddIn.DemonstrativosCTP.Visible = true;
  411. Globals.ThisAddIn.DemonstrativosCTP.Control.Focus();
  412. Globals.ThisAddIn.DemonstrativosCTP.VisibleChanged += new EventHandler(DemonstrativosCTP_VisibleChanged);
  413. }
  414. }
  415. private void AcompanhaGuiaCTP_VisibleChanged(object sender, EventArgs e)
  416. {
  417. btnAcompanhar.Checked = Globals.ThisAddIn.AcompanhaGuiaCTP.Visible;
  418. }
  419. private void DemonstrativosCTP_VisibleChanged(object sender, EventArgs e)
  420. {
  421. btnDemonstrativos.Checked = Globals.ThisAddIn.DemonstrativosCTP.Visible;
  422. }
  423. private void ModConfCTP_VisibleChanged(object sender, EventArgs e)
  424. {
  425. btnModConf.Checked = Globals.ThisAddIn.ModConfCTP.Visible;
  426. }
  427. private void LoginCTP_VisibleChanged(object sender, EventArgs e)
  428. {
  429. btnLogin.Checked = Globals.ThisAddIn.LoginCTP.Visible;
  430. if (btnLogin.Checked)
  431. {
  432. Globals.Ribbons.Ribbon1.btnLogin.Image = new Bitmap(TISS_Add_in.Properties.Resources.logoff32);
  433. Globals.Ribbons.Ribbon1.btnLogin.Label = "Logoff";
  434. }
  435. else
  436. {
  437. Globals.Ribbons.Ribbon1.btnLogin.Image = new Bitmap(TISS_Add_in.Properties.Resources.login32);
  438. Globals.Ribbons.Ribbon1.btnLogin.Label = "Login";
  439. }
  440. }
  441. private void SelectGuiaTypeCTP_VisibleChanged(object sender, EventArgs e)
  442. {
  443. btCriar.Checked = Globals.ThisAddIn.SelectGuiaTypeCTP.Visible;
  444. }
  445. private void ListaProcedimentosCTP_VisibleChanged(object sender, EventArgs e)
  446. {
  447. btAddEquipe.Checked = Globals.ThisAddIn.ListaProcedimentosCTP.Visible;
  448. }
  449. private void ValidacaoCTP_VisibleChanged(object sender, EventArgs e)
  450. {
  451. btValidar.Checked = Globals.ThisAddIn.AcompanhaGuiaCTP.Visible;
  452. }
  453. private void btnProcedimento_Click(object sender, RibbonControlEventArgs e)
  454. {
  455. if (Globals.ThisAddIn.Application.Documents.Count > 0)
  456. {
  457. try
  458. {
  459. Globals.ThisAddIn.Application.ActiveDocument.Save();
  460. TipoCTProcedimento tipoCT = new TipoCTProcedimento();
  461. TipoGuia tipoGuia = new TipoGuia();
  462. Office.CustomXMLPart cXMLPart = null;
  463. foreach (Office.CustomXMLPart cPart in Globals.ThisAddIn.Application.ActiveDocument.CustomXMLParts)
  464. {
  465. if (cPart.XML.Contains("guiaSP_SADTReapresentacao"))
  466. {
  467. cXMLPart = cPart;
  468. tipoCT = TipoCTProcedimento.ct_procedimentoRevisao;
  469. tipoGuia = TipoGuia.SP_SADT_Reapresentação;
  470. break;
  471. }
  472. else if (cPart.XML.Contains("guiaSP_SADT"))
  473. {
  474. cXMLPart = cPart;
  475. tipoCT = TipoCTProcedimento.ct_procedimentoRealizadoEquipe;
  476. tipoGuia = TipoGuia.SP_SADT;
  477. break;
  478. }
  479. else if (cPart.XML.Contains("guiaResumoInternacaoReapresentacao"))
  480. {
  481. cXMLPart = cPart;
  482. tipoCT = TipoCTProcedimento.ct_procedimentoRevisao;
  483. tipoGuia = TipoGuia.Resumo_Internação_Reapresentação;
  484. break;
  485. }
  486. else if (cPart.XML.Contains("guiaResumoInternacao"))
  487. {
  488. cXMLPart = cPart;
  489. tipoCT = TipoCTProcedimento.ct_procedimentoRealizadoEquipe;
  490. tipoGuia = TipoGuia.Resumo_Internação;
  491. break;
  492. }
  493. else if (cPart.XML.Contains("guiaHonorarioIndividualReapresentacao"))
  494. {
  495. cXMLPart = cPart;
  496. tipoCT = TipoCTProcedimento.ct_procedimentoRevisao;
  497. tipoGuia = TipoGuia.Honorário_Individual_Reapresentação;
  498. break;
  499. }
  500. else if (cPart.XML.Contains("guiaHonorarioIndividual"))
  501. {
  502. cXMLPart = cPart;
  503. tipoCT = TipoCTProcedimento.ct_procedimentosRealizados;
  504. tipoGuia = TipoGuia.Honorário_Individual;
  505. break;
  506. }
  507. else if (cPart.XML.Contains("guiaOdontologiaReapresentacao"))
  508. {
  509. cXMLPart = cPart;
  510. tipoCT = TipoCTProcedimento.ct_procedimentoOdontologia;
  511. tipoGuia = TipoGuia.Odontologia_Reapresentação;
  512. break;
  513. }
  514. else if (cPart.XML.Contains("guiaOdontologia"))
  515. {
  516. cXMLPart = cPart;
  517. tipoCT = TipoCTProcedimento.ct_procedimentoOdontologia;
  518. tipoGuia = TipoGuia.Odontologia;
  519. break;
  520. }
  521. else if (cPart.XML.Contains("guiaSolicInternacao"))
  522. {
  523. cXMLPart = cPart;
  524. tipoCT = TipoCTProcedimento.ct_procedimentosSolicitados;
  525. tipoGuia = TipoGuia.Solicitação_Internação;
  526. break;
  527. }
  528. else if (cPart.XML.Contains("guiaSolicitacaoSADT"))
  529. {
  530. cXMLPart = cPart;
  531. tipoCT = TipoCTProcedimento.ct_procedimentosSolicitados;
  532. tipoGuia = TipoGuia.Solicitação_SADT;
  533. break;
  534. }
  535. else if (cPart.XML.Contains("guiaSolicitacaoProrrogacao"))
  536. {
  537. cXMLPart = cPart;
  538. tipoCT = TipoCTProcedimento.ct_procedimentosSolicitados;
  539. tipoGuia = TipoGuia.Solicitação_Prorrogação;
  540. break;
  541. }
  542. else if (cPart.XML.Contains("guiaSolicitacaoOdontologia"))
  543. {
  544. cXMLPart = cPart;
  545. tipoCT = TipoCTProcedimento.ct_procedimentoOdontoSolicitacao;
  546. tipoGuia = TipoGuia.Solicitação_Odontologia;
  547. break;
  548. }
  549. }
  550. if (cXMLPart != null)
  551. {
  552. XDocument xPart = XDocument.Parse(cXMLPart.XML);
  553. DataOfAvailableRow infoOfAvailableRow = new DataOfAvailableRow();
  554. string ns = "http://www.ans.gov.br/padroes/tiss/schemas";
  555. string rootXPath = "";
  556. IEnumerable<XElement> xProcedimentos = null;
  557. switch (tipoCT)
  558. {
  559. case TipoCTProcedimento.ct_procedimentoRealizadoEquipe:
  560. foreach (Microsoft.Office.Interop.Word.Row row in Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows)
  561. {
  562. if (row.Cells[1].Range.Text.Contains("Procedimentos e Exames Realizados"))
  563. {
  564. int rowNumber = row.Index + 2;
  565. if (tipoGuia == TipoGuia.SP_SADT)
  566. infoOfAvailableRow = DataOfAvailableRow.GetNextAvailableRow(new DataOfAvailableRow(Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows[rowNumber], rowNumber + 6),
  567. "Data e Assinatura de Procedimentos em Série");
  568. else if (tipoGuia == TipoGuia.Resumo_Internação)
  569. infoOfAvailableRow = DataOfAvailableRow.GetNextAvailableRow(new DataOfAvailableRow(Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows[rowNumber], rowNumber + 6),
  570. "Procedimentos e Exames Realizados (Continuação)", "Identificação da Equipe");
  571. break;
  572. }
  573. }
  574. if (infoOfAvailableRow.IsNewRow)
  575. {
  576. rootXPath = @"ans:procedimentosRealizados[1]";
  577. xProcedimentos = xPart.Descendants().Elements(XName.Get("procedimentosRealizados", ns));
  578. //var xProcsRealizados = xPart.Descendants()(XName.Get("procedimentosRealizados", ns));
  579. foreach (var procedimentos in xProcedimentos)
  580. {
  581. procedimentos.Add(GetXElement.ct_procedimentoRealizadoEquipe());
  582. }
  583. }
  584. break;
  585. case TipoCTProcedimento.ct_procedimentosRealizados:
  586. foreach (Microsoft.Office.Interop.Word.Row row in Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows)
  587. {
  588. if (row.Cells[1].Range.Text.Contains("Procedimentos e Exames Realizados"))
  589. {
  590. int rowNumber = row.Index + 2;
  591. infoOfAvailableRow = DataOfAvailableRow.GetNextAvailableRow(new DataOfAvailableRow(Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows[rowNumber], rowNumber + 6),
  592. "36-Observação");
  593. break;
  594. }
  595. }
  596. if (infoOfAvailableRow.IsNewRow)
  597. {
  598. rootXPath = @"ans:procedimentosExamesRealizados[1]";
  599. xProcedimentos = xPart.Descendants().Elements(XName.Get("procedimentosExamesRealizados", ns));
  600. foreach (var procedimentos in xProcedimentos)
  601. {
  602. procedimentos.Add(GetXElement.ct_procedimentoRealizadoEquipe());
  603. }
  604. }
  605. break;
  606. case TipoCTProcedimento.ct_procedimentoRevisao:
  607. foreach (Microsoft.Office.Interop.Word.Row row in Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows)
  608. {
  609. if (row.Cells[1].Range.Text.Contains("Procedimentos e Exames Realizados"))
  610. {
  611. int rowNumber = row.Index + 2;
  612. if (tipoGuia == TipoGuia.SP_SADT_Reapresentação)
  613. infoOfAvailableRow = DataOfAvailableRow.GetNextAvailableRow(new DataOfAvailableRow(Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows[rowNumber], rowNumber + 6),
  614. "Data e Assinatura de Procedimentos em Série");
  615. else if (tipoGuia == TipoGuia.Resumo_Internação_Reapresentação)
  616. infoOfAvailableRow = DataOfAvailableRow.GetNextAvailableRow(new DataOfAvailableRow(Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows[rowNumber], rowNumber + 6),
  617. "Procedimentos e Exames Realizados (Continuação)", "OPM Utilizados");
  618. else if (tipoGuia == TipoGuia.Honorário_Individual_Reapresentação)
  619. infoOfAvailableRow = DataOfAvailableRow.GetNextAvailableRow(new DataOfAvailableRow(Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows[rowNumber], rowNumber + 6),
  620. "Observação");
  621. break;
  622. }
  623. }
  624. if (infoOfAvailableRow.IsNewRow)
  625. {
  626. if (tipoGuia.Equals(TipoGuia.SP_SADT_Reapresentação) || tipoGuia.Equals(TipoGuia.Resumo_Internação_Reapresentação))
  627. {
  628. rootXPath = @"ans:procedimentosRealizados[1]";
  629. xProcedimentos = xPart.Descendants().Elements(XName.Get("procedimentosRealizados", ns));
  630. }
  631. else
  632. {
  633. rootXPath = @"ans:procedimentosExamesRealizados[1]";
  634. xProcedimentos = xPart.Descendants().Elements(XName.Get("procedimentosExamesRealizados", ns));
  635. }
  636. foreach (var procedimentos in xProcedimentos)
  637. {
  638. procedimentos.Add(GetXElement.ct_procedimentoRevisao());
  639. }
  640. }
  641. break;
  642. case TipoCTProcedimento.ct_procedimentosSolicitados:
  643. if (tipoGuia.Equals(TipoGuia.Solicitação_Internação) || tipoGuia.Equals(TipoGuia.Solicitação_Prorrogação))
  644. {
  645. foreach (Microsoft.Office.Interop.Word.Row row in Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows)
  646. {
  647. if (row.Cells[1].Range.Text.Contains("Procedimentos e Exames Solicitados"))
  648. {
  649. int rowNumber = row.Index + 2;
  650. infoOfAvailableRow = DataOfAvailableRow.GetNextAvailableRow(new DataOfAvailableRow(Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows[rowNumber], rowNumber + 6),
  651. "OPMs Solicitadas");
  652. break;
  653. }
  654. }
  655. }
  656. else
  657. {
  658. foreach (Microsoft.Office.Interop.Word.Row row in Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows)
  659. {
  660. if (row.Cells[1].Range.Text.Contains("Dados da Solicitação / Procedimentos e Exames Solicitados"))
  661. {
  662. int rowNumber = row.Index + 3;
  663. infoOfAvailableRow = DataOfAvailableRow.GetNextAvailableRow(new DataOfAvailableRow(Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows[rowNumber], rowNumber + 6),
  664. "Observação");
  665. break;
  666. }
  667. }
  668. }
  669. if (infoOfAvailableRow.IsNewRow)
  670. {
  671. if (tipoGuia.Equals(TipoGuia.Solicitação_Internação) || tipoGuia.Equals(TipoGuia.Solicitação_Prorrogação))
  672. {
  673. rootXPath = @"ans:procedimentosExamesSolicitados[1]";
  674. xProcedimentos = xPart.Descendants().Elements(XName.Get("procedimentosExamesSolicitados", ns));
  675. }
  676. else if (tipoGuia.Equals(TipoGuia.Solicitação_SADT))
  677. {
  678. rootXPath = @"ans:planoTratamento[1]";
  679. xProcedimentos = xPart.Descendants().Elements(XName.Get("planoTratamento", ns));
  680. }
  681. foreach (var procedimentos in xProcedimentos)
  682. {
  683. procedimentos.Add(GetXElement.ct_procedimentoSolicitado());
  684. }
  685. }
  686. break;
  687. case TipoCTProcedimento.ct_procedimentoOdontologia:
  688. case TipoCTProcedimento.ct_procedimentoOdontoSolicitacao:
  689. foreach (Microsoft.Office.Interop.Word.Row row in Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows)
  690. {
  691. if (row.Cells[1].Range.Text.Contains("Plano de Tratamento / Procedimentos Solicitados / Procedimentos Executados"))
  692. {
  693. int rowNumber = row.Index + 2;
  694. infoOfAvailableRow = DataOfAvailableRow.GetNextAvailableRow(new DataOfAvailableRow(Globals.ThisAddIn.Application.ActiveDocument.Tables[1].Rows[rowNumber], rowNumber + 6),
  695. "Data Término do Tratamento");
  696. break;
  697. }
  698. }
  699. if (infoOfAvailableRow.IsNewRow)
  700. {
  701. if (tipoGuia.Equals(TipoGuia.Odontologia))
  702. {
  703. rootXPath = @"ans:procedimentosExecutados[1]";
  704. xProcedimentos = xPart.Descendants().Elements(XName.Get("procedimentosExecutados", ns));
  705. foreach (var procedimentos in xProcedimentos)
  706. {
  707. procedimentos.Add(GetXElement.ct_procedimentoOdonto());
  708. }
  709. }
  710. else if (tipoGuia.Equals(TipoGuia.Odontologia_Reapresentação))
  711. {
  712. rootXPath = @"ans:procedimentosExecutados[1]";
  713. xProcedimentos = xPart.Descendants().Elements(XName.Get("procedimentosExecutados", ns));
  714. foreach (var procedimentos in xProcedimentos)
  715. {
  716. procedimentos.Add(GetXElement.ct_procedimentoOdontoRevisao());
  717. }
  718. }
  719. else if (tipoGuia.Equals(TipoGuia.Solicitação_Odontologia))
  720. {
  721. rootXPath = @"ans:procedimentoSolicitado[1]";
  722. xProcedimentos = xPart.Descendants().Elements(XName.Get("procedimentosExecutados", ns));
  723. foreach (var procedimentos in xProcedimentos)
  724. {
  725. procedimentos.Add(GetXElement.ct_procedimentoOdontoSolicitacao());
  726. }
  727. }
  728. }
  729. break;
  730. }
  731. if (infoOfAvailableRow.IsNewRow)
  732. {
  733. cXMLPart.NamespaceManager.AddNamespace("ans", ns);
  734. Office.CustomXMLNode newNode = cXMLPart.DocumentElement.SelectSingleNode(rootXPath);
  735. newNode.ParentNode.ReplaceChildSubtree(xProcedimentos.ElementAt(0).ToString(), newNode);
  736. }
  737. int procedimentoIndex = XMLUtils.GetNumberOfProcedimentosFromCustomXML(cXMLPart, tipoGuia);
  738. object ccIndex = 1;
  739. for (int i = 1; i <= infoOfAvailableRow.Row.Cells.Count; i++)
  740. {
  741. if (infoOfAvailableRow.Row.Previous.Cells[i].Range.ContentControls.Count > 0)
  742. {
  743. Microsoft.Office.Interop.Word.ContentControl oldCC = infoOfAvailableRow.Row.Previous.Cells[i].Range.ContentControls.get_Item(ref ccIndex);
  744. AddinUtils.AddContentControlToRange(oldCC, infoOfAvailableRow.Row.Cells[i].Range,
  745. GetNodeXPath.ProcedimentoXPath(oldCC, procedimentoIndex, tipoCT), cXMLPart);
  746. }
  747. }
  748. }
  749. }
  750. catch (Exception ex)
  751. {
  752. MessageBox.Show("Falha ao Adicionar novo Procedimento");
  753. }
  754. }
  755. else
  756. {
  757. btAddEquipe.Checked = false;
  758. MessageBox.Show("Por favor, selecione uma Guia");
  759. }
  760. }
  761. private void btnOPM_Click(object sender, RibbonControlEventArgs e)
  762. {
  763. if (Globals.ThisAddIn.Application.Documents.Count > 0)
  764. {
  765. try
  766. {
  767. Globals.ThisAddIn.Application.ActiveDocument.Save();
  768. TipoCTOPM tipoCT = new TipoCTOPM();
  769. TipoGuia tipoGuia = new TipoGuia();
  770. Office.CustomXMLPart cXMLPart = null;
  771. foreach (Office.CustomXMLPart cPart in Globals.ThisAddIn.Application.ActiveDocument.CustomXMLParts)
  772. {
  773. if (cPart.XML.Contains("guiaSP_SADTReapresentacao"))
  774. {
  775. cXMLPart = cPart;
  776. tipoCT = TipoCTOPM.ct_OPMUtilizadaRevisao;
  777. tipoGuia = TipoGuia.SP_SADT_Reapresentação;
  778. break;
  779. }
  780. else if (cPart.XML.Contains("guiaSP_SADT"))
  781. {
  782. cXMLPart = cPart;
  783. tipoCT = TipoCTOPM.ct_OPMUtilizada;
  784. tipoGuia = TipoGuia.SP_SADT;
  785. break;
  786. }
  787. else if (cPart.XML.Contains("guiaResumoInternacaoReapresentacao"))
  788. {
  789. cXMLPart = cPart;
  790. tipoCT = TipoCTOPM.ct_OPMUtilizadaRevisao;
  791. tipoGuia = TipoGuia.Resumo_Internação_Reapresentação;
  792. break;
  793. }
  794. else if (cPart.XML.Contains("guiaResumoInternacao"))
  795. {
  796. cXMLPart = cPart;
  797. tipoCT = TipoCTOPM.ct_OPMUtilizada;
  798. tipoGuia = TipoGuia.Resumo_Internação;
  799. break;
  800. }
  801. else if (cPart.XML.Contains("guiaSolicInternacao"))
  802. {
  803. cXMLPart = cPart;
  804. tipoCT = TipoCTOPM.ct_OPMSolicitadas;
  805. tipoGuia = TipoGuia.Solicitação_Internação;
  806. break;
  807. }
  808. else if (cPart.XML.Contains("guiaSolicitacaoSADT"))
  809. {
  810. cXMLPart = cPart;
  811. tipoCT = TipoCTOPM.ct_OPMSolicitadas;
  812. tipoGuia = TipoGuia.Solicitação_SADT;
  813. break;
  814. }
  815. else if (cPart.XML.Contains("guiaSolicitacaoProrrogacao"))
  816. {
  817. cXMLPart = cPart;
  818. tipoCT = TipoCTOPM.ct_OPMSolicitadas;
  819. tipoGuia = TipoGuia.Solicitação_Prorrogação;
  820. break;
  821. }
  822. }
  823. if (cXMLPart != null)
  824. {
  825. XDocument xPart = XDocument.Parse(cXMLPart.XML);
  826. DataOfAvailableRow infoOfAvailableRow = new DataOfAva