@nixweb/nixloc-ui 1.16.0 → 1.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (998) hide show
  1. package/.github/workflows/publish-npm.yml +32 -32
  2. package/@nixweb/nixloc-ui/.github/workflows/publish-npm.yml +32 -32
  3. package/@nixweb/nixloc-ui/README.md +24 -24
  4. package/@nixweb/nixloc-ui/babel.config.js +5 -5
  5. package/@nixweb/nixloc-ui/config/dev.env.js +8 -8
  6. package/@nixweb/nixloc-ui/config/index.js +69 -69
  7. package/@nixweb/nixloc-ui/config/prod.env.js +5 -5
  8. package/@nixweb/nixloc-ui/docs/src/component/template/ViewTemplateReportPreview.drawio +209 -209
  9. package/@nixweb/nixloc-ui/docs/src/store/modulos/relatorio.drawio +36 -36
  10. package/@nixweb/nixloc-ui/package.json +88 -88
  11. package/@nixweb/nixloc-ui/public/index.html +19 -19
  12. package/@nixweb/nixloc-ui/public/styles/app.css +52 -52
  13. package/@nixweb/nixloc-ui/src/App.vue +13 -13
  14. package/@nixweb/nixloc-ui/src/component/forms/Button.vue +163 -163
  15. package/@nixweb/nixloc-ui/src/component/forms/ButtonFilter.vue +74 -74
  16. package/@nixweb/nixloc-ui/src/component/forms/ButtonGroup.vue +66 -66
  17. package/@nixweb/nixloc-ui/src/component/forms/ButtonSub.vue +97 -97
  18. package/@nixweb/nixloc-ui/src/component/forms/ButtonToggle.vue +76 -76
  19. package/@nixweb/nixloc-ui/src/component/forms/CheckboxGroup.vue +69 -69
  20. package/@nixweb/nixloc-ui/src/component/forms/CheckboxServer.vue +192 -192
  21. package/@nixweb/nixloc-ui/src/component/forms/CheckboxSimple.vue +60 -60
  22. package/@nixweb/nixloc-ui/src/component/forms/Color.vue +38 -38
  23. package/@nixweb/nixloc-ui/src/component/forms/DateTime.vue +170 -170
  24. package/@nixweb/nixloc-ui/src/component/forms/DateYearMonth.vue +193 -193
  25. package/@nixweb/nixloc-ui/src/component/forms/Dropdown.vue +236 -236
  26. package/@nixweb/nixloc-ui/src/component/forms/EditorHtml.vue +132 -132
  27. package/@nixweb/nixloc-ui/src/component/forms/FileUpload.vue +170 -170
  28. package/@nixweb/nixloc-ui/src/component/forms/ImageUpload.vue +214 -214
  29. package/@nixweb/nixloc-ui/src/component/forms/IncrementDecrement.vue +148 -148
  30. package/@nixweb/nixloc-ui/src/component/forms/InputAddressGoogle.vue +171 -171
  31. package/@nixweb/nixloc-ui/src/component/forms/InputCallToAction.vue +135 -135
  32. package/@nixweb/nixloc-ui/src/component/forms/InputDecimal.vue +153 -153
  33. package/@nixweb/nixloc-ui/src/component/forms/InputDecimalDiscount.vue +77 -77
  34. package/@nixweb/nixloc-ui/src/component/forms/InputNumber.vue +160 -160
  35. package/@nixweb/nixloc-ui/src/component/forms/InputPassword.vue +148 -148
  36. package/@nixweb/nixloc-ui/src/component/forms/InputTag.vue +124 -124
  37. package/@nixweb/nixloc-ui/src/component/forms/InputText.vue +174 -174
  38. package/@nixweb/nixloc-ui/src/component/forms/InputTextEdit.vue +69 -69
  39. package/@nixweb/nixloc-ui/src/component/forms/InputWhatsApp.vue +47 -47
  40. package/@nixweb/nixloc-ui/src/component/forms/Modal.vue +57 -57
  41. package/@nixweb/nixloc-ui/src/component/forms/RadioGroup.vue +91 -91
  42. package/@nixweb/nixloc-ui/src/component/forms/Select.vue +378 -378
  43. package/@nixweb/nixloc-ui/src/component/forms/SelectStatic.vue +198 -198
  44. package/@nixweb/nixloc-ui/src/component/forms/SideBar.vue +99 -99
  45. package/@nixweb/nixloc-ui/src/component/forms/Slider.vue +18 -18
  46. package/@nixweb/nixloc-ui/src/component/forms/TextArea.vue +138 -138
  47. package/@nixweb/nixloc-ui/src/component/forms/Toggle.vue +72 -72
  48. package/@nixweb/nixloc-ui/src/component/layout/Account.vue +131 -131
  49. package/@nixweb/nixloc-ui/src/component/layout/Alert.vue +88 -88
  50. package/@nixweb/nixloc-ui/src/component/layout/Badge.vue +111 -111
  51. package/@nixweb/nixloc-ui/src/component/layout/BarFloating.vue +67 -67
  52. package/@nixweb/nixloc-ui/src/component/layout/FixedBar.vue +103 -103
  53. package/@nixweb/nixloc-ui/src/component/layout/Gantt.vue +128 -128
  54. package/@nixweb/nixloc-ui/src/component/layout/Header.vue +56 -56
  55. package/@nixweb/nixloc-ui/src/component/layout/HideShow.vue +61 -61
  56. package/@nixweb/nixloc-ui/src/component/layout/IconMolded.vue +58 -58
  57. package/@nixweb/nixloc-ui/src/component/layout/LoadingFullPage.vue +27 -27
  58. package/@nixweb/nixloc-ui/src/component/layout/Menu.vue +287 -287
  59. package/@nixweb/nixloc-ui/src/component/layout/Molded.vue +30 -30
  60. package/@nixweb/nixloc-ui/src/component/layout/NewAccount.vue +136 -136
  61. package/@nixweb/nixloc-ui/src/component/layout/NewHeader.vue +59 -59
  62. package/@nixweb/nixloc-ui/src/component/layout/NewIconMolded.vue +70 -70
  63. package/@nixweb/nixloc-ui/src/component/layout/NewMenu.vue +455 -455
  64. package/@nixweb/nixloc-ui/src/component/layout/Panel.vue +185 -185
  65. package/@nixweb/nixloc-ui/src/component/layout/Popover.vue +126 -126
  66. package/@nixweb/nixloc-ui/src/component/layout/ScrollBar.vue +57 -57
  67. package/@nixweb/nixloc-ui/src/component/layout/Tab.vue +135 -135
  68. package/@nixweb/nixloc-ui/src/component/layout/Tag.vue +97 -97
  69. package/@nixweb/nixloc-ui/src/component/layout/Wizard.vue +211 -211
  70. package/@nixweb/nixloc-ui/src/component/rental/DisplayCalculatePeriod.vue +48 -48
  71. package/@nixweb/nixloc-ui/src/component/rental/DisplayPeriodRent.vue +55 -55
  72. package/@nixweb/nixloc-ui/src/component/rental/DisplayTotalization.vue +86 -86
  73. package/@nixweb/nixloc-ui/src/component/report/Fields.vue +108 -108
  74. package/@nixweb/nixloc-ui/src/component/report/Report.vue +313 -313
  75. package/@nixweb/nixloc-ui/src/component/report/ReportTable.vue +111 -111
  76. package/@nixweb/nixloc-ui/src/component/report/Totalization.vue +33 -33
  77. package/@nixweb/nixloc-ui/src/component/shared/CodeEditor.vue +128 -128
  78. package/@nixweb/nixloc-ui/src/component/shared/Collapse.vue +131 -131
  79. package/@nixweb/nixloc-ui/src/component/shared/Confirmation.vue +74 -74
  80. package/@nixweb/nixloc-ui/src/component/shared/DocumentEditor.vue +99 -99
  81. package/@nixweb/nixloc-ui/src/component/shared/DocumentPreview.vue +81 -81
  82. package/@nixweb/nixloc-ui/src/component/shared/DocumentPublic.vue +33 -33
  83. package/@nixweb/nixloc-ui/src/component/shared/ExportExcel.vue +56 -56
  84. package/@nixweb/nixloc-ui/src/component/shared/ExportPDF.vue +116 -116
  85. package/@nixweb/nixloc-ui/src/component/shared/FullCalendar.vue +173 -173
  86. package/@nixweb/nixloc-ui/src/component/shared/HeaderReport.vue +47 -47
  87. package/@nixweb/nixloc-ui/src/component/shared/HorizontalFilter.vue +64 -64
  88. package/@nixweb/nixloc-ui/src/component/shared/ListNotifications.vue +70 -70
  89. package/@nixweb/nixloc-ui/src/component/shared/Loading.vue +107 -107
  90. package/@nixweb/nixloc-ui/src/component/shared/LoadingCard.vue +64 -64
  91. package/@nixweb/nixloc-ui/src/component/shared/LoadingMoreButton.vue +23 -23
  92. package/@nixweb/nixloc-ui/src/component/shared/Messages.vue +109 -109
  93. package/@nixweb/nixloc-ui/src/component/shared/PDFViewer.vue +24 -24
  94. package/@nixweb/nixloc-ui/src/component/shared/Pagination.vue +108 -108
  95. package/@nixweb/nixloc-ui/src/component/shared/ParameterLegend.vue +169 -169
  96. package/@nixweb/nixloc-ui/src/component/shared/ProgressBar.vue +25 -25
  97. package/@nixweb/nixloc-ui/src/component/shared/QueryButton.vue +66 -66
  98. package/@nixweb/nixloc-ui/src/component/shared/Report.vue +200 -200
  99. package/@nixweb/nixloc-ui/src/component/shared/SaveCancel.vue +99 -99
  100. package/@nixweb/nixloc-ui/src/component/shared/Search.vue +174 -174
  101. package/@nixweb/nixloc-ui/src/component/shared/SelectOption.vue +162 -162
  102. package/@nixweb/nixloc-ui/src/component/shared/Table.vue +174 -174
  103. package/@nixweb/nixloc-ui/src/component/shared/TableButton.vue +36 -36
  104. package/@nixweb/nixloc-ui/src/component/shared/TableDraggable.vue +117 -117
  105. package/@nixweb/nixloc-ui/src/component/shared/TableImport.vue +93 -93
  106. package/@nixweb/nixloc-ui/src/component/shared/TableItem.vue +214 -214
  107. package/@nixweb/nixloc-ui/src/component/shared/TableTotalPerPage.vue +77 -77
  108. package/@nixweb/nixloc-ui/src/component/shared/TableTotalRecords.vue +44 -44
  109. package/@nixweb/nixloc-ui/src/component/shared/TableTotalization.vue +47 -47
  110. package/@nixweb/nixloc-ui/src/component/shared/TimeLine.vue +41 -41
  111. package/@nixweb/nixloc-ui/src/component/shared/Timer.vue +77 -77
  112. package/@nixweb/nixloc-ui/src/component/shared/Tip.vue +42 -42
  113. package/@nixweb/nixloc-ui/src/component/shared/Toast.vue +69 -69
  114. package/@nixweb/nixloc-ui/src/component/shared/ToggleTheme.vue +127 -127
  115. package/@nixweb/nixloc-ui/src/component/shared/TotalizationReport.vue +86 -86
  116. package/@nixweb/nixloc-ui/src/component/shared/VerticalFilter.vue +97 -97
  117. package/@nixweb/nixloc-ui/src/component/shared/automation/ActivitiesList.vue +43 -43
  118. package/@nixweb/nixloc-ui/src/component/shared/automation/AddRule.vue +60 -60
  119. package/@nixweb/nixloc-ui/src/component/shared/automation/AutomationBuilder.vue +26 -26
  120. package/@nixweb/nixloc-ui/src/component/shared/automation/DynamicComponentList.vue +85 -85
  121. package/@nixweb/nixloc-ui/src/component/shared/automation/SelectRule.vue +97 -97
  122. package/@nixweb/nixloc-ui/src/component/shared/automation/components/BillingByRent.vue +97 -97
  123. package/@nixweb/nixloc-ui/src/component/shared/automation/components/SendEmail.vue +93 -93
  124. package/@nixweb/nixloc-ui/src/component/shared/file-manager/FileManager.vue +390 -390
  125. package/@nixweb/nixloc-ui/src/component/shared/filter-builder/FilterBuilder.vue +220 -220
  126. package/@nixweb/nixloc-ui/src/component/shared/filter-builder/FilterQuery.vue +94 -94
  127. package/@nixweb/nixloc-ui/src/component/shared/query-builder/AddRule.vue +203 -203
  128. package/@nixweb/nixloc-ui/src/component/shared/query-builder/ConvertToOdata.js +86 -86
  129. package/@nixweb/nixloc-ui/src/component/shared/query-builder/DynamicComponent.vue +161 -161
  130. package/@nixweb/nixloc-ui/src/component/shared/query-builder/DynamicComponentList.vue +70 -70
  131. package/@nixweb/nixloc-ui/src/component/shared/query-builder/Fields.vue +93 -93
  132. package/@nixweb/nixloc-ui/src/component/shared/query-builder/QueryBuilder.vue +69 -69
  133. package/@nixweb/nixloc-ui/src/component/shared/query-builder/Rules.vue +68 -68
  134. package/@nixweb/nixloc-ui/src/component/shared/query-builder/SelectRule.vue +97 -97
  135. package/@nixweb/nixloc-ui/src/component/shared/query-builder/Tags.vue +59 -59
  136. package/@nixweb/nixloc-ui/src/component/shared/query-builder/utilities.js +21 -21
  137. package/@nixweb/nixloc-ui/src/component/signature/Payment.vue +160 -160
  138. package/@nixweb/nixloc-ui/src/component/signature/Warning.vue +75 -75
  139. package/@nixweb/nixloc-ui/src/component/template/ListViewWithDataHandler.vue +429 -429
  140. package/@nixweb/nixloc-ui/src/component/template/ReportCreateUpdate.vue +110 -110
  141. package/@nixweb/nixloc-ui/src/component/template/ViewTemplateConfiguration.vue +64 -64
  142. package/@nixweb/nixloc-ui/src/component/template/ViewTemplateDocumentView.vue +213 -213
  143. package/@nixweb/nixloc-ui/src/component/template/ViewTemplateImportFile.vue +347 -347
  144. package/@nixweb/nixloc-ui/src/component/template/ViewTemplateReportList.vue +217 -217
  145. package/@nixweb/nixloc-ui/src/component/template/ViewTemplateReportPreview.vue +432 -432
  146. package/@nixweb/nixloc-ui/src/component/template/ViewTemplateSelectOption.vue +46 -46
  147. package/@nixweb/nixloc-ui/src/component/template/ViewTemplateWithSalveCancel.vue +32 -32
  148. package/@nixweb/nixloc-ui/src/component/template/ViewTemplateWithTable.vue +62 -62
  149. package/@nixweb/nixloc-ui/src/component/template/model/Report.js +5 -5
  150. package/@nixweb/nixloc-ui/src/component/training/Course.vue +343 -343
  151. package/@nixweb/nixloc-ui/src/component/training/CourseView.vue +189 -189
  152. package/@nixweb/nixloc-ui/src/component/value-objects/Address.js +10 -10
  153. package/@nixweb/nixloc-ui/src/component/value-objects/Address.vue +157 -157
  154. package/@nixweb/nixloc-ui/src/component/value-objects/Contact.js +6 -6
  155. package/@nixweb/nixloc-ui/src/component/value-objects/Contact.vue +106 -106
  156. package/@nixweb/nixloc-ui/src/component/value-objects/Person.js +10 -10
  157. package/@nixweb/nixloc-ui/src/component/value-objects/Person.vue +129 -129
  158. package/@nixweb/nixloc-ui/src/config/axios.js +9 -9
  159. package/@nixweb/nixloc-ui/src/config/dicas.js +14 -14
  160. package/@nixweb/nixloc-ui/src/config/router.js +13 -13
  161. package/@nixweb/nixloc-ui/src/config/token.js +14 -14
  162. package/@nixweb/nixloc-ui/src/main.js +23 -23
  163. package/@nixweb/nixloc-ui/src/store/modules/automation.js +30 -30
  164. package/@nixweb/nixloc-ui/src/store/modules/generic.js +815 -815
  165. package/@nixweb/nixloc-ui/src/store/modules/report.js +277 -277
  166. package/@nixweb/nixloc-ui/src/store/modules/user.js +66 -66
  167. package/@nixweb/nixloc-ui/src/store/modules/util.js +25 -25
  168. package/@nixweb/nixloc-ui/src/store/modules/validation.js +38 -38
  169. package/@nixweb/nixloc-ui/src/store/store.js +13 -13
  170. package/README.md +24 -24
  171. package/babel.config.js +5 -5
  172. package/config/dev.env.js +8 -8
  173. package/config/index.js +69 -69
  174. package/config/prod.env.js +5 -5
  175. package/docs/src/component/template/ViewTemplateReportPreview.drawio +209 -209
  176. package/docs/src/store/modulos/relatorio.drawio +36 -36
  177. package/package.json +88 -88
  178. package/public/index.html +19 -19
  179. package/public/styles/app.css +52 -52
  180. package/src/App.vue +13 -296
  181. package/src/component/forms/Button.vue +162 -0
  182. package/src/component/forms/ButtonFilter.vue +104 -0
  183. package/src/component/forms/ButtonGroup.vue +67 -0
  184. package/src/component/forms/ButtonGroupInline.vue +210 -0
  185. package/src/component/forms/ButtonSub.vue +98 -0
  186. package/src/component/forms/ButtonToggle.vue +77 -0
  187. package/src/component/forms/CheckboxGroup.vue +69 -0
  188. package/src/component/forms/CheckboxServer.vue +237 -0
  189. package/src/component/forms/CheckboxSimple.vue +59 -0
  190. package/src/component/forms/Color.vue +38 -0
  191. package/src/component/forms/DateTime.vue +170 -0
  192. package/src/component/forms/DateYearMonth.vue +193 -0
  193. package/src/component/forms/Dropdown.vue +236 -0
  194. package/src/component/forms/EditorHtml.vue +132 -0
  195. package/src/component/forms/FileUpload.vue +170 -0
  196. package/src/component/forms/ImageUpload.vue +214 -0
  197. package/src/component/forms/IncrementDecrement.vue +151 -0
  198. package/src/component/forms/InputAddressGoogle.vue +171 -0
  199. package/src/component/forms/InputCallToAction.vue +135 -0
  200. package/src/component/forms/InputDecimal.vue +191 -0
  201. package/src/component/forms/InputDecimalDiscount.vue +147 -0
  202. package/src/component/forms/InputNumber.vue +160 -0
  203. package/src/component/forms/InputPassword.vue +148 -0
  204. package/src/component/forms/InputTag.vue +125 -0
  205. package/src/component/forms/InputText.vue +174 -0
  206. package/src/component/forms/InputTextEdit.vue +69 -0
  207. package/src/component/forms/InputWhatsApp.vue +48 -0
  208. package/src/component/forms/Modal.vue +86 -0
  209. package/src/component/forms/RadioGroup.vue +84 -0
  210. package/src/component/forms/Select.vue +336 -0
  211. package/src/component/forms/SelectStatic.vue +198 -0
  212. package/src/component/forms/SideBar.vue +100 -0
  213. package/src/component/forms/Slider.vue +18 -0
  214. package/src/component/forms/TextArea.vue +140 -0
  215. package/src/component/forms/Toggle.vue +72 -0
  216. package/src/component/layout/Account.vue +131 -0
  217. package/src/component/layout/Alert.vue +88 -0
  218. package/src/component/layout/AnimatedPhrase.vue +68 -0
  219. package/src/component/layout/Badge.vue +111 -0
  220. package/src/component/layout/BarFloating.vue +68 -0
  221. package/src/component/layout/BottomActionsBar.vue +205 -0
  222. package/src/component/layout/ColorPicker.vue +175 -0
  223. package/src/component/layout/FixedBar.vue +103 -0
  224. package/src/component/layout/Gantt.vue +128 -0
  225. package/src/component/layout/Header.vue +56 -0
  226. package/src/component/layout/HideShow.vue +62 -0
  227. package/src/component/layout/IconMolded.vue +59 -0
  228. package/src/component/layout/IconPicker.vue +161 -0
  229. package/src/component/layout/LoadingFullPage.vue +27 -0
  230. package/src/component/layout/Menu.vue +287 -0
  231. package/src/component/layout/Molded.vue +30 -0
  232. package/src/component/layout/NewAccount.vue +136 -0
  233. package/src/component/layout/NewHeader.vue +60 -0
  234. package/src/component/layout/NewIconMolded.vue +71 -0
  235. package/src/component/layout/NewMenu.vue +473 -0
  236. package/src/component/layout/Panel.vue +185 -0
  237. package/src/component/layout/Popover.vue +126 -0
  238. package/src/component/layout/ScrollBar.vue +70 -0
  239. package/src/component/layout/Tab.vue +259 -0
  240. package/src/component/layout/Tag.vue +97 -0
  241. package/src/component/layout/Tooltip.vue +155 -0
  242. package/src/component/layout/Wizard.vue +211 -0
  243. package/src/component/layout/Zoom.vue +111 -0
  244. package/src/component/rental/DisplayCalculatePeriod.vue +49 -0
  245. package/src/component/rental/DisplayPeriodRent.vue +55 -0
  246. package/src/component/rental/DisplayTotalization.vue +86 -0
  247. package/src/component/report/Fields.vue +109 -0
  248. package/src/{components/modules/finance/dre/ReportCrossTable.vue → component/report/Report.vue} +377 -312
  249. package/src/component/report/ReportTable.vue +112 -0
  250. package/src/component/report/Totalization.vue +34 -0
  251. package/src/component/shared/CodeEditor.vue +128 -0
  252. package/src/component/shared/Collapse.vue +131 -0
  253. package/src/component/shared/Confirmation.vue +74 -0
  254. package/src/component/shared/DocumentEditor.vue +99 -0
  255. package/src/component/shared/DocumentPreview.vue +105 -0
  256. package/src/component/shared/DocumentPublic.vue +33 -0
  257. package/src/component/shared/ExportExcel.vue +56 -0
  258. package/src/component/shared/ExportPDF.vue +116 -0
  259. package/src/component/shared/FullCalendar.vue +176 -0
  260. package/src/component/shared/HeaderReport.vue +47 -0
  261. package/src/component/shared/HorizontalFilter.vue +64 -0
  262. package/src/component/shared/ListNotifications.vue +70 -0
  263. package/src/component/shared/Loading.vue +110 -0
  264. package/src/component/shared/LoadingCard.vue +65 -0
  265. package/src/component/shared/LoadingMoreButton.vue +23 -0
  266. package/src/component/shared/Messages.vue +139 -0
  267. package/src/component/shared/PDFViewer.vue +24 -0
  268. package/src/component/shared/Pagination.vue +113 -0
  269. package/src/component/shared/ParameterLegend.vue +169 -0
  270. package/src/component/shared/ProgressBar.vue +25 -0
  271. package/src/component/shared/QueryButton.vue +66 -0
  272. package/src/component/shared/Report.vue +250 -0
  273. package/src/component/shared/SaveCancel.vue +117 -0
  274. package/src/component/shared/Search.vue +174 -0
  275. package/src/component/shared/SelectOption.vue +162 -0
  276. package/src/component/shared/Table.vue +232 -0
  277. package/src/component/shared/TableButton.vue +36 -0
  278. package/src/component/shared/TableDraggable.vue +117 -0
  279. package/src/component/shared/TableImport.vue +93 -0
  280. package/src/component/shared/TableItem.vue +228 -0
  281. package/src/component/shared/TableTotalPerPage.vue +114 -0
  282. package/src/component/shared/TableTotalRecords.vue +44 -0
  283. package/src/component/shared/TableTotalization.vue +47 -0
  284. package/src/component/shared/TimeLine.vue +42 -0
  285. package/src/component/shared/Timer.vue +78 -0
  286. package/src/component/shared/Tip.vue +42 -0
  287. package/src/component/shared/Toast.vue +69 -0
  288. package/src/component/shared/ToggleTheme.vue +128 -0
  289. package/src/component/shared/TotalizationReport.vue +86 -0
  290. package/src/component/shared/VerticalFilter.vue +97 -0
  291. package/src/component/shared/actions/ActionButtons.vue +53 -0
  292. package/src/component/shared/actions/ActionErrorContent.vue +103 -0
  293. package/src/component/shared/actions/ActionFooter.vue +99 -0
  294. package/src/component/shared/actions/ActionHeader.vue +110 -0
  295. package/src/component/shared/actions/ActionItemList.vue +143 -0
  296. package/src/component/shared/actions/ActionsOptions.vue +209 -0
  297. package/src/component/shared/actions/ActionsSelected.vue +262 -0
  298. package/src/component/shared/automation/ActivitiesList.vue +44 -0
  299. package/src/component/shared/automation/AddRule.vue +61 -0
  300. package/src/component/shared/automation/AutomationBuilder.vue +27 -0
  301. package/src/component/shared/automation/DynamicComponentList.vue +86 -0
  302. package/src/component/shared/automation/SelectRule.vue +98 -0
  303. package/src/component/shared/automation/components/BillingByRent.vue +98 -0
  304. package/src/component/shared/automation/components/SendEmail.vue +94 -0
  305. package/src/component/shared/file-manager/FileManager.vue +391 -0
  306. package/src/component/shared/filter-builder/FilterBuilder.vue +221 -0
  307. package/src/component/shared/filter-builder/FilterQuery.vue +95 -0
  308. package/src/component/shared/query-builder/AddRule.vue +203 -0
  309. package/src/component/shared/query-builder/ConvertToOdata.js +86 -0
  310. package/src/component/shared/query-builder/DynamicComponent.vue +161 -0
  311. package/src/component/shared/query-builder/DynamicComponentList.vue +70 -0
  312. package/src/component/shared/query-builder/Fields.vue +93 -0
  313. package/src/component/shared/query-builder/QueryBuilder.vue +69 -0
  314. package/src/component/shared/query-builder/Rules.vue +68 -0
  315. package/src/component/shared/query-builder/SelectRule.vue +97 -0
  316. package/src/component/shared/query-builder/Tags.vue +59 -0
  317. package/src/component/shared/query-builder/utilities.js +22 -0
  318. package/src/component/signature/Payment.vue +161 -0
  319. package/src/{components/modules/adm/plan → component/signature}/Warning.vue +75 -73
  320. package/src/component/template/ListViewWithDataHandler.vue +434 -0
  321. package/src/component/template/ReportCreateUpdate.vue +110 -0
  322. package/src/component/template/ViewTemplateConfiguration.vue +63 -0
  323. package/src/component/template/ViewTemplateDocumentView.vue +213 -0
  324. package/src/component/template/ViewTemplateImportFile.vue +347 -0
  325. package/src/component/template/ViewTemplateReportList.vue +240 -0
  326. package/src/component/template/ViewTemplateReportPreview.vue +521 -0
  327. package/src/component/template/ViewTemplateSelectOption.vue +46 -0
  328. package/src/component/template/ViewTemplateWithSalveCancel.vue +32 -0
  329. package/src/component/template/ViewTemplateWithTable.vue +66 -0
  330. package/src/component/template/model/Report.js +6 -0
  331. package/src/component/training/Course.vue +344 -0
  332. package/src/component/training/CourseView.vue +199 -0
  333. package/src/component/value-objects/Address.js +11 -0
  334. package/src/component/value-objects/Address.vue +173 -0
  335. package/src/component/value-objects/Contact.js +7 -0
  336. package/src/component/value-objects/Contact.vue +106 -0
  337. package/src/component/value-objects/Person.js +10 -0
  338. package/src/component/value-objects/Person.vue +130 -0
  339. package/src/config/axios.js +9 -32
  340. package/src/config/dicas.js +14 -14
  341. package/src/config/router.js +13 -352
  342. package/src/config/token.js +14 -13
  343. package/src/main.js +23 -75
  344. package/src/store/modules/automation.js +31 -0
  345. package/src/store/modules/generic.js +897 -0
  346. package/src/store/modules/report.js +278 -0
  347. package/src/store/modules/user.js +70 -0
  348. package/src/store/modules/util.js +26 -0
  349. package/src/store/modules/validation.js +39 -0
  350. package/src/store/store.js +13 -23
  351. package/src/assets/logo.png +0 -0
  352. package/src/assets/nfse-nacional.svg +0 -32
  353. package/src/components/modules/adm/audit-log/TimelineLog.vue +0 -557
  354. package/src/components/modules/adm/authorization/Authorization.vue +0 -81
  355. package/src/components/modules/adm/authorization/AuthorizationCreate.vue +0 -63
  356. package/src/components/modules/adm/authorization/AuthorizationRow.vue +0 -304
  357. package/src/components/modules/adm/authorization/AuthorizationTable.vue +0 -117
  358. package/src/components/modules/adm/company/Company.js +0 -9
  359. package/src/components/modules/adm/company/Company.vue +0 -124
  360. package/src/components/modules/adm/document/Document.js +0 -41
  361. package/src/components/modules/adm/document/DocumentCreateUpdate.vue +0 -272
  362. package/src/components/modules/adm/document/DocumentPreview.vue +0 -283
  363. package/src/components/modules/adm/document/Link.vue +0 -118
  364. package/src/components/modules/adm/document/PrintDetail.vue +0 -127
  365. package/src/components/modules/adm/document/PrintPreview.vue +0 -127
  366. package/src/components/modules/adm/document/SelectOptionDocument.vue +0 -222
  367. package/src/components/modules/adm/document/SendMail.vue +0 -248
  368. package/src/components/modules/adm/document/SendSignature.vue +0 -289
  369. package/src/components/modules/adm/document/TemplateDocument.vue +0 -133
  370. package/src/components/modules/adm/login/ConfirmMailMobile.vue +0 -101
  371. package/src/components/modules/adm/login/ForgotPassword.js +0 -8
  372. package/src/components/modules/adm/login/ForgotPassword.vue +0 -144
  373. package/src/components/modules/adm/login/Login.js +0 -7
  374. package/src/components/modules/adm/login/Login.vue +0 -195
  375. package/src/components/modules/adm/login/Menu.js +0 -992
  376. package/src/components/modules/adm/login/RandomImages.vue +0 -64
  377. package/src/components/modules/adm/login/RefreshUserLogged.vue +0 -59
  378. package/src/components/modules/adm/login/ResetPassword.vue +0 -158
  379. package/src/components/modules/adm/login/SendConfirmMailMobile.vue +0 -72
  380. package/src/components/modules/adm/login/SignalrUser.vue +0 -166
  381. package/src/components/modules/adm/login/__Menu.js +0 -1000
  382. package/src/components/modules/adm/notification/NotificationConfig.vue +0 -827
  383. package/src/components/modules/adm/parameter/ParameterBilling.js +0 -9
  384. package/src/components/modules/adm/parameter/ParameterBilling.vue +0 -91
  385. package/src/components/modules/adm/parameter/ParameterDangerZone.js +0 -12
  386. package/src/components/modules/adm/parameter/ParameterDangerZone.vue +0 -159
  387. package/src/components/modules/adm/parameter/ParameterOperational.js +0 -8
  388. package/src/components/modules/adm/parameter/ParameterOperational.vue +0 -91
  389. package/src/components/modules/adm/parameter/ParameterRental.js +0 -43
  390. package/src/components/modules/adm/parameter/ParameterRental.vue +0 -226
  391. package/src/components/modules/adm/parameter/ParameterStock.js +0 -14
  392. package/src/components/modules/adm/parameter/ParameterStock.vue +0 -127
  393. package/src/components/modules/adm/parameter/ParameterSystem.js +0 -29
  394. package/src/components/modules/adm/parameter/ParameterSystem.vue +0 -118
  395. package/src/components/modules/adm/plan/Nfse.vue +0 -121
  396. package/src/components/modules/adm/plan/Payment.vue +0 -125
  397. package/src/components/modules/adm/register/Register.js +0 -9
  398. package/src/components/modules/adm/register/Register.vue +0 -247
  399. package/src/components/modules/adm/store/PurchaseHistory.vue +0 -178
  400. package/src/components/modules/adm/store/Store.vue +0 -492
  401. package/src/components/modules/adm/store/Success.vue +0 -79
  402. package/src/components/modules/adm/store/Term.vue +0 -211
  403. package/src/components/modules/adm/user/Profile.vue +0 -131
  404. package/src/components/modules/adm/user/Rules.vue +0 -232
  405. package/src/components/modules/adm/user/User.js +0 -35
  406. package/src/components/modules/adm/user/UserCreateUpdate.vue +0 -277
  407. package/src/components/modules/adm/user/UserRule.vue +0 -78
  408. package/src/components/modules/automation/AutomationBuilder.vue +0 -54
  409. package/src/components/modules/billing/billet/Billet.vue +0 -133
  410. package/src/components/modules/billing/billet/CancelBillet.vue +0 -68
  411. package/src/components/modules/billing/billet/CheckBillet.vue +0 -122
  412. package/src/components/modules/billing/billet/CreateBillet.vue +0 -83
  413. package/src/components/modules/billing/billet/PDFBillet.vue +0 -116
  414. package/src/components/modules/billing/billet/UpdateBillet.vue +0 -78
  415. package/src/components/modules/billing/billet-config/BilletConfig.js +0 -12
  416. package/src/components/modules/billing/billet-config/BilletConfigCreateUpdate.vue +0 -91
  417. package/src/components/modules/billing/generate-billing/GenerateBilling.vue +0 -371
  418. package/src/components/modules/billing/generate-billing/GenerateInvoice.vue +0 -98
  419. package/src/components/modules/billing/generate-billing/GenerateTaxDocument.vue +0 -180
  420. package/src/components/modules/billing/generate-billing/InvoiceOrTaxDocument.vue +0 -61
  421. package/src/components/modules/billing/generate-billing/ItemsRentForInvoice.vue +0 -205
  422. package/src/components/modules/billing/generate-billing/NewGenerateNfse.vue +0 -430
  423. package/src/components/modules/billing/generate-billing/SuccessBilling.vue +0 -149
  424. package/src/components/modules/billing/history-billet/HistoryBillet.vue +0 -85
  425. package/src/components/modules/billing/invoice/DropdownOptionsInvoice.vue +0 -219
  426. package/src/components/modules/billing/invoice/Invoice.js +0 -30
  427. package/src/components/modules/billing/invoice/InvoiceCreateUpdate.vue +0 -209
  428. package/src/components/modules/billing/invoice/InvoiceTotalization.vue +0 -62
  429. package/src/components/modules/billing/items-invoice/ItemsInvoice.js +0 -20
  430. package/src/components/modules/billing/items-invoice/ItemsInvoiceCreateUpdate.vue +0 -138
  431. package/src/components/modules/billing/items-invoice/ItemsInvoiceList.vue +0 -235
  432. package/src/components/modules/cashier/CashierMovementList.vue +0 -186
  433. package/src/components/modules/cashier/CloseCashier.js +0 -9
  434. package/src/components/modules/cashier/CloseCashier.vue +0 -112
  435. package/src/components/modules/cashier/OpenCashier.js +0 -9
  436. package/src/components/modules/cashier/OpenCashier.vue +0 -154
  437. package/src/components/modules/cashier/Totalization.vue +0 -114
  438. package/src/components/modules/crm/category-customer/CategoryCustomer.js +0 -10
  439. package/src/components/modules/crm/category-customer/CategoryCustomerCreateUpdate.vue +0 -92
  440. package/src/components/modules/crm/category-customer/OriginCustomer.js +0 -10
  441. package/src/components/modules/crm/category-customer/OriginCustomerCreateUpdate.vue +0 -92
  442. package/src/components/modules/dashboard/alert/Alert.vue +0 -115
  443. package/src/components/modules/dashboard/billing/PanelBillet.vue +0 -211
  444. package/src/components/modules/dashboard/billing/PanelInvoice.vue +0 -189
  445. package/src/components/modules/dashboard/config/ConfigDashboard.vue +0 -253
  446. package/src/components/modules/dashboard/favorite/Favorite.js +0 -126
  447. package/src/components/modules/dashboard/favorite/Favorite.vue +0 -117
  448. package/src/components/modules/dashboard/favorite/FavoriteCreateRemove.vue +0 -136
  449. package/src/components/modules/dashboard/favorite/_Favorite.vue +0 -289
  450. package/src/components/modules/dashboard/finance/BalanceBank.vue +0 -124
  451. package/src/components/modules/dashboard/finance/BalanceFinance.vue +0 -186
  452. package/src/components/modules/dashboard/finance/BillsToPay.vue +0 -137
  453. package/src/components/modules/dashboard/finance/BillsToReceive.vue +0 -141
  454. package/src/components/modules/dashboard/finance/FinancialCard.vue +0 -132
  455. package/src/components/modules/dashboard/finance/PanelFinance.vue +0 -146
  456. package/src/components/modules/dashboard/finance/PanelPayReceive.vue +0 -228
  457. package/src/components/modules/dashboard/finance/PaymentByStatus.vue +0 -121
  458. package/src/components/modules/dashboard/operational/DeliveryDevolution.vue +0 -163
  459. package/src/components/modules/dashboard/operational/PanelOperational.vue +0 -230
  460. package/src/components/modules/dashboard/rent/BalanceRent.vue +0 -156
  461. package/src/components/modules/dashboard/rent/PanelRent.vue +0 -187
  462. package/src/components/modules/dashboard/rent/PanelRent_old.vue +0 -72
  463. package/src/components/modules/dashboard/rent/RankingCollaborator.vue +0 -166
  464. package/src/components/modules/dashboard/rent/StatusCard.vue +0 -134
  465. package/src/components/modules/dashboard/rent/TotalRent.vue +0 -133
  466. package/src/components/modules/dashboard/rent/_BalanceRent.vue +0 -176
  467. package/src/components/modules/dashboard/rent/_RankingCollaborator.vue +0 -173
  468. package/src/components/modules/dashboard/rent/_TotalRent.vue +0 -154
  469. package/src/components/modules/dashboard/shared/SelectFilter.vue +0 -136
  470. package/src/components/modules/dashboard/signature/PanelSignature.vue +0 -145
  471. package/src/components/modules/dashboard/stock/TotalStock.vue +0 -127
  472. package/src/components/modules/dashboard/task/PanelTask.vue +0 -122
  473. package/src/components/modules/finance/bank/Bank.js +0 -12
  474. package/src/components/modules/finance/bank/BankCreateUpdate.vue +0 -101
  475. package/src/components/modules/finance/bank-account/BankAccountCreateUpdate.js +0 -34
  476. package/src/components/modules/finance/bank-account/BankAccountCreateUpdate.vue +0 -234
  477. package/src/components/modules/finance/bank-reconciliation/AddTransactionsList.vue +0 -137
  478. package/src/components/modules/finance/bank-reconciliation/BankReconciliation.js +0 -7
  479. package/src/components/modules/finance/bank-reconciliation/BankReconciliation.vue +0 -164
  480. package/src/components/modules/finance/bank-reconciliation/ImportPluggy.vue +0 -95
  481. package/src/components/modules/finance/bank-reconciliation/ItemFixedBar.vue +0 -39
  482. package/src/components/modules/finance/bank-reconciliation/ItemReconciliation.vue +0 -125
  483. package/src/components/modules/finance/bank-reconciliation/ReconciliationList.vue +0 -185
  484. package/src/components/modules/finance/bank-reconciliation/SuggestionList.vue +0 -278
  485. package/src/components/modules/finance/bank-reconciliation/TransactionsList.vue +0 -211
  486. package/src/components/modules/finance/chart-of-accounts/ChartOfAccounts.js +0 -14
  487. package/src/components/modules/finance/chart-of-accounts/ChartOfAccountsCreateUpdate.vue +0 -108
  488. package/src/components/modules/finance/chart-of-accounts/ChartOfAccountsCreateUpdateList.vue +0 -260
  489. package/src/components/modules/finance/cost-center/CostCenter.js +0 -16
  490. package/src/components/modules/finance/cost-center/CostCenterCreateUpdate.vue +0 -128
  491. package/src/components/modules/finance/cost-center/CostCenterList.vue +0 -310
  492. package/src/components/modules/finance/dre/DataCrossTable.vue +0 -448
  493. package/src/components/modules/finance/new-payable-receivable/PayableReceivableConfig.vue +0 -35
  494. package/src/components/modules/finance/new-payable-receivable/PayableReceivableItem.vue +0 -448
  495. package/src/components/modules/finance/new-payable-receivable/PayableReceivableList.vue +0 -321
  496. package/src/components/modules/finance/new-payable-receivable/PayableReceivableSummary.vue +0 -179
  497. package/src/components/modules/finance/payable-receivable/PayableReceivable.js +0 -57
  498. package/src/components/modules/finance/payable-receivable/PayableReceivableCreateUpdate.vue +0 -357
  499. package/src/components/modules/finance/pluggy/PluggyConnect.vue +0 -91
  500. package/src/components/modules/finance/relationship-rent/RelationshipRentCreateUpdate.vue +0 -127
  501. package/src/components/modules/finance/relationship-rent/RelationshipRentList.vue +0 -164
  502. package/src/components/modules/finance/transfer-account/TransferAccount.js +0 -18
  503. package/src/components/modules/finance/transfer-account/TransferAccountCreateUpdate.vue +0 -130
  504. package/src/components/modules/finance/type-payment/TypePayment.js +0 -14
  505. package/src/components/modules/finance/type-payment/TypePaymentCreateUpdate.vue +0 -125
  506. package/src/components/modules/human-resources/collaborator/Collaborator.js +0 -38
  507. package/src/components/modules/human-resources/collaborator/CollaboratorCreate.vue +0 -125
  508. package/src/components/modules/human-resources/collaborator/CollaboratorCreateUpdate.vue +0 -200
  509. package/src/components/modules/human-resources/collaborator/ConsultantCreateUpdate.vue +0 -86
  510. package/src/components/modules/ia/Nixia.vue +0 -327
  511. package/src/components/modules/maintenance/items-order-service/ItemsOrderService.js +0 -44
  512. package/src/components/modules/maintenance/items-order-service/ItemsOrderServiceCreateUpdate.vue +0 -272
  513. package/src/components/modules/maintenance/items-order-service/ItemsOrderServiceItem.vue +0 -181
  514. package/src/components/modules/maintenance/items-order-service/ItemsOrderServiceList.vue +0 -132
  515. package/src/components/modules/maintenance/order-service/DropdownOptionsOs.vue +0 -66
  516. package/src/components/modules/maintenance/order-service/OrderService.js +0 -33
  517. package/src/components/modules/maintenance/order-service/OrderServiceCreateUpdate.vue +0 -198
  518. package/src/components/modules/maintenance/order-service/OrderServiceTotalization.vue +0 -49
  519. package/src/components/modules/maintenance/os-panel/OsPanel.vue +0 -269
  520. package/src/components/modules/maintenance/os-panel/OsPanelItem.vue +0 -199
  521. package/src/components/modules/maintenance/payment-os/PaymentOs.js +0 -19
  522. package/src/components/modules/maintenance/payment-os/PaymentOsCreateUpdate.vue +0 -130
  523. package/src/components/modules/maintenance/payment-os/PaymentOsList.vue +0 -249
  524. package/src/components/modules/notifications/Comunication.vue +0 -51
  525. package/src/components/modules/notifications/Emails.vue +0 -91
  526. package/src/components/modules/notifications/Messaging.vue +0 -40
  527. package/src/components/modules/operational/AddressRentList.vue +0 -124
  528. package/src/components/modules/operational/ButtonMovimentStock.vue +0 -136
  529. package/src/components/modules/operational/ItemsRentList.vue +0 -319
  530. package/src/components/modules/operational/OperationRent.vue +0 -138
  531. package/src/components/modules/operational/OsPanel.vue +0 -534
  532. package/src/components/modules/operational/ReservationPanel.vue +0 -224
  533. package/src/components/modules/operational/SearchByFilter.vue +0 -121
  534. package/src/components/modules/operational/SearchList.vue +0 -198
  535. package/src/components/modules/operational/TeamRent.vue +0 -152
  536. package/src/components/modules/operational/items-rent/ItemRentOperationalUpdate.vue +0 -131
  537. package/src/components/modules/operational/items-rent/ItemsRent.js +0 -28
  538. package/src/components/modules/operational/items-rent/ItemsRentOperationalCreate.vue +0 -122
  539. package/src/components/modules/operational/items-rent/ItemsRentOperationalList.vue +0 -481
  540. package/src/components/modules/operational/movement-bulk/Errors.vue +0 -28
  541. package/src/components/modules/operational/movement-bulk/ItemConflict.vue +0 -95
  542. package/src/components/modules/operational/movement-bulk/ItemMovementBulkOutPut.vue +0 -185
  543. package/src/components/modules/operational/movement-bulk/ItemsMovementBulk.vue +0 -189
  544. package/src/components/modules/operational/movement-bulk/ItemsPatrimony.vue +0 -98
  545. package/src/components/modules/operational/movement-bulk/ListItemGrouped.vue +0 -92
  546. package/src/components/modules/operational/movement-bulk/MovementBulk.js +0 -23
  547. package/src/components/modules/operational/movement-bulk/MovementBulkCreateUpdate.vue +0 -138
  548. package/src/components/modules/operational/movement-bulk/MovementBulkUpdate.vue +0 -493
  549. package/src/components/modules/operational/movement-bulk/OldMovementBulkUpdate.vue +0 -591
  550. package/src/components/modules/operational/movement-bulk/RentsDistribution.vue +0 -196
  551. package/src/components/modules/operational/movement-bulk/SuccessMovement.vue +0 -62
  552. package/src/components/modules/operational/rent/DropdownOptionsRentOperational.vue +0 -201
  553. package/src/components/modules/operational/rent/RentOperational.js +0 -40
  554. package/src/components/modules/operational/rent/RentOperationalCreateUpdate.vue +0 -336
  555. package/src/components/modules/pdv/rent/AddressRentList.vue +0 -135
  556. package/src/components/modules/pdv/rent/FinalizeRent.vue +0 -147
  557. package/src/components/modules/pdv/rent/ItemsRentList.vue +0 -235
  558. package/src/components/modules/pdv/rent/ItemsRentUpdate.vue +0 -137
  559. package/src/components/modules/pdv/rent/PrintPdv.vue +0 -84
  560. package/src/components/modules/pdv/rent/Rent.js +0 -12
  561. package/src/components/modules/pdv/rent/RentCreate.vue +0 -470
  562. package/src/components/modules/pdv/rent/SearchByBarcode.vue +0 -91
  563. package/src/components/modules/pdv/rent/SearchByFilter.vue +0 -120
  564. package/src/components/modules/pdv/rent/SearchList.vue +0 -159
  565. package/src/components/modules/pdv/rent/SearchManual.vue +0 -125
  566. package/src/components/modules/pdv/rent/SuccessPdvRent.vue +0 -82
  567. package/src/components/modules/planner/card/Card.js +0 -16
  568. package/src/components/modules/planner/card/CardCreate.vue +0 -78
  569. package/src/components/modules/planner/card/CardEdit.vue +0 -177
  570. package/src/components/modules/planner/card/JobCreateUpdate.vue +0 -120
  571. package/src/components/modules/planner/card/JobList.vue +0 -209
  572. package/src/components/modules/planner/card/RentLinked.vue +0 -70
  573. package/src/components/modules/planner/card/RentLinkedList.vue +0 -216
  574. package/src/components/modules/planner/card/ResponsibleUser.vue +0 -149
  575. package/src/components/modules/planner/comment/CommentListCreateEdit.vue +0 -253
  576. package/src/components/modules/planner/funnel/Funnel.js +0 -19
  577. package/src/components/modules/planner/funnel/FunnelCreateUpdate.vue +0 -151
  578. package/src/components/modules/planner/funnel/FunnelList.vue +0 -193
  579. package/src/components/modules/planner/kanban/Badge.vue +0 -19
  580. package/src/components/modules/planner/kanban/Card.vue +0 -271
  581. package/src/components/modules/planner/kanban/Kanban.vue +0 -496
  582. package/src/components/modules/planner/step/ColorStep.vue +0 -56
  583. package/src/components/modules/planner/step/SelectStep.vue +0 -135
  584. package/src/components/modules/rental/Rental.drawio +0 -85
  585. package/src/components/modules/rental/address-rent/AddressRent.js +0 -13
  586. package/src/components/modules/rental/address-rent/AddressRentCreateUpdate.vue +0 -149
  587. package/src/components/modules/rental/address-rent/AddressRentList.vue +0 -63
  588. package/src/components/modules/rental/address-rent/ImportAddress.vue +0 -58
  589. package/src/components/modules/rental/billing/InvoiceList.vue +0 -246
  590. package/src/components/modules/rental/clone-rent/CloneRent.vue +0 -144
  591. package/src/components/modules/rental/expense/Expense.js +0 -29
  592. package/src/components/modules/rental/expense/ExpenseCreateUpdate.vue +0 -111
  593. package/src/components/modules/rental/expense/ExpenseList.vue +0 -96
  594. package/src/components/modules/rental/group-rent/GroupRent.js +0 -10
  595. package/src/components/modules/rental/group-rent/GroupRentCreateUpdate.vue +0 -97
  596. package/src/components/modules/rental/items-kit-rent/ItemsKitRent.js +0 -18
  597. package/src/components/modules/rental/items-kit-rent/ItemsKitRentList.vue +0 -154
  598. package/src/components/modules/rental/items-kit-rent/ItemsKitRentUpdate.vue +0 -119
  599. package/src/components/modules/rental/items-rent/ApplyDiscount.vue +0 -52
  600. package/src/components/modules/rental/items-rent/DisableMovement.vue +0 -54
  601. package/src/components/modules/rental/items-rent/ItemRentFixedBar.vue +0 -198
  602. package/src/components/modules/rental/items-rent/ItemRentStockAvailability.vue +0 -120
  603. package/src/components/modules/rental/items-rent/ItemRentUpdate.vue +0 -222
  604. package/src/components/modules/rental/items-rent/ItemsAccessoryCreate.vue +0 -148
  605. package/src/components/modules/rental/items-rent/ItemsAccessoryList.vue +0 -269
  606. package/src/components/modules/rental/items-rent/ItemsRent.js +0 -40
  607. package/src/components/modules/rental/items-rent/ItemsRentCreate.vue +0 -181
  608. package/src/components/modules/rental/items-rent/ItemsRentList.vue +0 -566
  609. package/src/components/modules/rental/items-rent/ItemsRentStatusStock.vue +0 -121
  610. package/src/components/modules/rental/items-rent/ItemsRentalInvoice.vue +0 -45
  611. package/src/components/modules/rental/items-rent/ItemsRentalTotalization.vue +0 -73
  612. package/src/components/modules/rental/items-rent/RecalculateValue.vue +0 -52
  613. package/src/components/modules/rental/items-rent/UpdateStatusInvoicing.vue +0 -50
  614. package/src/components/modules/rental/kit-rent/KitRent.js +0 -16
  615. package/src/components/modules/rental/kit-rent/KitRentCreateUpdate.vue +0 -146
  616. package/src/components/modules/rental/maintenance/ItemsOsList.vue +0 -172
  617. package/src/components/modules/rental/moviment/MovimentList.vue +0 -374
  618. package/src/components/modules/rental/new-items-rent/ApplyDiscount.vue +0 -131
  619. package/src/components/modules/rental/new-items-rent/BadgeAvailabilityStock.vue +0 -110
  620. package/src/components/modules/rental/new-items-rent/BadgeStatusInvoice.vue +0 -73
  621. package/src/components/modules/rental/new-items-rent/BadgeStatusStock.vue +0 -144
  622. package/src/components/modules/rental/new-items-rent/BadgeTotalization.vue +0 -224
  623. package/src/components/modules/rental/new-items-rent/GroupDraggable.vue +0 -880
  624. package/src/components/modules/rental/new-items-rent/GroupSubgroupSelector.vue +0 -758
  625. package/src/components/modules/rental/new-items-rent/GroupSubgroupTransfer.vue +0 -58
  626. package/src/components/modules/rental/new-items-rent/GroupTemplateModal.vue +0 -368
  627. package/src/components/modules/rental/new-items-rent/IconTypeEquipament.vue +0 -24
  628. package/src/components/modules/rental/new-items-rent/InputSmartValue.vue +0 -97
  629. package/src/components/modules/rental/new-items-rent/ItemKitOrAccessoryList.vue +0 -177
  630. package/src/components/modules/rental/new-items-rent/ItemRentSection.vue +0 -134
  631. package/src/components/modules/rental/new-items-rent/ItemRentUpdate.vue +0 -158
  632. package/src/components/modules/rental/new-items-rent/ItemsAccessoryList.vue +0 -13
  633. package/src/components/modules/rental/new-items-rent/ItemsRent.js +0 -51
  634. package/src/components/modules/rental/new-items-rent/ItemsRentCreate.vue +0 -367
  635. package/src/components/modules/rental/new-items-rent/ItemsRentList.vue +0 -1445
  636. package/src/components/modules/rental/new-items-rent/ItemsRentRow.vue +0 -256
  637. package/src/components/modules/rental/new-items-rent/RecalculateValue.vue +0 -54
  638. package/src/components/modules/rental/new-items-rent/RemoveItem.vue +0 -93
  639. package/src/components/modules/rental/new-items-rent/SearchProductsToolbar.vue +0 -323
  640. package/src/components/modules/rental/nfse/NfseList.vue +0 -167
  641. package/src/components/modules/rental/nfse/NfseListItem.vue +0 -195
  642. package/src/components/modules/rental/payment-rent/PaymentRent.js +0 -20
  643. package/src/components/modules/rental/payment-rent/PaymentRentCreateUpdate.vue +0 -159
  644. package/src/components/modules/rental/payment-rent/PaymentRentList.vue +0 -216
  645. package/src/components/modules/rental/period-rental/GeneratePeriodRent.js +0 -8
  646. package/src/components/modules/rental/period-rental/GeneratePeriodRent.vue +0 -171
  647. package/src/components/modules/rental/period-rental/PeriodRent.js +0 -20
  648. package/src/components/modules/rental/period-rental/PeriodRentCreateUpdate.vue +0 -191
  649. package/src/components/modules/rental/period-rental/PeriodRentItem.vue +0 -64
  650. package/src/components/modules/rental/period-rental/PeriodRentList.vue +0 -61
  651. package/src/components/modules/rental/period-rental/SelectOptionPeriodRent.vue +0 -153
  652. package/src/components/modules/rental/rent/Rent.js +0 -50
  653. package/src/components/modules/rental/rent/RentAccept.vue +0 -52
  654. package/src/components/modules/rental/rent/RentArchive.vue +0 -40
  655. package/src/components/modules/rental/rent/RentCreateUpdate.vue +0 -640
  656. package/src/components/modules/rental/rent/RentProgress.vue +0 -47
  657. package/src/components/modules/rental/rent/RentReject.vue +0 -77
  658. package/src/components/modules/rental/rent/RentTotalizationRent.vue +0 -161
  659. package/src/components/modules/rental/shared/CollaboratorWithUser.vue +0 -84
  660. package/src/components/modules/rental/shared/CustomerWithCreate.vue +0 -79
  661. package/src/components/modules/rental/shared/DropdownOptionsRent.vue +0 -360
  662. package/src/components/modules/rental/shared/import-product-rent/ImportProductByRent.vue +0 -124
  663. package/src/components/modules/rental/shared/import-product-rent/ItemsImportList.vue +0 -198
  664. package/src/components/modules/rental/shared/import-product-rent/ItemsImportList_old.vue +0 -197
  665. package/src/components/modules/rental/team/Team.js +0 -31
  666. package/src/components/modules/rental/team/TeamCreateUpdate.vue +0 -149
  667. package/src/components/modules/rental/team/TeamList.vue +0 -174
  668. package/src/components/modules/rental/type-rent/TypeRent.js +0 -10
  669. package/src/components/modules/rental/type-rent/TypeRentCreateUpdate.vue +0 -111
  670. package/src/components/modules/rfid/linker-rfid/ProductRfidLinker.vue +0 -629
  671. package/src/components/modules/rfid/linker-rfid/ProductRfidLinkerList.vue +0 -399
  672. package/src/components/modules/rfid/linker-rfid/SuccessMessage.vue +0 -74
  673. package/src/components/modules/rfid/receive/ReceiveTags.vue +0 -472
  674. package/src/components/modules/shared/ParametersInfo.vue +0 -176
  675. package/src/components/modules/shared/address/Address.js +0 -32
  676. package/src/components/modules/shared/address/AddressCreateUpdate.vue +0 -134
  677. package/src/components/modules/shared/address/AddressList.vue +0 -101
  678. package/src/components/modules/shared/checklist/ChecklistCreateUpdateList.vue +0 -210
  679. package/src/components/modules/shared/contact/Contact.js +0 -20
  680. package/src/components/modules/shared/contact/ContactCreateUpdate.vue +0 -135
  681. package/src/components/modules/shared/contact/ContactList.vue +0 -100
  682. package/src/components/modules/shared/customer-supplier/CustomerSupplier.js +0 -53
  683. package/src/components/modules/shared/customer-supplier/CustomerSupplierCreate.vue +0 -164
  684. package/src/components/modules/shared/customer-supplier/CustomerSupplierCreateUpdate.vue +0 -350
  685. package/src/components/modules/shared/document-version/DocumentVersionList.vue +0 -112
  686. package/src/components/modules/shared/google-calendar/ErrorsGoogle.vue +0 -40
  687. package/src/components/modules/shared/google-calendar/GoogleCalendar.vue +0 -294
  688. package/src/components/modules/shared/google-calendar/NotificationSetting.vue +0 -141
  689. package/src/components/modules/shared/job/Job.js +0 -33
  690. package/src/components/modules/shared/job/JobCreateUpdate.vue +0 -408
  691. package/src/components/modules/shared/note/NoteListCreateEdit.vue +0 -308
  692. package/src/components/modules/shared/parameters/locacaoParameters.js +0 -56
  693. package/src/components/modules/shared/parameters/taxationParameters.js +0 -49
  694. package/src/components/modules/shared/payment-items/Payment.js +0 -18
  695. package/src/components/modules/shared/payment-items/PaymentCreate.vue +0 -127
  696. package/src/components/modules/shared/payment-items/PaymentUpdate.vue +0 -69
  697. package/src/components/modules/shared/payment-items/PaymentsList.vue +0 -170
  698. package/src/components/modules/shared/payment-items/RepeatPayment.vue +0 -108
  699. package/src/components/modules/shared/tag/Tag.js +0 -13
  700. package/src/components/modules/shared/tag/TagCreateUpdate.vue +0 -104
  701. package/src/components/modules/shared/tag/Tags.vue +0 -369
  702. package/src/components/modules/signature/send-signature/SendSingleSignature.vue +0 -57
  703. package/src/components/modules/signature/signature-config/SignatureConfig.vue +0 -118
  704. package/src/components/modules/signature/signature-file/SignatureFileList.vue +0 -125
  705. package/src/components/modules/signature/signer/SignerList.vue +0 -150
  706. package/src/components/modules/signature/signer/SignerListForMessaging.vue +0 -116
  707. package/src/components/modules/stock/accessory/Accessory.js +0 -16
  708. package/src/components/modules/stock/accessory/AccessoryList.vue +0 -134
  709. package/src/components/modules/stock/accessory/AccessoryUpdate.vue +0 -155
  710. package/src/components/modules/stock/availability-product/AvailabilityProduct.vue +0 -196
  711. package/src/components/modules/stock/category-product/CategoryProduct.js +0 -12
  712. package/src/components/modules/stock/category-product/CategoryProductCreateUpdate.vue +0 -102
  713. package/src/components/modules/stock/history-moviment/HistoryMoviment.vue +0 -92
  714. package/src/components/modules/stock/history-patrimony/HistoryPatrimony.vue +0 -85
  715. package/src/components/modules/stock/items-moviment/PatrimonyMoviment.vue +0 -134
  716. package/src/components/modules/stock/manufacturer/Manufacturer.js +0 -10
  717. package/src/components/modules/stock/manufacturer/ManufacturerCreateUpdate.vue +0 -111
  718. package/src/components/modules/stock/moviment/AddOrRemoveMaintenance.vue +0 -294
  719. package/src/components/modules/stock/moviment/ItemProductRent.vue +0 -114
  720. package/src/components/modules/stock/moviment/ItemProductSelected.vue +0 -78
  721. package/src/components/modules/stock/moviment/ItemsRentForRecalculatePrice.vue +0 -113
  722. package/src/components/modules/stock/moviment/PrintMoviment.vue +0 -70
  723. package/src/components/modules/stock/moviment/ProductAdd.vue +0 -224
  724. package/src/components/modules/stock/moviment/ProductRent.vue +0 -248
  725. package/src/components/modules/stock/moviment/ProductSelected.vue +0 -204
  726. package/src/components/modules/stock/moviment/RentAndSelected.vue +0 -61
  727. package/src/components/modules/stock/moviment/ReplacementPatrimony.vue +0 -273
  728. package/src/components/modules/stock/moviment/SuccessMoviment.vue +0 -100
  729. package/src/components/modules/stock/moviment/TotalizationItemsMoviment.vue +0 -86
  730. package/src/components/modules/stock/moviment/Warning.vue +0 -231
  731. package/src/components/modules/stock/moviment/output/CheckOutput.vue +0 -369
  732. package/src/components/modules/stock/moviment/output/GenerateOutput.vue +0 -149
  733. package/src/components/modules/stock/moviment/renewed/CheckRenewed.vue +0 -405
  734. package/src/components/modules/stock/moviment/renewed/GenerateRenewed.vue +0 -194
  735. package/src/components/modules/stock/moviment/return/CheckReturn.vue +0 -544
  736. package/src/components/modules/stock/moviment/return/GenerateReturn.vue +0 -127
  737. package/src/components/modules/stock/patrimony/Patrimony.js +0 -22
  738. package/src/components/modules/stock/patrimony/PatrimonyCreateUpdate.vue +0 -230
  739. package/src/components/modules/stock/patrimony/PatrimonyList.vue +0 -364
  740. package/src/components/modules/stock/price-table/PriceTable.js +0 -19
  741. package/src/components/modules/stock/price-table/PriceTableCreateUpdate.vue +0 -210
  742. package/src/components/modules/stock/price-table/PriceTableList.vue +0 -92
  743. package/src/components/modules/stock/product/Product.js +0 -56
  744. package/src/components/modules/stock/product/ProductCreateUpdate.vue +0 -360
  745. package/src/components/modules/stock/search-product/ProductItem.vue +0 -398
  746. package/src/components/modules/stock/search-product/SearchByBarcode.vue +0 -163
  747. package/src/components/modules/stock/search-product/SearchProduct.vue +0 -268
  748. package/src/components/modules/stock/search-product/SearchProduct_old.vue +0 -440
  749. package/src/components/modules/stock/shared/TimeLineAvailability.vue +0 -239
  750. package/src/components/modules/stock/type-product/TypeProduct.js +0 -12
  751. package/src/components/modules/stock/type-product/TypeProductCreateUpdate.vue +0 -108
  752. package/src/components/modules/stock/unit-of-measurement/UnitOfMeasurement.js +0 -12
  753. package/src/components/modules/stock/unit-of-measurement/UnitOfMeasurementCreateUpdate.vue +0 -124
  754. package/src/components/modules/supplier/items-supplier-order/ItemsSupplierOrder.js +0 -22
  755. package/src/components/modules/supplier/items-supplier-order/ItemsSupplierOrderCreate.vue +0 -78
  756. package/src/components/modules/supplier/items-supplier-order/ItemsSupplierOrderFixedBar.vue +0 -112
  757. package/src/components/modules/supplier/items-supplier-order/ItemsSupplierOrderList.vue +0 -251
  758. package/src/components/modules/supplier/items-supplier-order/ItemsSupplierOrderUpdate.vue +0 -124
  759. package/src/components/modules/supplier/payment-supplier-order/PaymentSupplierOrder.js +0 -17
  760. package/src/components/modules/supplier/payment-supplier-order/PaymentSupplierOrderCreateUpdate.vue +0 -128
  761. package/src/components/modules/supplier/payment-supplier-order/PaymentSupplierOrderList.vue +0 -199
  762. package/src/components/modules/supplier/shared/SupplierWithCreate.vue +0 -80
  763. package/src/components/modules/supplier/supplier-order/DropdownOptionsSupplierOrder.vue +0 -190
  764. package/src/components/modules/supplier/supplier-order/SupplierOrder.js +0 -51
  765. package/src/components/modules/supplier/supplier-order/SupplierOrderAccept.vue +0 -39
  766. package/src/components/modules/supplier/supplier-order/SupplierOrderArchive.vue +0 -40
  767. package/src/components/modules/supplier/supplier-order/SupplierOrderCreateUpdate.vue +0 -301
  768. package/src/components/modules/supplier/supplier-order/SupplierOrderProgress.vue +0 -52
  769. package/src/components/modules/supplier/supplier-order/SupplierOrderReject.vue +0 -51
  770. package/src/components/modules/tax-document/certificate/Certificate.vue +0 -193
  771. package/src/components/modules/tax-document/cfop/Cfop.js +0 -12
  772. package/src/components/modules/tax-document/cfop/CfopCreateUpdate.vue +0 -96
  773. package/src/components/modules/tax-document/company/CompanyTaxation.vue +0 -270
  774. package/src/components/modules/tax-document/company/ConfigCompany.vue +0 -359
  775. package/src/components/modules/tax-document/company/Imposto.vue +0 -198
  776. package/src/components/modules/tax-document/company/Logo.vue +0 -54
  777. package/src/components/modules/tax-document/items-nfe/ItemsNfe.js +0 -19
  778. package/src/components/modules/tax-document/items-nfe/ItemsNfeCreate.vue +0 -79
  779. package/src/components/modules/tax-document/items-nfe/ItemsNfeList.vue +0 -227
  780. package/src/components/modules/tax-document/items-nfe/ItemsNfeUpdate.vue +0 -123
  781. package/src/components/modules/tax-document/json/JsonInterpreter.vue +0 -366
  782. package/src/components/modules/tax-document/nature-operation/NatureOperation.js +0 -10
  783. package/src/components/modules/tax-document/nature-operation/NatureOperationCreateUpdate.vue +0 -92
  784. package/src/components/modules/tax-document/nfe/Nfe.js +0 -30
  785. package/src/components/modules/tax-document/nfe/NfeCreateUpdate.vue +0 -237
  786. package/src/components/modules/tax-document/nfe/NfeTotalization.vue +0 -49
  787. package/src/components/modules/tax-document/nfse/ConfigNfse.vue +0 -233
  788. package/src/components/modules/tax-document/nfse/LocalEvento.vue +0 -135
  789. package/src/components/modules/tax-document/nfse/Nfse.js +0 -150
  790. package/src/components/modules/tax-document/nfse/NfseCreateUpdate.vue +0 -312
  791. package/src/components/modules/tax-document/nfse/NfseCreateUpdate_Plug.vue +0 -221
  792. package/src/components/modules/tax-document/nfse/Tributacao.vue +0 -20
  793. package/src/components/modules/tax-document/nfse/TributacaoMunicipal.vue +0 -164
  794. package/src/components/modules/tax-document/nfse/TributacaoNacional.vue +0 -86
  795. package/src/components/modules/tax-document/nfse/Tributacao_Plug.vue +0 -185
  796. package/src/components/modules/tax-document/nfse-nacional/Dados.vue +0 -205
  797. package/src/components/modules/tax-document/nfse-nacional/Imposto.vue +0 -154
  798. package/src/components/modules/tax-document/nfse-nacional/NfseNacional.js +0 -211
  799. package/src/components/modules/tax-document/nfse-nacional/NfseNacionalCreateUpdate.vue +0 -413
  800. package/src/components/modules/tax-document/nfse-nacional/RegimeTributario.vue +0 -140
  801. package/src/components/modules/tax-document/nfse-nacional/Transparencia.vue +0 -98
  802. package/src/components/modules/tax-document/nfse-prefeitura/Dados.vue +0 -212
  803. package/src/components/modules/tax-document/nfse-prefeitura/Imposto.vue +0 -212
  804. package/src/components/modules/tax-document/nfse-prefeitura/NfsePrefeitura.js +0 -187
  805. package/src/components/modules/tax-document/nfse-prefeitura/NfsePrefeituraCreateUpdate.vue +0 -232
  806. package/src/components/modules/tax-document/nfse-prefeitura/RegimeTributario.vue +0 -244
  807. package/src/components/modules/tax-document/nfse-prefeitura/Transparencia.vue +0 -85
  808. package/src/components/modules/tax-document/nfse-shared/NfseDropdownOptions.vue +0 -448
  809. package/src/components/modules/tax-document/nfse-shared/NfseEmProcessamento.vue +0 -50
  810. package/src/components/modules/tax-document/nfse-shared/NfseLocalEvento.vue +0 -184
  811. package/src/components/modules/tax-document/nfse-shared/NfseMensagemErro.vue +0 -52
  812. package/src/components/modules/tax-document/nfse-shared/NfseStatus.js +0 -27
  813. package/src/components/modules/tax-document/notification/InputTagEmail.vue +0 -89
  814. package/src/components/modules/tax-document/notification/Notificacao.vue +0 -121
  815. package/src/components/modules/tax-document/shared/DropdownOptionsNfs.vue +0 -271
  816. package/src/components/modules/tax-document/shared/Helpers.js +0 -1283
  817. package/src/components/modules/tax-document/shared/OpcoesFiscaisGoverno.vue +0 -236
  818. package/src/components/modules/tax-document/shared/OpcoesTributarias.js +0 -117
  819. package/src/components/modules/tax-document/shared/classificacaoTributaria.js +0 -288
  820. package/src/components/modules/tax-document/shared/cnae.js +0 -675
  821. package/src/components/modules/tax-document/shared/codigoLC116.js +0 -816
  822. package/src/components/modules/tax-document/shared/codigoTributacaoNacional.js +0 -1344
  823. package/src/components/modules/tax-document/shared/tributacaoIBSCBS.js +0 -76
  824. package/src/components/modules/tax-document/taxation/Taxation.js +0 -23
  825. package/src/components/modules/tax-document/taxation/TaxationCreateUpdate.vue +0 -306
  826. package/src/components/modules/tax-document/taxation/TaxationCreateUpdate_Plug.vue +0 -202
  827. package/src/components/modules/tax-document/wizard/StepByStep.vue +0 -1306
  828. package/src/config/tips.js +0 -9
  829. package/src/store/modules/generateMoviment.js +0 -102
  830. package/src/store/modules/paymentShared.js +0 -39
  831. package/src/store/modules/pdv.js +0 -107
  832. package/src/store/modules/rfid.js +0 -49
  833. package/src/views/modules/adm/Authorization.vue +0 -45
  834. package/src/views/modules/adm/BilletFranchise.vue +0 -38
  835. package/src/views/modules/adm/Company.vue +0 -34
  836. package/src/views/modules/adm/ConfirmMailMobile.vue +0 -85
  837. package/src/views/modules/adm/DocumentCreateUpdate.vue +0 -88
  838. package/src/views/modules/adm/DocumentList.vue +0 -112
  839. package/src/views/modules/adm/DocumentPreviewPublic.vue +0 -124
  840. package/src/views/modules/adm/DocumentPublic.vue +0 -73
  841. package/src/views/modules/adm/Login.vue +0 -172
  842. package/src/views/modules/adm/LoginRedirect.vue +0 -74
  843. package/src/views/modules/adm/LoginTemp.vue +0 -63
  844. package/src/views/modules/adm/NfeFranchise.vue +0 -38
  845. package/src/views/modules/adm/NfseFranchise.vue +0 -38
  846. package/src/views/modules/adm/Notification.vue +0 -43
  847. package/src/views/modules/adm/Parameter.vue +0 -104
  848. package/src/views/modules/adm/Plan.vue +0 -77
  849. package/src/views/modules/adm/Register.vue +0 -70
  850. package/src/views/modules/adm/ReportAdm.vue +0 -35
  851. package/src/views/modules/adm/ReportAudit.vue +0 -86
  852. package/src/views/modules/adm/ResetPassword.vue +0 -73
  853. package/src/views/modules/adm/SignatureFranchise.vue +0 -38
  854. package/src/views/modules/adm/Store.vue +0 -47
  855. package/src/views/modules/adm/UserCreateUpdate.vue +0 -66
  856. package/src/views/modules/adm/UserList.vue +0 -181
  857. package/src/views/modules/adm/model/ParameterExemple.js +0 -506
  858. package/src/views/modules/adm/model/ParameterLegend.js +0 -1195
  859. package/src/views/modules/billing/BilletConfigList.vue +0 -90
  860. package/src/views/modules/billing/BilletList.vue +0 -335
  861. package/src/views/modules/billing/CancelInvoice.vue +0 -97
  862. package/src/views/modules/billing/GenerateBilling.vue +0 -41
  863. package/src/views/modules/billing/InvoiceCreateUpdate.vue +0 -45
  864. package/src/views/modules/billing/InvoiceList.vue +0 -209
  865. package/src/views/modules/billing/ReportBillet.vue +0 -35
  866. package/src/views/modules/billing/ReportBilling.vue +0 -35
  867. package/src/views/modules/billing/ReportInvoice.vue +0 -129
  868. package/src/views/modules/billing/ReturnShipment.vue +0 -250
  869. package/src/views/modules/billing/Shipment.vue +0 -141
  870. package/src/views/modules/billing/ShipmentReturnList.vue +0 -54
  871. package/src/views/modules/billing/ToProfitList.vue +0 -232
  872. package/src/views/modules/billing/_ReportBillet.vue +0 -124
  873. package/src/views/modules/calendar/Calendar.vue +0 -394
  874. package/src/views/modules/cashier/CashierList.vue +0 -192
  875. package/src/views/modules/course/Course.vue +0 -31
  876. package/src/views/modules/crm/CategoryCustomer.vue +0 -73
  877. package/src/views/modules/crm/ConfigCrm.vue +0 -65
  878. package/src/views/modules/crm/CustomerCreateUpdate.vue +0 -58
  879. package/src/views/modules/crm/CustomerList.vue +0 -138
  880. package/src/views/modules/crm/ImportCustomer.vue +0 -149
  881. package/src/views/modules/crm/OriginCustomer.vue +0 -74
  882. package/src/views/modules/crm/ReportCrm.vue +0 -35
  883. package/src/views/modules/crm/ReportCustomer.vue +0 -331
  884. package/src/views/modules/dashboard/Dashboard.vue +0 -449
  885. package/src/views/modules/dashboard/DashboardProfile.js +0 -16
  886. package/src/views/modules/dashboard/_Dashboard.vue +0 -269
  887. package/src/views/modules/faturamento/AFaturar.vue +0 -189
  888. package/src/views/modules/faturamento/HistoricoAFaturar.vue +0 -167
  889. package/src/views/modules/faturamento/ListaConfigAFaturar.vue +0 -47
  890. package/src/views/modules/faturamento/Semaforo.vue +0 -135
  891. package/src/views/modules/finance/Bank.vue +0 -85
  892. package/src/views/modules/finance/BankAccountCreateUpdate.vue +0 -58
  893. package/src/views/modules/finance/BankAccountList.vue +0 -127
  894. package/src/views/modules/finance/BankReconciliation.vue +0 -50
  895. package/src/views/modules/finance/ConfigFinance.vue +0 -72
  896. package/src/views/modules/finance/CostCenter.vue +0 -20
  897. package/src/views/modules/finance/DrePayableReceivable.vue +0 -248
  898. package/src/views/modules/finance/NewPayableReceivableList.vue +0 -239
  899. package/src/views/modules/finance/PayableReceivableCreateUpdate.vue +0 -58
  900. package/src/views/modules/finance/PayableReceivableList.vue +0 -490
  901. package/src/views/modules/finance/ReportFinance.vue +0 -46
  902. package/src/views/modules/finance/ReportPayableReceivable.vue +0 -312
  903. package/src/views/modules/finance/TransferAccountList.vue +0 -154
  904. package/src/views/modules/finance/TypePayment.vue +0 -80
  905. package/src/views/modules/financeiro/CentroCusto.vue +0 -112
  906. package/src/views/modules/financeiro/PlanoConta.vue +0 -111
  907. package/src/views/modules/financeiro/TipoPagamento.vue +0 -111
  908. package/src/views/modules/human-resources/CollaboratorCreateUpdate.vue +0 -68
  909. package/src/views/modules/human-resources/CollaboratorList.vue +0 -110
  910. package/src/views/modules/locacao/InserirLocacaoPadrao.vue +0 -54
  911. package/src/views/modules/locacao/InserirLocacaoPdv.vue +0 -104
  912. package/src/views/modules/locacao/LocacaoPdvFinalizada.vue +0 -75
  913. package/src/views/modules/maintenance/OrderServiceCreateUpdate.vue +0 -48
  914. package/src/views/modules/maintenance/OrderServiceList.vue +0 -190
  915. package/src/views/modules/maintenance/OsPanel.vue +0 -34
  916. package/src/views/modules/maintenance/ReportMaintenance.vue +0 -38
  917. package/src/views/modules/maintenance/ReportOrderService.vue +0 -124
  918. package/src/views/modules/maintenance/ReportProductOrderService.vue +0 -207
  919. package/src/views/modules/manutencao/InserirEditarOrdemServico.vue +0 -94
  920. package/src/views/modules/manutencao/Material.vue +0 -123
  921. package/src/views/modules/manutencao/OrdemServico.vue +0 -145
  922. package/src/views/modules/manutencao/TipoManutencao.vue +0 -94
  923. package/src/views/modules/operational/MovementBulkList.vue +0 -143
  924. package/src/views/modules/operational/MovementBulkUpdate.vue +0 -41
  925. package/src/views/modules/operational/OperationlSearch.vue +0 -37
  926. package/src/views/modules/operational/OsPanel.vue +0 -33
  927. package/src/views/modules/operational/RentOperationalCreateUpdate.vue +0 -38
  928. package/src/views/modules/operational/RentOperationalList.vue +0 -198
  929. package/src/views/modules/operational/ReplacementPatrimony.vue +0 -42
  930. package/src/views/modules/operational/ReportDeliveryDevolution.vue +0 -210
  931. package/src/views/modules/operational/ReportOperational.vue +0 -35
  932. package/src/views/modules/operational/ReservationPanel.vue +0 -34
  933. package/src/views/modules/pdv/PdvRentCreateUpdate.vue +0 -55
  934. package/src/views/modules/pdv/PdvRentList.vue +0 -103
  935. package/src/views/modules/pdv/PdvRentSelectOption.vue +0 -89
  936. package/src/views/modules/pdv/PdvSearch.vue +0 -41
  937. package/src/views/modules/pdv/SuccessPdvRent.vue +0 -59
  938. package/src/views/modules/planner/ConfigPlanner.vue +0 -47
  939. package/src/views/modules/planner/FunnelList.vue +0 -60
  940. package/src/views/modules/planner/Kanban.vue +0 -94
  941. package/src/views/modules/planner/Tag.vue +0 -79
  942. package/src/views/modules/rental/ConfigRental.vue +0 -67
  943. package/src/views/modules/rental/GroupRent.vue +0 -72
  944. package/src/views/modules/rental/KitRent.vue +0 -78
  945. package/src/views/modules/rental/KitRentCreateUpdate.vue +0 -58
  946. package/src/views/modules/rental/RentCreateUpdate.vue +0 -46
  947. package/src/views/modules/rental/RentSelectOption.vue +0 -53
  948. package/src/views/modules/rental/RentalList.vue +0 -394
  949. package/src/views/modules/rental/ReportRentByCustomer.vue +0 -216
  950. package/src/views/modules/rental/ReportRentByPayment.vue +0 -195
  951. package/src/views/modules/rental/ReportRentByPeriodRent.vue +0 -208
  952. package/src/views/modules/rental/ReportRentByProduct.vue +0 -240
  953. package/src/views/modules/rental/ReportRentPerformance.vue +0 -231
  954. package/src/views/modules/rental/ReportRental.vue +0 -46
  955. package/src/views/modules/rental/TypeRent.vue +0 -78
  956. package/src/views/modules/rental/_RentalList.vue +0 -285
  957. package/src/views/modules/rental/___ReportRentPerformance.vue +0 -345
  958. package/src/views/modules/rfid/LinkProductTags.vue +0 -39
  959. package/src/views/modules/shared/IntegrationReturn.vue +0 -274
  960. package/src/views/modules/shared/JobList.vue +0 -227
  961. package/src/views/modules/signature/ConfigSignature.vue +0 -43
  962. package/src/views/modules/signature/SignatureList.vue +0 -208
  963. package/src/views/modules/stock/CategoryProduct.vue +0 -78
  964. package/src/views/modules/stock/ConfigStock.vue +0 -77
  965. package/src/views/modules/stock/GenerateOutput.vue +0 -35
  966. package/src/views/modules/stock/GenerateRenewed.vue +0 -36
  967. package/src/views/modules/stock/GenerateReturn.vue +0 -35
  968. package/src/views/modules/stock/ImportProduct.vue +0 -135
  969. package/src/views/modules/stock/Manufacturer.vue +0 -73
  970. package/src/views/modules/stock/ProductCreateUpdate.vue +0 -58
  971. package/src/views/modules/stock/ProductList.vue +0 -185
  972. package/src/views/modules/stock/ProductSelectOption.vue +0 -80
  973. package/src/views/modules/stock/ReportHistoryPatrimony.vue +0 -126
  974. package/src/views/modules/stock/ReportPatrimony.vue +0 -184
  975. package/src/views/modules/stock/ReportProduct.vue +0 -358
  976. package/src/views/modules/stock/ReportProductByCustomer.vue +0 -674
  977. package/src/views/modules/stock/ReportStock.vue +0 -49
  978. package/src/views/modules/stock/TypeProduct.vue +0 -78
  979. package/src/views/modules/stock/UnitOfMeasurement.vue +0 -79
  980. package/src/views/modules/supplier/SupplierCreateUpdate.vue +0 -58
  981. package/src/views/modules/supplier/SupplierList.vue +0 -139
  982. package/src/views/modules/supplier/SupplierOrderCreateUpdate.vue +0 -46
  983. package/src/views/modules/supplier/SupplierOrderList.vue +0 -251
  984. package/src/views/modules/tax-document/CancelNfse.vue +0 -97
  985. package/src/views/modules/tax-document/Cfop.vue +0 -72
  986. package/src/views/modules/tax-document/ConfigTaxDocument.vue +0 -43
  987. package/src/views/modules/tax-document/NatureOperation.vue +0 -72
  988. package/src/views/modules/tax-document/NfeCreateUpdate.vue +0 -37
  989. package/src/views/modules/tax-document/NfeList.vue +0 -173
  990. package/src/views/modules/tax-document/NfeReceivedList.vue +0 -236
  991. package/src/views/modules/tax-document/NfseList.vue +0 -44
  992. package/src/views/modules/tax-document/NfseNacionalCreateUpdate.vue +0 -35
  993. package/src/views/modules/tax-document/NfseNacionalList.vue +0 -201
  994. package/src/views/modules/tax-document/NfsePrefeituraCreateUpdate.vue +0 -35
  995. package/src/views/modules/tax-document/NfsePrefeituraList.vue +0 -201
  996. package/src/views/modules/tax-document/StepByStep.vue +0 -45
  997. package/src/views/modules/tax-document/Taxation.vue +0 -93
  998. package/src/views/modules/tax-document/TaxationCreateUpdate.vue +0 -60
@@ -1,1306 +0,0 @@
1
- <template>
2
- <div>
3
- <div class="content">
4
- <Molded v-if="!success">
5
- <Wizard
6
- :totalSteps="5"
7
- :formName="[
8
- 'configuracao.1',
9
- 'configuracao.2',
10
- 'configuracao.3',
11
- 'configuracao.4',
12
- 'configuracao.5',
13
- ]"
14
- :showSteps="false"
15
- >
16
- <div slot="1">
17
- <b-row>
18
- <b-col sm="1">
19
- <div class="step side-by-side"><span>1</span></div>
20
- </b-col>
21
- <b-col sm="10">
22
- <div class="title side-by-side">
23
- Qual <b>ambiente</b> de emissão será utilizado?
24
- </div>
25
- </b-col>
26
- </b-row>
27
- <b-row>
28
- <b-col sm="10">
29
- <br />
30
- <br />
31
- <small class="title-small">Essa informação nos ajuda a identificar se sua empresa já
32
- está habilitada para emissão de notas fiscais.
33
- Escolha se a emissão será realizada pelo Ambiente Nacional (padrão do Governo
34
- Federal) ou diretamente pela Prefeitura do Município
35
- </small>
36
- <br />
37
- <br />
38
- <RadioGroup
39
- :formName="formName"
40
- :required="false"
41
- field="group"
42
- :options="[
43
- { text: 'Nacional', value: 'Nacional' },
44
- { text: 'Prefeitura', value: 'Prefeitura' },
45
- ]"
46
- v-model="configuracao.comum.ambiente"
47
- />
48
- </b-col>
49
- </b-row>
50
- <b-row v-if="configuracao.comum.ambiente == 'Prefeitura'">
51
- <b-col sm="2">
52
- <InputText
53
- :formName="formName"
54
- :required="false"
55
- field="Próximo RPS"
56
- title="Próximo RPS"
57
- v-model="configuracao.comum.proximoRps"
58
- />
59
- </b-col>
60
- </b-row>
61
- </div>
62
- <div slot="2">
63
- <b-row>
64
- <b-col sm="1">
65
- <div class="step side-by-side"><span>2</span></div>
66
- </b-col>
67
- <b-col sm="10">
68
- <div class="title side-by-side">
69
- Sua empresa já está autorizada para emitir <b>Notas Fiscais?</b>
70
- </div>
71
- </b-col>
72
- </b-row>
73
- <br />
74
- <small class="title-small">Essa informação nos ajuda a entender se sua empresa já possui
75
- cadastro e autorização
76
- ativa na Prefeitura/SEFAZ para emissão de notas, ou se ainda será necessário realizar a
77
- habilitação antes de configurar o sistema
78
- </small>
79
- <br />
80
- <br />
81
- <RadioGroup
82
- :formName="formName"
83
- :required="false"
84
- field="group"
85
- stacked="true"
86
- :options="[
87
- { text: 'Sim, estamos autorizados', value: 'Sim, estamos autorizados' },
88
- { text: 'Não, ainda não estamos autorizados', value: 'Não, ainda não estamos autorizados' },
89
- { text: 'Não tenho certeza', value: 'Não tenho certeza' },
90
- ]"
91
- v-model="configuracao.comum.habilitada"
92
- />
93
-
94
- </div>
95
- <div slot="3">
96
- <b-row>
97
- <b-col sm="1">
98
- <div class="step side-by-side"><span>3</span></div>
99
- </b-col>
100
- <b-col sm="10">
101
- <div class="title side-by-side">
102
- Informe o <b>Regime Tributário</b>
103
- </div>
104
- </b-col>
105
- </b-row>
106
- <br />
107
- <div>
108
- <Molded>
109
- <b-row>
110
- <b-col sm="2">
111
- <RadioGroup
112
- :formName="formName"
113
- :required="false"
114
- field="group"
115
- title="Simples Nacional"
116
- :options="[
117
- { text: 'Sim', value: true },
118
- { text: 'Não', value: false },
119
- ]"
120
- v-model="configuracao.prefeitura.optanteSimplesNacional"
121
- />
122
- </b-col>
123
- <b-col sm="4">
124
- <SelectStatic
125
- :initialValue="configuracao.prefeitura.regimeTributario"
126
- title="Regime Tributário"
127
- :required="false"
128
- :data="optionsRegimeTributario"
129
- v-model="configuracao.prefeitura.regimeTributario"
130
- />
131
- </b-col>
132
- <b-col sm="4">
133
- <SelectStatic
134
- :initialValue="configuracao.prefeitura.regimeTributarioEspecial"
135
- title="Regime Tributário Especial"
136
- :required="false"
137
- :data="optionsRegimeTributarioEspecial"
138
- v-model="configuracao.prefeitura.regimeTributarioEspecial"
139
- />
140
- </b-col>
141
- <b-col sm="2">
142
- <RadioGroup
143
- :formName="formName"
144
- :required="false"
145
- field="group"
146
- title="Incentivador Cultural"
147
- :options="[
148
- { text: 'Sim', value: true },
149
- { text: 'Não', value: false },
150
- ]"
151
- v-model="configuracao.prefeitura.incentivadorCultural"
152
- />
153
- </b-col>
154
- </b-row>
155
- </Molded>
156
- </div>
157
- <br>
158
- <div v-if="configuracao.comum.ambiente == 'Nacional'">
159
- <b-row>
160
- <b-col
161
- sm="6"
162
- v-if="ehSimplesNacional"
163
- >
164
- <SelectStatic
165
- :initialValue="configuracao.nacional.codigoOpcaoSimplesNacional"
166
- title="Situação perante Simples Nacional"
167
- :required="false"
168
- :data="[
169
- { content: 'Não Optante', id: 'Não Optante' },
170
- { content: 'Optante - Microempreendedor Individual (MEI)', id: 'Optante - Microempreendedor Individual (MEI)' },
171
- { content: 'Optante - Microempresa ou Empresa de Pequeno Porte (ME/EPP)', id: 'Optante - Microempresa ou Empresa de Pequeno Porte (ME/EPP)' },
172
- ]"
173
- v-model="configuracao.nacional.codigoOpcaoSimplesNacional"
174
- />
175
- </b-col>
176
- <b-col :sm="!ehSimplesNacional ? '12' : '6'">
177
- <SelectStatic
178
- :initialValue="configuracao.nacional.tipoTributacao"
179
- title="Tipo de Tributação ISS"
180
- :formName="formName"
181
- :required="false"
182
- :data="[
183
- { content: 'Tributação no Município', id: 'Tributação no Município' },
184
- { content: 'Tributação fora do Município', id: 'Tributação fora do Município' },
185
- { content: 'Isenção', id: 'Isenção' },
186
- { content: 'Imune', id: 'Imune' },
187
- { content: 'Exigibilidade Suspensa por Decisão Judicial', id: 'Exigibilidade Suspensa por Decisão Judicial' },
188
- { content: 'Exigibilidade Suspensa por Procedimento Administrativo', id: 'Exigibilidade Suspensa por Procedimento Administrativo' },
189
- ]"
190
- v-model="configuracao.nacional.tipoTributacao"
191
- />
192
- </b-col>
193
- </b-row>
194
- <b-row>
195
- <b-col
196
- sm="6"
197
- v-if="ehSimplesNacional"
198
- >
199
- <SelectStatic
200
- :initialValue="configuracao.nacional.regimeApuracaoTributariaSimplesNacional"
201
- title="Regime de Apuração Tributária pelo Simples Nacional"
202
- :required="false"
203
- :data="[
204
- { content: 'Federais e municipal pelo SN', id: 'Federais e municipal pelo SN' },
205
- { content: 'Federais pelo SN e ISSQN pela NFS-e municipal', id: 'Federais pelo SN e ISSQN pela NFS-e municipal' },
206
- { content: 'Federais e municipal pela NFS-e', id: 'Federais e municipal pela NFS-e' },
207
- ]"
208
- v-model="configuracao.nacional.regimeApuracaoTributariaSimplesNacional"
209
- />
210
- </b-col>
211
- <b-col :sm="!ehSimplesNacional ? '12' : '6'">
212
- <SelectStatic
213
- :initialValue="configuracao.nacional.regimeEspecialTributacaoMunicipal"
214
- title="Regime Especial de Tributação Municipal"
215
- :required="false"
216
- :data="[
217
- { content: 'Nenhum', id: 'Nenhum' },
218
- { content: 'Ato Cooperado', id: 'Ato Cooperado' },
219
- { content: 'Estimativa', id: 'Estimativa' },
220
- { content: 'Microempresa Municipal', id: 'Microempresa Municipal' },
221
- { content: 'Notário ou Registrador', id: 'Notário ou Registrador' },
222
- { content: 'Profissional Autônomo', id: 'Profissional Autônomo' },
223
- { content: 'Sociedade de Profissionais', id: 'Sociedade de Profissionais' },
224
- ]"
225
- v-model="configuracao.nacional.regimeEspecialTributacaoMunicipal"
226
- />
227
- </b-col>
228
- </b-row>
229
-
230
- <b-row v-if="!ehSimplesNacional">
231
- <b-col sm="12">
232
- <SelectStatic
233
- :initialValue="configuracao.nacional.situacaoTributariaPisCofins"
234
- title=" Situação Tributária do PIS/COFINS"
235
- :formName="formName"
236
- :required="false"
237
- :data="[
238
- { content: 'Operação Tributável com Alíquota Básica', id: 'Operação Tributável com Alíquota Básica' },
239
- { content: 'Operação Tributável com Alíquota Diferenciada', id: 'Operação Tributável com Alíquota Diferenciada' },
240
- { content: 'Operação Tributável com Alíquota por Unidade de Medida de Produto', id: 'Operação Tributável com Alíquota por Unidade de Medida de Produto' },
241
- { content: 'Operação Tributável monofásica - Revenda a Alíquota Zero', id: 'Operação Tributável monofásica - Revenda a Alíquota Zero' },
242
- { content: 'Operação Tributável por Substituição Tributária', id: 'Operação Tributável por Substituição Tributária' },
243
- { content: 'Operação Tributável a Alíquota Zero', id: 'Operação Tributável a Alíquota Zero' },
244
- { content: 'Operação Tributável da Contribuição', id: 'Operação Tributável da Contribuição' },
245
- { content: 'Operação sem Incidência da Contribuição', id: 'Operação sem Incidência da Contribuição' },
246
- { content: 'Operação com Suspensão da Contribuição', id: 'Operação com Suspensão da Contribuição' },
247
- ]"
248
- v-model="configuracao.nacional.situacaoTributariaPisCofins"
249
- />
250
- </b-col>
251
- </b-row>
252
- </div>
253
- <div v-if="configuracao.comum.ambiente == 'Prefeitura'">
254
- <SelectStatic
255
- :initialValue="configuracao.prefeitura.naturezaOperacao"
256
- title="Natureza da Operação"
257
- :formName="formName"
258
- :required="false"
259
- :data="[
260
- { content: 'Tributação no Município', id: 'Tributação no Município' },
261
- { content: 'Tributação fora do Município', id: 'Tributação fora do Município' },
262
- { content: 'Isenção', id: 'Isenção' },
263
- { content: 'Imune', id: 'Imune' },
264
- { content: 'Exigibilidade Suspensa por Decisão Judicial', id: 'Exigibilidade Suspensa por Decisão Judicial' },
265
- { content: 'Exigibilidade Suspensa por Procedimento Administrativo', id: 'Exigibilidade Suspensa por Procedimento Administrativo' },
266
- ]"
267
- v-model="configuracao.prefeitura.naturezaOperacao"
268
- />
269
- </div>
270
- <b-row>
271
- <b-col sm="2">
272
- <InputNumber
273
- title="Alíquota ISS %"
274
- field="aliquota"
275
- type="float"
276
- :formName="formName"
277
- :required="false"
278
- :maxLength="9"
279
- v-model="configuracao.comum.iss"
280
- />
281
- </b-col>
282
- <b-col
283
- sm="2"
284
- v-if="!ehSimplesNacional"
285
- >
286
- <InputNumber
287
- title="Alíquota PIS %"
288
- field="aliquota"
289
- type="float"
290
- :formName="formName"
291
- :required="false"
292
- :maxLength="9"
293
- v-model="configuracao.comum.pis"
294
- />
295
- </b-col>
296
- <b-col
297
- sm="2"
298
- v-if="!ehSimplesNacional"
299
- >
300
- <InputNumber
301
- title="Alíquota COFINS %"
302
- field="aliquota"
303
- type="float"
304
- :formName="formName"
305
- :required="false"
306
- :maxLength="9"
307
- v-model="configuracao.comum.cofins"
308
- />
309
- </b-col>
310
- <b-col
311
- sm="2"
312
- v-if="!ehSimplesNacional"
313
- >
314
- <InputNumber
315
- title="Alíquota CSLL %"
316
- field="aliquota"
317
- type="float"
318
- :formName="formName"
319
- :required="false"
320
- :maxLength="9"
321
- v-model="configuracao.comum.csll"
322
- />
323
- </b-col>
324
- <b-col
325
- sm="2"
326
- v-if="!ehSimplesNacional"
327
- >
328
- <InputNumber
329
- title="Alíquota INSS %"
330
- field="aliquota"
331
- type="float"
332
- :formName="formName"
333
- :required="false"
334
- :maxLength="9"
335
- v-model="configuracao.comum.inss"
336
- />
337
- </b-col>
338
- <b-col
339
- sm="2"
340
- v-if="!ehSimplesNacional"
341
- >
342
- <InputNumber
343
- title="Alíquota IR %"
344
- field="aliquota"
345
- type="float"
346
- :formName="formName"
347
- :required="false"
348
- :maxLength="9"
349
- v-model="configuracao.comum.ir"
350
- />
351
- </b-col>
352
- </b-row>
353
- <b-row>
354
- <b-col sm="2">
355
- <InputNumber
356
- title="IBS %"
357
- field="aliquota"
358
- type="float"
359
- :formName="formName"
360
- :required="false"
361
- :maxLength="9"
362
- v-model="configuracao.comum.ibs"
363
- />
364
- </b-col>
365
- <b-col sm="2">
366
- <InputNumber
367
- title="CBS %"
368
- field="aliquota"
369
- type="float"
370
- :formName="formName"
371
- :required="false"
372
- :maxLength="9"
373
- v-model="configuracao.comum.cbs"
374
- />
375
- </b-col>
376
- </b-row>
377
- <div>
378
- <b-row>
379
- <b-col
380
- xs="12"
381
- sm="12"
382
- md="12"
383
- lg="2"
384
- xl="2"
385
- >
386
- <InputNumber
387
- :required="false"
388
- type="float"
389
- title="Federais %"
390
- field="percentualTotalTributosFederais"
391
- :maxLength="9"
392
- v-model="configuracao.nacional.percentualTotalTributosFederais"
393
- />
394
- </b-col>
395
- <b-col
396
- xs="12"
397
- sm="12"
398
- md="12"
399
- lg="2"
400
- xl="2"
401
- >
402
- <InputNumber
403
- :required="false"
404
- type="float"
405
- title="Estaduais %"
406
- field="percentualTotalTributosEstaduais"
407
- :maxLength="9"
408
- v-model="configuracao.nacional.percentualTotalTributosEstaduais"
409
- />
410
- </b-col>
411
- <b-col
412
- xs="12"
413
- sm="12"
414
- md="12"
415
- lg="2"
416
- xl="2"
417
- >
418
- <InputNumber
419
- :required="false"
420
- type="float"
421
- title="Municipais %"
422
- field="percentualTotalTributosMunicipais"
423
- :maxLength="9"
424
- v-model="configuracao.nacional.percentualTotalTributosMunicipais"
425
- />
426
- </b-col>
427
- </b-row>
428
- </div>
429
- </div>
430
- <div slot="4">
431
- <b-row>
432
- <b-col sm="1">
433
- <div class="step side-by-side"><span>4</span></div>
434
- </b-col>
435
- <b-col sm="10">
436
- <div class="title side-by-side"><b>Autenticação</b></div>
437
- </b-col>
438
- </b-row>
439
- <br />
440
- <br />
441
- <RadioGroup
442
- v-if="configuracao.comum.ambiente == 'Prefeitura'"
443
- :formName="formName"
444
- :required="false"
445
- field="group"
446
- :options="[
447
- { text: 'Certificado Digital', value: 'Certificado Digital' },
448
- { text: 'Login e Senha', value: 'Login e Senha' },
449
- ]"
450
- v-model="configuracao.comum.autenticacao"
451
- />
452
- <br />
453
- <Certificate v-if="configuracao.comum.autenticacao == 'Certificado Digital'" />
454
- <div v-else>
455
- <InputText
456
- :formName="formName"
457
- field="Login Prefeitura"
458
- title="Login Prefeitura"
459
- v-model="configuracao.comum.loginPrefeitura"
460
- />
461
- <InputPassword
462
- :formName="formName"
463
- field="Senha Prefeitura"
464
- title="Senha Prefeitura"
465
- v-model="configuracao.comum.senhaPrefeitura"
466
- />
467
- </div>
468
- <br />
469
- <br />
470
- </div>
471
- <div slot="5">
472
- <b-row>
473
- <b-col sm="1">
474
- <div class="step side-by-side"><span>5</span></div>
475
- </b-col>
476
- <b-col sm="10">
477
- <div class="title side-by-side">
478
- Informe os dados do <b>serviço</b>
479
- </div>
480
- </b-col>
481
- </b-row>
482
- <br />
483
- <small class="title-small">Após a configuração inicial, você poderá adicionar novos serviços
484
- sempre que
485
- precisar</small>
486
- <br />
487
- <br />
488
- <div v-if="configuracao.comum.ambiente == 'Prefeitura'">
489
- <b-row>
490
- <b-col sm="4">
491
- <b-row>
492
- <b-col sm="10">
493
- <InputText
494
- :required="false"
495
- :formName="formName"
496
- field="codigoLC116"
497
- title="Código LC 116"
498
- v-model="configuracao.prefeitura.servico.codigoLC116"
499
- />
500
- </b-col>
501
- <div class="step-by-step-opcoes">
502
- <OpcoesFiscaisGoverno
503
- modalTitle="Código LC 116"
504
- :options="optionsCodigoLC116"
505
- buttonTitle="Ver opções"
506
- v-model="configuracao.prefeitura.servico.codigoLC116"
507
- />
508
- </div>
509
- </b-row>
510
- </b-col>
511
- <b-col sm="4">
512
- <b-row>
513
- <b-col sm="10">
514
- <InputText
515
- :required="false"
516
- :formName="formName"
517
- field="cnae"
518
- title="CNAE"
519
- v-model="configuracao.prefeitura.servico.cnae"
520
- />
521
- </b-col>
522
- <div class="step-by-step-opcoes">
523
- <OpcoesFiscaisGoverno
524
- modalTitle="CNAE"
525
- :options="optionsCnae"
526
- buttonTitle="Ver opções"
527
- v-model="configuracao.prefeitura.servico.cnae"
528
- />
529
- </div>
530
- </b-row>
531
- </b-col>
532
- <b-col sm="4">
533
- <b-row>
534
- <b-col sm="10">
535
- <InputText
536
- :required="false"
537
- :formName="formName"
538
- field="nbs"
539
- title="NBS (Nomenclatura Brasileira de Serviços)"
540
- v-model="configuracao.prefeitura.servico.nbs"
541
- />
542
- </b-col>
543
- <div class="step-by-step-opcoes">
544
- <OpcoesFiscaisGoverno
545
- modalTitle="NBS (Nomenclatura Brasileira de Serviços)"
546
- :options="optionsNbs"
547
- buttonTitle="Ver códigos NBS"
548
- v-model="configuracao.prefeitura.servico.nbs"
549
- />
550
- </div>
551
- </b-row>
552
- </b-col>
553
- </b-row>
554
- <b-row>
555
- <b-col sm="4">
556
- <InputText
557
- :required="false"
558
- :formName="formName"
559
- field="Aliquota do ISSQN"
560
- title="Aliquota do ISSQN"
561
- v-model="configuracao.prefeitura.servico.aliquotaISSQN"
562
- />
563
- </b-col>
564
- <b-col sm="8">
565
- <InputText
566
- :required="false"
567
- :formName="formName"
568
- field="Discriminação"
569
- title="Discriminação"
570
- v-model="configuracao.prefeitura.servico.discriminacao"
571
- />
572
- </b-col>
573
- </b-row>
574
-
575
- <b-row>
576
- <b-col sm="4">
577
- <b-row>
578
- <b-col sm="10">
579
- <InputText
580
- :required="false"
581
- :formName="formName"
582
- field="codigoIndicadorOperacao"
583
- title="Código Indicador Operação"
584
- v-model="configuracao.prefeitura.servico.codigoIndicadorOperacao"
585
- />
586
- </b-col>
587
- <div class="step-by-step-opcoes">
588
- <OpcoesFiscaisGoverno
589
- modalTitle="Código Indicador Operação"
590
- :options="optionsCodigoIndicadorOperacao"
591
- buttonTitle="Ver opções"
592
- v-model="configuracao.prefeitura.servico.codigoIndicadorOperacao"
593
- />
594
- </div>
595
- </b-row>
596
- </b-col>
597
- <b-col sm="4">
598
- <b-row>
599
- <b-col sm="10">
600
- <InputText
601
- :required="false"
602
- :formName="formName"
603
- field="ibsCbsSituacaoTributaria"
604
- title="IBS/CBS Situação Tributária"
605
- v-model="configuracao.prefeitura.servico.ibsCbsSituacaoTributaria"
606
- />
607
- </b-col>
608
- <div class="step-by-step-opcoes">
609
- <OpcoesFiscaisGoverno
610
- modalTitle="IBS/CBS Situação Tributária"
611
- :options="optionsTributacaoIBSCBS"
612
- buttonTitle="Ver opções"
613
- v-model="configuracao.prefeitura.servico.ibsCbsSituacaoTributaria"
614
- />
615
- </div>
616
- </b-row>
617
- </b-col>
618
- <b-col sm="4">
619
- <b-row>
620
- <b-col sm="10">
621
- <InputText
622
- :required="false"
623
- :formName="formName"
624
- field="ibsCbsClassificacaoTributaria"
625
- title="IBS/CBS Classificação Tributária"
626
- v-model="configuracao.prefeitura.servico.ibsCbsClassificacaoTributaria"
627
- />
628
- </b-col>
629
- <div class="step-by-step-opcoes">
630
- <OpcoesFiscaisGoverno
631
- modalTitle="IBS/CBS Classificação Tributária"
632
- :options="optionsClassificacaoTributaria"
633
- buttonTitle="Ver opções"
634
- v-model="configuracao.prefeitura.servico.ibsCbsClassificacaoTributaria"
635
- />
636
- </div>
637
- </b-row>
638
- </b-col>
639
- </b-row>
640
- <b-row>
641
- <b-col sm="12">
642
- <small class="step-by-step-title-small">
643
- Para maiores informações sobre os campos de IBS/CBS, consulte a classificação
644
- oficial em
645
- <a
646
- href="https://dfe-portal.svrs.rs.gov.br/DFE/ClassificacaoTributaria"
647
- target="_blank"
648
- rel="noopener noreferrer"
649
- >
650
- <b>Classificação Tributária</b>
651
- </a>
652
- e realize a verificação.
653
- </small>
654
- </b-col>
655
- </b-row>
656
-
657
- </div>
658
- <div v-else>
659
- <b-row>
660
- <b-col sm="4">
661
- <b-row>
662
- <b-col sm="10">
663
- <InputText
664
- :required="false"
665
- :formName="formName"
666
- field="codigoTributacaoNacional"
667
- title="Código de Tributação Nacional"
668
- v-model="configuracao.nacional.servico.codigoTributacaoNacional"
669
- />
670
- </b-col>
671
- <div class="step-by-step-opcoes">
672
- <OpcoesFiscaisGoverno
673
- modalTitle="Código de Tributação Nacional"
674
- :options="optionsCodigoTributacaoNacional"
675
- buttonTitle="Ver opções"
676
- v-model="configuracao.nacional.servico.codigoTributacaoNacional"
677
- />
678
- </div>
679
- </b-row>
680
- </b-col>
681
- <b-col sm="4">
682
- <InputText
683
- :required="false"
684
- :formName="formName"
685
- field="codigoTributacaoMunicipal"
686
- title="Código de Tributação Municipal"
687
- v-model="configuracao.nacional.servico.codigoTributacaoMunicipal"
688
- />
689
- </b-col>
690
- <b-col sm="4">
691
- <b-row>
692
- <b-col sm="10">
693
- <InputText
694
- :required="false"
695
- :formName="formName"
696
- field="nbs"
697
- title="NBS (Nomenclatura Brasileira de Serviços)"
698
- v-model="configuracao.nacional.servico.nbs"
699
- />
700
- </b-col>
701
- <div class="step-by-step-opcoes">
702
- <OpcoesFiscaisGoverno
703
- modalTitle="NBS (Nomenclatura Brasileira de Serviços)"
704
- :options="optionsNbs"
705
- buttonTitle="Ver códigos NBS"
706
- v-model="configuracao.nacional.servico.nbs"
707
- />
708
- </div>
709
- </b-row>
710
- </b-col>
711
-
712
- </b-row>
713
- <b-row>
714
- <b-col sm="4">
715
- <b-row>
716
- <b-col sm="10">
717
- <InputText
718
- :required="false"
719
- :formName="formName"
720
- field="cnae"
721
- title="CNAE"
722
- v-model="configuracao.nacional.servico.cnae"
723
- />
724
- </b-col>
725
- <div class="step-by-step-opcoes">
726
- <OpcoesFiscaisGoverno
727
- modalTitle="CNAE"
728
- :options="optionsCnae"
729
- buttonTitle="Ver opções"
730
- v-model="configuracao.nacional.servico.cnae"
731
- />
732
- </div>
733
- </b-row>
734
- </b-col>
735
- <b-col sm="2">
736
- <InputText
737
- :required="false"
738
- :formName="formName"
739
- field="Aliquota do ISSQN"
740
- title="Aliquota do ISSQN"
741
- v-model="configuracao.nacional.servico.aliquotaISSQN"
742
- />
743
- </b-col>
744
- <b-col sm="6">
745
- <InputText
746
- :required="false"
747
- :formName="formName"
748
- field="Discriminação"
749
- title="Discriminação"
750
- v-model="configuracao.nacional.servico.discriminacao"
751
- />
752
- </b-col>
753
- </b-row>
754
-
755
- </div>
756
- <br />
757
- </div>
758
- <div slot="finish">
759
- <div class="text-center">
760
- <Button
761
- _key="create"
762
- classIcon="fa-sharp fa-solid fa-paper-plane-top"
763
- type="success"
764
- title="Enviar dados"
765
- size="medium"
766
- :disabled="!isFormValid(formName)"
767
- :clicked="create"
768
- />
769
- </div>
770
- </div>
771
- </Wizard>
772
- <br />
773
- </Molded>
774
- <div
775
- class="div-success"
776
- v-else
777
- >
778
- <Molded>
779
- <br>
780
- <b-row>
781
- <b-col
782
- sm="12"
783
- class="text-center"
784
- >
785
- <div class="company">Seu cadastro foi enviado com sucesso!</div>
786
- <div>
787
- Nossa equipe irá validar as informações e retornaremos!
788
- </div>
789
- <div class="icon-success">
790
- <i class="fa-light fa-circle-check"></i>
791
- </div>
792
- </b-col>
793
- </b-row>
794
- <br>
795
- </Molded>
796
- </div>
797
- </div>
798
- </div>
799
- </template>
800
-
801
- <script>
802
- import Wizard from "@nixweb/nixloc-ui/src/component/layout/Wizard.vue";
803
- import Molded from "@nixweb/nixloc-ui/src/component/layout/Molded.vue";
804
- import Button from "@nixweb/nixloc-ui/src/component/forms/Button";
805
- import InputText from "@nixweb/nixloc-ui/src/component/forms/InputText";
806
- import InputPassword from "@nixweb/nixloc-ui/src/component/forms/InputPassword";
807
- import InputNumber from "@nixweb/nixloc-ui/src/component/forms/InputNumber";
808
- import SelectStatic from "@nixweb/nixloc-ui/src/component/forms/SelectStatic";
809
- import RadioGroup from "@nixweb/nixloc-ui/src/component/forms/RadioGroup";
810
- import Certificate from "../certificate/Certificate.vue";
811
- import OpcoesFiscaisGoverno from "../shared/OpcoesFiscaisGoverno.vue";
812
-
813
- import Person from "@nixweb/nixloc-ui/src/component/value-objects/Person.vue";
814
- import Contact from "@nixweb/nixloc-ui/src/component/value-objects/Contact.vue";
815
- import Address from "@nixweb/nixloc-ui/src/component/value-objects/Address.vue";
816
-
817
- import Helpers from "../shared/Helpers.js";
818
-
819
- import { mapGetters, mapActions, mapMutations } from "vuex";
820
-
821
- const STORAGE_KEY = "wizard-configuracao-step-by-step-form";
822
-
823
- function isPageReload() {
824
- try {
825
- const nav = performance.getEntriesByType("navigation");
826
- if (nav && nav.length) return nav[0].type === "reload";
827
- return (
828
- performance && performance.navigation && performance.navigation.type === 1
829
- );
830
- } catch (e) {
831
- return false;
832
- }
833
- }
834
-
835
- export default {
836
- name: "Register",
837
- components: {
838
- Wizard,
839
- Molded,
840
- Button,
841
- InputText,
842
- InputPassword,
843
- InputNumber,
844
- RadioGroup,
845
- Contact,
846
- Person,
847
- SelectStatic,
848
- Address,
849
- Certificate,
850
- OpcoesFiscaisGoverno,
851
- },
852
- data() {
853
- return {
854
- formName: "step-by-step-form",
855
- urlCreate: "/api/v1/tax-document/config-company/step-by-step",
856
- configuracao: {
857
- comum: {
858
- ambiente: "Nacional",
859
- habilitada: "Sim, estamos autorizados",
860
- autenticacao: "Certificado Digital",
861
- loginPrefeitura: "",
862
- senhaPrefeitura: "",
863
- proximoRps: "",
864
- inss: 0,
865
- pis: 0,
866
- cofins: 0,
867
- iss: 0,
868
- csll: 0,
869
- ir: 0,
870
- ibs: 0,
871
- cbs: 0,
872
- },
873
- nacional: {
874
- codigoOpcaoSimplesNacional: {
875
- content: "Não Optante",
876
- id: "Não Optante",
877
- },
878
- tipoTributacao: {
879
- content: "Tributação no Município",
880
- id: "Tributação no Município",
881
- },
882
- regimeEspecialTributacaoMunicipal: {
883
- content: "Nenhum",
884
- id: "Nenhum",
885
- },
886
- regimeApuracaoTributariaSimplesNacional: {
887
- content: "Federais e municipal pelo SN",
888
- id: "Federais e municipal pelo SN",
889
- },
890
- situacaoTributariaPisCofins: {
891
- content: "Operação Tributável com Alíquota Básica",
892
- id: "Operação Tributável com Alíquota Básica",
893
- },
894
- percentualTotalTributosFederais: 0,
895
- percentualTotalTributosEstaduais: 0,
896
- percentualTotalTributosMunicipais: 0,
897
- servico: {
898
- codigoTributacaoNacional: "",
899
- codigoTributacaoMunicipal: "",
900
- cnae: "",
901
- nbs: "",
902
- aliquotaISSQN: "",
903
- discriminacao: "",
904
- },
905
- },
906
- prefeitura: {
907
- optanteSimplesNacional: true,
908
- regimeTributario: {
909
- content: "Simples Nacional",
910
- id: "Simples Nacional",
911
- },
912
- regimeTributarioEspecial: { content: "Nenhum", id: "Nenhum" },
913
- incentivadorCultural: false,
914
- naturezaOperacao: {
915
- content: "Tributação no Município",
916
- id: "Tributação no Município",
917
- },
918
- servico: {
919
- codigoLC116: "",
920
- cnae: "",
921
- nbs: "",
922
- codigoIndicadorOperacao: "",
923
- ibsCbsClassificacaoTributaria: "",
924
- ibsCbsSituacaoTributaria: "",
925
- aliquotaISSQN: "",
926
- discriminacao: "",
927
- },
928
- },
929
- },
930
- success: false,
931
- };
932
- },
933
- created() {
934
- if (isPageReload()) {
935
- localStorage.removeItem(STORAGE_KEY);
936
- }
937
- const saved = localStorage.getItem(STORAGE_KEY);
938
- if (saved) {
939
- try {
940
- this.configuracao = JSON.parse(saved);
941
- this.normalizeLegacyFields();
942
- } catch (e) {
943
- localStorage.removeItem(STORAGE_KEY);
944
- }
945
- }
946
- },
947
- computed: {
948
- ...mapGetters("validation", ["isFormValid"]),
949
- ehSimplesNacional() {
950
- return this.configuracao.prefeitura.optanteSimplesNacional;
951
- },
952
- optionsRegimeTributario() {
953
- let optionsFinal = [];
954
- let options = [
955
- { content: "Simples Nacional", id: "Simples Nacional" },
956
- {
957
- content: "Simples Nacional - Excesso de Sublimite de Receita Bruta",
958
- id: "Simples Nacional - Excesso de Sublimite de Receita Bruta",
959
- },
960
- { content: "Regime Normal", id: "Regime Normal" },
961
- {
962
- content: "Simples Nacional - Microempreendedor Individual - MEI",
963
- id: "Simples Nacional - Microempreendedor Individual - MEI",
964
- },
965
- ];
966
-
967
- options.forEach((option) => {
968
- if (
969
- this.ehSimplesNacional &&
970
- (option.id === "Simples Nacional" ||
971
- option.id ===
972
- "Simples Nacional - Excesso de Sublimite de Receita Bruta" ||
973
- option.id ===
974
- "Simples Nacional - Microempreendedor Individual - MEI")
975
- ) {
976
- optionsFinal.push(option);
977
- } else if (!this.ehSimplesNacional && option.id === "Regime Normal") {
978
- optionsFinal.push(option);
979
- }
980
- });
981
-
982
- return optionsFinal;
983
- },
984
- optionsRegimeTributarioEspecial() {
985
- const options = [
986
- { content: "Nenhum", id: "Nenhum" },
987
- { content: "Microempresa Municipal", id: "Microempresa Municipal" },
988
- { content: "Estimativa", id: "Estimativa" },
989
- {
990
- content: "Sociedade de Profissionais",
991
- id: "Sociedade de Profissionais",
992
- },
993
- { content: "Cooperativa", id: "Cooperativa" },
994
- { content: "MEI - Simples Nacional", id: "MEI - Simples Nacional" },
995
- { content: "ME EPP- Simples Nacional", id: "ME EPP- Simples Nacional" },
996
- ];
997
-
998
- let optionsFinal = [{ content: "Nenhum", id: "Nenhum" }];
999
-
1000
- if (this.ehSimplesNacional) {
1001
- optionsFinal.push(
1002
- options.find((o) => o.id === "MEI - Simples Nacional"),
1003
- options.find((o) => o.id === "ME EPP- Simples Nacional")
1004
- );
1005
- } else {
1006
- optionsFinal.push(
1007
- options.find((o) => o.id === "Microempresa Municipal"),
1008
- options.find((o) => o.id === "Estimativa"),
1009
- options.find((o) => o.id === "Sociedade de Profissionais"),
1010
- options.find((o) => o.id === "Cooperativa")
1011
- );
1012
- }
1013
-
1014
- return optionsFinal.filter(Boolean);
1015
- },
1016
- optionsCodigoIndicadorOperacao() {
1017
- return Helpers.codigoIndicadorOperacao;
1018
- },
1019
- optionsCodigoTributacaoNacional() {
1020
- return Helpers.codigoTributacaoNacional;
1021
- },
1022
- optionsCodigoLC116() {
1023
- return Helpers.codigoLC116;
1024
- },
1025
- optionsClassificacaoTributaria() {
1026
- const situacaoSelecionada =
1027
- this.configuracao?.prefeitura?.servico?.ibsCbsSituacaoTributaria || "";
1028
- const codigoSituacao = this.getCodigoTributario(situacaoSelecionada);
1029
-
1030
- if (!codigoSituacao || codigoSituacao === "0") {
1031
- return Helpers.classificacaoTributaria;
1032
- }
1033
-
1034
- return Helpers.classificacaoTributaria.filter((item) => {
1035
- const codigoClassificacao = this.getCodigoTributario(
1036
- item.id || item.content || ""
1037
- );
1038
- return codigoClassificacao.startsWith(codigoSituacao);
1039
- });
1040
- },
1041
- optionsTributacaoIBSCBS() {
1042
- return Helpers.tributacaoIBSCBS;
1043
- },
1044
- optionsNbs() {
1045
- return Helpers.nbs;
1046
- },
1047
- optionsCnae() {
1048
- return Helpers.cnae;
1049
- },
1050
- },
1051
- methods: {
1052
- ...mapActions("generic", ["postApi"]),
1053
- ...mapMutations("generic", ["removeLoading", "removeEvent"]),
1054
- ...mapMutations("user", ["addUserLogged"]),
1055
- getCodigoTributario(valor) {
1056
- if (!valor || typeof valor !== "string") {
1057
- return "";
1058
- }
1059
-
1060
- return valor.split(" - ")[0].trim();
1061
- },
1062
- normalizeLegacyFields() {
1063
- const prefeituraNbs = this.configuracao?.prefeitura?.servico?.nbs;
1064
- if (prefeituraNbs && typeof prefeituraNbs === "object") {
1065
- this.configuracao.prefeitura.servico.nbs =
1066
- prefeituraNbs.id || prefeituraNbs.content || "";
1067
- }
1068
-
1069
- const prefeituraCodigoIndicadorOperacao =
1070
- this.configuracao?.prefeitura?.servico?.codigoIndicadorOperacao;
1071
- if (
1072
- prefeituraCodigoIndicadorOperacao &&
1073
- typeof prefeituraCodigoIndicadorOperacao === "object"
1074
- ) {
1075
- this.configuracao.prefeitura.servico.codigoIndicadorOperacao =
1076
- prefeituraCodigoIndicadorOperacao.id ||
1077
- prefeituraCodigoIndicadorOperacao.content ||
1078
- "";
1079
- }
1080
-
1081
- const prefeituraCodigoLC116 =
1082
- this.configuracao?.prefeitura?.servico?.codigoLC116;
1083
- if (prefeituraCodigoLC116 && typeof prefeituraCodigoLC116 === "object") {
1084
- this.configuracao.prefeitura.servico.codigoLC116 =
1085
- prefeituraCodigoLC116.id || prefeituraCodigoLC116.content || "";
1086
- }
1087
-
1088
- const prefeituraIbsCbsClassificacaoTributaria =
1089
- this.configuracao?.prefeitura?.servico?.ibsCbsClassificacaoTributaria;
1090
- if (
1091
- prefeituraIbsCbsClassificacaoTributaria &&
1092
- typeof prefeituraIbsCbsClassificacaoTributaria === "object"
1093
- ) {
1094
- this.configuracao.prefeitura.servico.ibsCbsClassificacaoTributaria =
1095
- prefeituraIbsCbsClassificacaoTributaria.id ||
1096
- prefeituraIbsCbsClassificacaoTributaria.content ||
1097
- "";
1098
- }
1099
-
1100
- const prefeituraIbsCbsSituacaoTributaria =
1101
- this.configuracao?.prefeitura?.servico?.ibsCbsSituacaoTributaria;
1102
- if (
1103
- prefeituraIbsCbsSituacaoTributaria &&
1104
- typeof prefeituraIbsCbsSituacaoTributaria === "object"
1105
- ) {
1106
- this.configuracao.prefeitura.servico.ibsCbsSituacaoTributaria =
1107
- prefeituraIbsCbsSituacaoTributaria.id ||
1108
- prefeituraIbsCbsSituacaoTributaria.content ||
1109
- "";
1110
- }
1111
-
1112
- const nacionalNbs = this.configuracao?.nacional?.servico?.nbs;
1113
- if (nacionalNbs && typeof nacionalNbs === "object") {
1114
- this.configuracao.nacional.servico.nbs =
1115
- nacionalNbs.id || nacionalNbs.content || "";
1116
- }
1117
-
1118
- const nacionalCodigoTributacaoNacional =
1119
- this.configuracao?.nacional?.servico?.codigoTributacaoNacional;
1120
- if (
1121
- nacionalCodigoTributacaoNacional &&
1122
- typeof nacionalCodigoTributacaoNacional === "object"
1123
- ) {
1124
- this.configuracao.nacional.servico.codigoTributacaoNacional =
1125
- nacionalCodigoTributacaoNacional.id ||
1126
- nacionalCodigoTributacaoNacional.content ||
1127
- "";
1128
- }
1129
- },
1130
- create() {
1131
- let request = {
1132
- ambiente: this.configuracao.comum.ambiente,
1133
- habilitada: this.configuracao.comum.habilitada,
1134
- autenticacao: this.configuracao.comum.autenticacao,
1135
- loginPrefeitura: this.configuracao.comum.loginPrefeitura,
1136
- senhaPrefeitura: this.configuracao.comum.senhaPrefeitura,
1137
- proximoRps: this.configuracao.comum.proximoRps,
1138
-
1139
- optanteSimplesNacional:
1140
- this.configuracao.prefeitura.optanteSimplesNacional,
1141
- regimeTributario:
1142
- this.configuracao.prefeitura.regimeTributario?.id ?? "",
1143
- regimeTributarioEspecial:
1144
- this.configuracao.prefeitura.regimeTributarioEspecial?.id ?? "",
1145
- incentivadorCultural: this.configuracao.prefeitura.incentivadorCultural,
1146
- naturezaOperacao:
1147
- this.configuracao.prefeitura.naturezaOperacao?.id ?? "",
1148
-
1149
- codigoOpcaoSimplesNacional:
1150
- this.configuracao.nacional.codigoOpcaoSimplesNacional?.id ?? "",
1151
- tipoTributacao: this.configuracao.nacional.tipoTributacao?.id ?? "",
1152
- regimeEspecialTributacaoMunicipal:
1153
- this.configuracao.nacional.regimeEspecialTributacaoMunicipal?.id ??
1154
- "",
1155
- regimeApuracaoTributariaSimplesNacional:
1156
- this.configuracao.nacional.regimeApuracaoTributariaSimplesNacional
1157
- ?.id ?? "",
1158
- situacaoTributariaPisCofins:
1159
- this.configuracao.nacional.situacaoTributariaPisCofins?.id ?? "",
1160
- percentualTotalTributosFederais:
1161
- this.configuracao.nacional.percentualTotalTributosFederais,
1162
- percentualTotalTributosEstaduais:
1163
- this.configuracao.nacional.percentualTotalTributosEstaduais,
1164
- percentualTotalTributosMunicipais:
1165
- this.configuracao.nacional.percentualTotalTributosMunicipais,
1166
-
1167
- pis: this.configuracao.comum.pis,
1168
- cofins: this.configuracao.comum.cofins,
1169
- iss: this.configuracao.comum.iss,
1170
- csll: this.configuracao.comum.csll,
1171
- inss: this.configuracao.comum.inss,
1172
- ir: this.configuracao.comum.ir,
1173
- ibs: this.configuracao.comum.ibs,
1174
- cbs: this.configuracao.comum.cbs,
1175
-
1176
- codigoTributacaoNacional:
1177
- this.configuracao.nacional.servico.codigoTributacaoNacional,
1178
- codigoTributacaoMunicipal:
1179
- this.configuracao.nacional.servico.codigoTributacaoMunicipal,
1180
-
1181
- codigoLC116: this.configuracao.prefeitura.servico.codigoLC116,
1182
- codigoIndicadorOperacao:
1183
- this.configuracao.prefeitura.servico.codigoIndicadorOperacao,
1184
- ibsCbsClassificacaoTributaria:
1185
- this.configuracao.prefeitura.servico.ibsCbsClassificacaoTributaria,
1186
- ibsCbsSituacaoTributaria:
1187
- this.configuracao.prefeitura.servico.ibsCbsSituacaoTributaria,
1188
-
1189
- cnae:
1190
- this.configuracao.comum.ambiente === "Prefeitura"
1191
- ? this.configuracao.prefeitura.servico.cnae
1192
- : this.configuracao.nacional.servico.cnae,
1193
-
1194
- nbs:
1195
- this.configuracao.comum.ambiente === "Prefeitura"
1196
- ? this.configuracao.prefeitura.servico.nbs
1197
- : this.configuracao.nacional.servico.nbs,
1198
-
1199
- aliquotaISSQN:
1200
- this.configuracao.comum.ambiente === "Prefeitura"
1201
- ? this.configuracao.prefeitura.servico.aliquotaISSQN
1202
- : this.configuracao.nacional.servico.aliquotaISSQN,
1203
-
1204
- discriminacao:
1205
- this.configuracao.comum.ambiente === "Prefeitura"
1206
- ? this.configuracao.prefeitura.servico.discriminacao
1207
- : this.configuracao.nacional.servico.discriminacao,
1208
- };
1209
-
1210
- let params = { url: this.urlCreate, obj: request, notNotifyToast: true };
1211
- this.postApi(params).then((response) => {
1212
- if (response.success) {
1213
- localStorage.removeItem(STORAGE_KEY);
1214
- this.success = true;
1215
- }
1216
- this.removeLoading(["create"]);
1217
- });
1218
- },
1219
- },
1220
- watch: {
1221
- "configuracao.prefeitura.optanteSimplesNacional": {
1222
- deep: true,
1223
- handler(val) {
1224
- if (this.ehSimplesNacional) {
1225
- this.configuracao.prefeitura.regimeTributario = {
1226
- content: "Simples Nacional",
1227
- id: "Simples Nacional",
1228
- };
1229
- } else {
1230
- this.configuracao.prefeitura.regimeTributario = {
1231
- content: "Regime Normal",
1232
- id: "Regime Normal",
1233
- };
1234
- }
1235
- },
1236
- },
1237
- "configuracao.prefeitura.servico.ibsCbsSituacaoTributaria": {
1238
- handler(novoValor) {
1239
- const codigoSituacao = this.getCodigoTributario(novoValor);
1240
- if (!codigoSituacao || codigoSituacao === "0") {
1241
- return;
1242
- }
1243
-
1244
- const classificacaoAtual =
1245
- this.configuracao?.prefeitura?.servico
1246
- ?.ibsCbsClassificacaoTributaria || "";
1247
- const codigoClassificacao =
1248
- this.getCodigoTributario(classificacaoAtual);
1249
-
1250
- if (
1251
- codigoClassificacao &&
1252
- !codigoClassificacao.startsWith(codigoSituacao)
1253
- ) {
1254
- this.configuracao.prefeitura.servico.ibsCbsClassificacaoTributaria =
1255
- "";
1256
- }
1257
- },
1258
- },
1259
- configuracao: {
1260
- deep: true,
1261
- handler(val) {
1262
- localStorage.setItem(STORAGE_KEY, JSON.stringify(val));
1263
- },
1264
- },
1265
- },
1266
- };
1267
- </script>
1268
-
1269
- <style scoped>
1270
- .step {
1271
- margin-top: 5px;
1272
- height: 48px;
1273
- width: 48px;
1274
- font-size: 20px;
1275
- display: grid;
1276
- place-items: center;
1277
- background-color: #fafafc;
1278
- border-radius: 100%;
1279
- border: 1px solid #dbdfe9;
1280
- position: relative;
1281
- color: #8ca1b7;
1282
- }
1283
-
1284
- .title {
1285
- margin-top: 9px;
1286
- font-size: 18px;
1287
- }
1288
-
1289
- .icon-success {
1290
- font-size: 50px;
1291
- color: #52c41a;
1292
- }
1293
-
1294
- .div-success {
1295
- width: 550px;
1296
- margin: auto;
1297
- }
1298
-
1299
- .company {
1300
- font-size: 20px;
1301
- }
1302
-
1303
- .step-by-step-opcoes {
1304
- margin-top: 20px;
1305
- }
1306
- </style>