@nixweb/nixloc-ui 1.16.0 → 1.17.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 (820) hide show
  1. package/package.json +1 -1
  2. package/src/App.vue +13 -296
  3. package/src/component/forms/Button.vue +162 -0
  4. package/src/component/forms/ButtonFilter.vue +104 -0
  5. package/src/component/forms/ButtonGroup.vue +67 -0
  6. package/src/component/forms/ButtonGroupInline.vue +210 -0
  7. package/src/component/forms/ButtonSub.vue +98 -0
  8. package/src/component/forms/ButtonToggle.vue +77 -0
  9. package/src/component/forms/CheckboxGroup.vue +69 -0
  10. package/src/component/forms/CheckboxServer.vue +237 -0
  11. package/src/component/forms/CheckboxSimple.vue +59 -0
  12. package/src/component/forms/Color.vue +38 -0
  13. package/src/component/forms/DateTime.vue +170 -0
  14. package/src/component/forms/DateYearMonth.vue +193 -0
  15. package/src/component/forms/Dropdown.vue +236 -0
  16. package/src/component/forms/EditorHtml.vue +132 -0
  17. package/src/component/forms/FileUpload.vue +170 -0
  18. package/src/component/forms/ImageUpload.vue +214 -0
  19. package/src/component/forms/IncrementDecrement.vue +151 -0
  20. package/src/component/forms/InputAddressGoogle.vue +171 -0
  21. package/src/component/forms/InputCallToAction.vue +135 -0
  22. package/src/component/forms/InputDecimal.vue +191 -0
  23. package/src/component/forms/InputDecimalDiscount.vue +147 -0
  24. package/src/component/forms/InputNumber.vue +160 -0
  25. package/src/component/forms/InputPassword.vue +148 -0
  26. package/src/component/forms/InputTag.vue +125 -0
  27. package/src/component/forms/InputText.vue +174 -0
  28. package/src/component/forms/InputTextEdit.vue +69 -0
  29. package/src/component/forms/InputWhatsApp.vue +48 -0
  30. package/src/component/forms/Modal.vue +86 -0
  31. package/src/component/forms/RadioGroup.vue +84 -0
  32. package/src/component/forms/Select.vue +336 -0
  33. package/src/component/forms/SelectStatic.vue +198 -0
  34. package/src/component/forms/SideBar.vue +100 -0
  35. package/src/component/forms/Slider.vue +18 -0
  36. package/src/component/forms/TextArea.vue +140 -0
  37. package/src/component/forms/Toggle.vue +72 -0
  38. package/src/component/layout/Account.vue +131 -0
  39. package/src/component/layout/Alert.vue +88 -0
  40. package/src/component/layout/AnimatedPhrase.vue +68 -0
  41. package/src/component/layout/Badge.vue +111 -0
  42. package/src/component/layout/BarFloating.vue +68 -0
  43. package/src/component/layout/BottomActionsBar.vue +205 -0
  44. package/src/component/layout/ColorPicker.vue +175 -0
  45. package/src/component/layout/FixedBar.vue +103 -0
  46. package/src/component/layout/Gantt.vue +128 -0
  47. package/src/component/layout/Header.vue +56 -0
  48. package/src/component/layout/HideShow.vue +62 -0
  49. package/src/component/layout/IconMolded.vue +59 -0
  50. package/src/component/layout/IconPicker.vue +161 -0
  51. package/src/component/layout/LoadingFullPage.vue +27 -0
  52. package/src/component/layout/Menu.vue +287 -0
  53. package/src/component/layout/Molded.vue +30 -0
  54. package/src/component/layout/NewAccount.vue +136 -0
  55. package/src/component/layout/NewHeader.vue +60 -0
  56. package/src/component/layout/NewIconMolded.vue +71 -0
  57. package/src/component/layout/NewMenu.vue +473 -0
  58. package/src/component/layout/Panel.vue +185 -0
  59. package/src/component/layout/Popover.vue +126 -0
  60. package/src/component/layout/ScrollBar.vue +57 -0
  61. package/src/component/layout/Tab.vue +259 -0
  62. package/src/component/layout/Tag.vue +97 -0
  63. package/src/component/layout/Tooltip.vue +155 -0
  64. package/src/component/layout/Wizard.vue +211 -0
  65. package/src/component/layout/Zoom.vue +111 -0
  66. package/src/component/rental/DisplayCalculatePeriod.vue +49 -0
  67. package/src/component/rental/DisplayPeriodRent.vue +55 -0
  68. package/src/component/rental/DisplayTotalization.vue +86 -0
  69. package/src/component/report/Fields.vue +109 -0
  70. package/src/{components/modules/finance/dre/ReportCrossTable.vue → component/report/Report.vue} +117 -52
  71. package/src/component/report/ReportTable.vue +112 -0
  72. package/src/component/report/Totalization.vue +34 -0
  73. package/src/component/shared/CodeEditor.vue +128 -0
  74. package/src/component/shared/Collapse.vue +131 -0
  75. package/src/component/shared/Confirmation.vue +74 -0
  76. package/src/component/shared/DocumentEditor.vue +99 -0
  77. package/src/component/shared/DocumentPreview.vue +105 -0
  78. package/src/component/shared/DocumentPublic.vue +33 -0
  79. package/src/component/shared/ExportExcel.vue +56 -0
  80. package/src/component/shared/ExportPDF.vue +116 -0
  81. package/src/component/shared/FullCalendar.vue +176 -0
  82. package/src/component/shared/HeaderReport.vue +47 -0
  83. package/src/component/shared/HorizontalFilter.vue +64 -0
  84. package/src/component/shared/ListNotifications.vue +70 -0
  85. package/src/component/shared/Loading.vue +107 -0
  86. package/src/component/shared/LoadingCard.vue +65 -0
  87. package/src/component/shared/LoadingMoreButton.vue +23 -0
  88. package/src/component/shared/Messages.vue +139 -0
  89. package/src/component/shared/PDFViewer.vue +24 -0
  90. package/src/component/shared/Pagination.vue +113 -0
  91. package/src/component/shared/ParameterLegend.vue +169 -0
  92. package/src/component/shared/ProgressBar.vue +25 -0
  93. package/src/component/shared/QueryButton.vue +66 -0
  94. package/src/component/shared/Report.vue +250 -0
  95. package/src/component/shared/SaveCancel.vue +99 -0
  96. package/src/component/shared/Search.vue +174 -0
  97. package/src/component/shared/SelectOption.vue +162 -0
  98. package/src/component/shared/Table.vue +232 -0
  99. package/src/component/shared/TableButton.vue +36 -0
  100. package/src/component/shared/TableDraggable.vue +117 -0
  101. package/src/component/shared/TableImport.vue +93 -0
  102. package/src/component/shared/TableItem.vue +228 -0
  103. package/src/component/shared/TableTotalPerPage.vue +114 -0
  104. package/src/component/shared/TableTotalRecords.vue +44 -0
  105. package/src/component/shared/TableTotalization.vue +47 -0
  106. package/src/component/shared/TimeLine.vue +42 -0
  107. package/src/component/shared/Timer.vue +78 -0
  108. package/src/component/shared/Tip.vue +42 -0
  109. package/src/component/shared/Toast.vue +69 -0
  110. package/src/component/shared/ToggleTheme.vue +128 -0
  111. package/src/component/shared/TotalizationReport.vue +86 -0
  112. package/src/component/shared/VerticalFilter.vue +97 -0
  113. package/src/component/shared/actions/ActionButtons.vue +53 -0
  114. package/src/component/shared/actions/ActionErrorContent.vue +103 -0
  115. package/src/component/shared/actions/ActionFooter.vue +93 -0
  116. package/src/component/shared/actions/ActionHeader.vue +110 -0
  117. package/src/component/shared/actions/ActionItemList.vue +143 -0
  118. package/src/component/shared/actions/ActionsOptions.vue +209 -0
  119. package/src/component/shared/actions/ActionsSelected.vue +262 -0
  120. package/src/component/shared/automation/ActivitiesList.vue +44 -0
  121. package/src/component/shared/automation/AddRule.vue +61 -0
  122. package/src/component/shared/automation/AutomationBuilder.vue +27 -0
  123. package/src/component/shared/automation/DynamicComponentList.vue +86 -0
  124. package/src/component/shared/automation/SelectRule.vue +98 -0
  125. package/src/component/shared/automation/components/BillingByRent.vue +98 -0
  126. package/src/component/shared/automation/components/SendEmail.vue +94 -0
  127. package/src/component/shared/file-manager/FileManager.vue +391 -0
  128. package/src/component/shared/filter-builder/FilterBuilder.vue +221 -0
  129. package/src/component/shared/filter-builder/FilterQuery.vue +95 -0
  130. package/src/component/shared/query-builder/AddRule.vue +203 -0
  131. package/src/component/shared/query-builder/ConvertToOdata.js +86 -0
  132. package/src/component/shared/query-builder/DynamicComponent.vue +161 -0
  133. package/src/component/shared/query-builder/DynamicComponentList.vue +70 -0
  134. package/src/component/shared/query-builder/Fields.vue +93 -0
  135. package/src/component/shared/query-builder/QueryBuilder.vue +69 -0
  136. package/src/component/shared/query-builder/Rules.vue +68 -0
  137. package/src/component/shared/query-builder/SelectRule.vue +97 -0
  138. package/src/component/shared/query-builder/Tags.vue +59 -0
  139. package/src/component/shared/query-builder/utilities.js +22 -0
  140. package/src/component/signature/Payment.vue +161 -0
  141. package/src/{components/modules/adm/plan → component/signature}/Warning.vue +16 -14
  142. package/src/component/template/ListViewWithDataHandler.vue +434 -0
  143. package/src/component/template/ReportCreateUpdate.vue +110 -0
  144. package/src/component/template/ViewTemplateConfiguration.vue +63 -0
  145. package/src/component/template/ViewTemplateDocumentView.vue +213 -0
  146. package/src/component/template/ViewTemplateImportFile.vue +347 -0
  147. package/src/component/template/ViewTemplateReportList.vue +240 -0
  148. package/src/component/template/ViewTemplateReportPreview.vue +521 -0
  149. package/src/component/template/ViewTemplateSelectOption.vue +46 -0
  150. package/src/component/template/ViewTemplateWithSalveCancel.vue +32 -0
  151. package/src/component/template/ViewTemplateWithTable.vue +66 -0
  152. package/src/component/template/model/Report.js +6 -0
  153. package/src/component/training/Course.vue +344 -0
  154. package/src/component/training/CourseView.vue +199 -0
  155. package/src/component/value-objects/Address.js +11 -0
  156. package/src/component/value-objects/Address.vue +173 -0
  157. package/src/component/value-objects/Contact.js +7 -0
  158. package/src/component/value-objects/Contact.vue +106 -0
  159. package/src/component/value-objects/Person.js +10 -0
  160. package/src/component/value-objects/Person.vue +130 -0
  161. package/src/config/axios.js +9 -32
  162. package/src/config/dicas.js +14 -14
  163. package/src/config/router.js +13 -352
  164. package/src/config/token.js +14 -13
  165. package/src/main.js +23 -75
  166. package/src/store/modules/automation.js +31 -0
  167. package/src/store/modules/generic.js +897 -0
  168. package/src/store/modules/report.js +278 -0
  169. package/src/store/modules/user.js +70 -0
  170. package/src/store/modules/util.js +26 -0
  171. package/src/store/modules/validation.js +39 -0
  172. package/src/store/store.js +13 -23
  173. package/src/assets/logo.png +0 -0
  174. package/src/assets/nfse-nacional.svg +0 -32
  175. package/src/components/modules/adm/audit-log/TimelineLog.vue +0 -557
  176. package/src/components/modules/adm/authorization/Authorization.vue +0 -81
  177. package/src/components/modules/adm/authorization/AuthorizationCreate.vue +0 -63
  178. package/src/components/modules/adm/authorization/AuthorizationRow.vue +0 -304
  179. package/src/components/modules/adm/authorization/AuthorizationTable.vue +0 -117
  180. package/src/components/modules/adm/company/Company.js +0 -9
  181. package/src/components/modules/adm/company/Company.vue +0 -124
  182. package/src/components/modules/adm/document/Document.js +0 -41
  183. package/src/components/modules/adm/document/DocumentCreateUpdate.vue +0 -272
  184. package/src/components/modules/adm/document/DocumentPreview.vue +0 -283
  185. package/src/components/modules/adm/document/Link.vue +0 -118
  186. package/src/components/modules/adm/document/PrintDetail.vue +0 -127
  187. package/src/components/modules/adm/document/PrintPreview.vue +0 -127
  188. package/src/components/modules/adm/document/SelectOptionDocument.vue +0 -222
  189. package/src/components/modules/adm/document/SendMail.vue +0 -248
  190. package/src/components/modules/adm/document/SendSignature.vue +0 -289
  191. package/src/components/modules/adm/document/TemplateDocument.vue +0 -133
  192. package/src/components/modules/adm/login/ConfirmMailMobile.vue +0 -101
  193. package/src/components/modules/adm/login/ForgotPassword.js +0 -8
  194. package/src/components/modules/adm/login/ForgotPassword.vue +0 -144
  195. package/src/components/modules/adm/login/Login.js +0 -7
  196. package/src/components/modules/adm/login/Login.vue +0 -195
  197. package/src/components/modules/adm/login/Menu.js +0 -992
  198. package/src/components/modules/adm/login/RandomImages.vue +0 -64
  199. package/src/components/modules/adm/login/RefreshUserLogged.vue +0 -59
  200. package/src/components/modules/adm/login/ResetPassword.vue +0 -158
  201. package/src/components/modules/adm/login/SendConfirmMailMobile.vue +0 -72
  202. package/src/components/modules/adm/login/SignalrUser.vue +0 -166
  203. package/src/components/modules/adm/login/__Menu.js +0 -1000
  204. package/src/components/modules/adm/notification/NotificationConfig.vue +0 -827
  205. package/src/components/modules/adm/parameter/ParameterBilling.js +0 -9
  206. package/src/components/modules/adm/parameter/ParameterBilling.vue +0 -91
  207. package/src/components/modules/adm/parameter/ParameterDangerZone.js +0 -12
  208. package/src/components/modules/adm/parameter/ParameterDangerZone.vue +0 -159
  209. package/src/components/modules/adm/parameter/ParameterOperational.js +0 -8
  210. package/src/components/modules/adm/parameter/ParameterOperational.vue +0 -91
  211. package/src/components/modules/adm/parameter/ParameterRental.js +0 -43
  212. package/src/components/modules/adm/parameter/ParameterRental.vue +0 -226
  213. package/src/components/modules/adm/parameter/ParameterStock.js +0 -14
  214. package/src/components/modules/adm/parameter/ParameterStock.vue +0 -127
  215. package/src/components/modules/adm/parameter/ParameterSystem.js +0 -29
  216. package/src/components/modules/adm/parameter/ParameterSystem.vue +0 -118
  217. package/src/components/modules/adm/plan/Nfse.vue +0 -121
  218. package/src/components/modules/adm/plan/Payment.vue +0 -125
  219. package/src/components/modules/adm/register/Register.js +0 -9
  220. package/src/components/modules/adm/register/Register.vue +0 -247
  221. package/src/components/modules/adm/store/PurchaseHistory.vue +0 -178
  222. package/src/components/modules/adm/store/Store.vue +0 -492
  223. package/src/components/modules/adm/store/Success.vue +0 -79
  224. package/src/components/modules/adm/store/Term.vue +0 -211
  225. package/src/components/modules/adm/user/Profile.vue +0 -131
  226. package/src/components/modules/adm/user/Rules.vue +0 -232
  227. package/src/components/modules/adm/user/User.js +0 -35
  228. package/src/components/modules/adm/user/UserCreateUpdate.vue +0 -277
  229. package/src/components/modules/adm/user/UserRule.vue +0 -78
  230. package/src/components/modules/automation/AutomationBuilder.vue +0 -54
  231. package/src/components/modules/billing/billet/Billet.vue +0 -133
  232. package/src/components/modules/billing/billet/CancelBillet.vue +0 -68
  233. package/src/components/modules/billing/billet/CheckBillet.vue +0 -122
  234. package/src/components/modules/billing/billet/CreateBillet.vue +0 -83
  235. package/src/components/modules/billing/billet/PDFBillet.vue +0 -116
  236. package/src/components/modules/billing/billet/UpdateBillet.vue +0 -78
  237. package/src/components/modules/billing/billet-config/BilletConfig.js +0 -12
  238. package/src/components/modules/billing/billet-config/BilletConfigCreateUpdate.vue +0 -91
  239. package/src/components/modules/billing/generate-billing/GenerateBilling.vue +0 -371
  240. package/src/components/modules/billing/generate-billing/GenerateInvoice.vue +0 -98
  241. package/src/components/modules/billing/generate-billing/GenerateTaxDocument.vue +0 -180
  242. package/src/components/modules/billing/generate-billing/InvoiceOrTaxDocument.vue +0 -61
  243. package/src/components/modules/billing/generate-billing/ItemsRentForInvoice.vue +0 -205
  244. package/src/components/modules/billing/generate-billing/NewGenerateNfse.vue +0 -430
  245. package/src/components/modules/billing/generate-billing/SuccessBilling.vue +0 -149
  246. package/src/components/modules/billing/history-billet/HistoryBillet.vue +0 -85
  247. package/src/components/modules/billing/invoice/DropdownOptionsInvoice.vue +0 -219
  248. package/src/components/modules/billing/invoice/Invoice.js +0 -30
  249. package/src/components/modules/billing/invoice/InvoiceCreateUpdate.vue +0 -209
  250. package/src/components/modules/billing/invoice/InvoiceTotalization.vue +0 -62
  251. package/src/components/modules/billing/items-invoice/ItemsInvoice.js +0 -20
  252. package/src/components/modules/billing/items-invoice/ItemsInvoiceCreateUpdate.vue +0 -138
  253. package/src/components/modules/billing/items-invoice/ItemsInvoiceList.vue +0 -235
  254. package/src/components/modules/cashier/CashierMovementList.vue +0 -186
  255. package/src/components/modules/cashier/CloseCashier.js +0 -9
  256. package/src/components/modules/cashier/CloseCashier.vue +0 -112
  257. package/src/components/modules/cashier/OpenCashier.js +0 -9
  258. package/src/components/modules/cashier/OpenCashier.vue +0 -154
  259. package/src/components/modules/cashier/Totalization.vue +0 -114
  260. package/src/components/modules/crm/category-customer/CategoryCustomer.js +0 -10
  261. package/src/components/modules/crm/category-customer/CategoryCustomerCreateUpdate.vue +0 -92
  262. package/src/components/modules/crm/category-customer/OriginCustomer.js +0 -10
  263. package/src/components/modules/crm/category-customer/OriginCustomerCreateUpdate.vue +0 -92
  264. package/src/components/modules/dashboard/alert/Alert.vue +0 -115
  265. package/src/components/modules/dashboard/billing/PanelBillet.vue +0 -211
  266. package/src/components/modules/dashboard/billing/PanelInvoice.vue +0 -189
  267. package/src/components/modules/dashboard/config/ConfigDashboard.vue +0 -253
  268. package/src/components/modules/dashboard/favorite/Favorite.js +0 -126
  269. package/src/components/modules/dashboard/favorite/Favorite.vue +0 -117
  270. package/src/components/modules/dashboard/favorite/FavoriteCreateRemove.vue +0 -136
  271. package/src/components/modules/dashboard/favorite/_Favorite.vue +0 -289
  272. package/src/components/modules/dashboard/finance/BalanceBank.vue +0 -124
  273. package/src/components/modules/dashboard/finance/BalanceFinance.vue +0 -186
  274. package/src/components/modules/dashboard/finance/BillsToPay.vue +0 -137
  275. package/src/components/modules/dashboard/finance/BillsToReceive.vue +0 -141
  276. package/src/components/modules/dashboard/finance/FinancialCard.vue +0 -132
  277. package/src/components/modules/dashboard/finance/PanelFinance.vue +0 -146
  278. package/src/components/modules/dashboard/finance/PanelPayReceive.vue +0 -228
  279. package/src/components/modules/dashboard/finance/PaymentByStatus.vue +0 -121
  280. package/src/components/modules/dashboard/operational/DeliveryDevolution.vue +0 -163
  281. package/src/components/modules/dashboard/operational/PanelOperational.vue +0 -230
  282. package/src/components/modules/dashboard/rent/BalanceRent.vue +0 -156
  283. package/src/components/modules/dashboard/rent/PanelRent.vue +0 -187
  284. package/src/components/modules/dashboard/rent/PanelRent_old.vue +0 -72
  285. package/src/components/modules/dashboard/rent/RankingCollaborator.vue +0 -166
  286. package/src/components/modules/dashboard/rent/StatusCard.vue +0 -134
  287. package/src/components/modules/dashboard/rent/TotalRent.vue +0 -133
  288. package/src/components/modules/dashboard/rent/_BalanceRent.vue +0 -176
  289. package/src/components/modules/dashboard/rent/_RankingCollaborator.vue +0 -173
  290. package/src/components/modules/dashboard/rent/_TotalRent.vue +0 -154
  291. package/src/components/modules/dashboard/shared/SelectFilter.vue +0 -136
  292. package/src/components/modules/dashboard/signature/PanelSignature.vue +0 -145
  293. package/src/components/modules/dashboard/stock/TotalStock.vue +0 -127
  294. package/src/components/modules/dashboard/task/PanelTask.vue +0 -122
  295. package/src/components/modules/finance/bank/Bank.js +0 -12
  296. package/src/components/modules/finance/bank/BankCreateUpdate.vue +0 -101
  297. package/src/components/modules/finance/bank-account/BankAccountCreateUpdate.js +0 -34
  298. package/src/components/modules/finance/bank-account/BankAccountCreateUpdate.vue +0 -234
  299. package/src/components/modules/finance/bank-reconciliation/AddTransactionsList.vue +0 -137
  300. package/src/components/modules/finance/bank-reconciliation/BankReconciliation.js +0 -7
  301. package/src/components/modules/finance/bank-reconciliation/BankReconciliation.vue +0 -164
  302. package/src/components/modules/finance/bank-reconciliation/ImportPluggy.vue +0 -95
  303. package/src/components/modules/finance/bank-reconciliation/ItemFixedBar.vue +0 -39
  304. package/src/components/modules/finance/bank-reconciliation/ItemReconciliation.vue +0 -125
  305. package/src/components/modules/finance/bank-reconciliation/ReconciliationList.vue +0 -185
  306. package/src/components/modules/finance/bank-reconciliation/SuggestionList.vue +0 -278
  307. package/src/components/modules/finance/bank-reconciliation/TransactionsList.vue +0 -211
  308. package/src/components/modules/finance/chart-of-accounts/ChartOfAccounts.js +0 -14
  309. package/src/components/modules/finance/chart-of-accounts/ChartOfAccountsCreateUpdate.vue +0 -108
  310. package/src/components/modules/finance/chart-of-accounts/ChartOfAccountsCreateUpdateList.vue +0 -260
  311. package/src/components/modules/finance/cost-center/CostCenter.js +0 -16
  312. package/src/components/modules/finance/cost-center/CostCenterCreateUpdate.vue +0 -128
  313. package/src/components/modules/finance/cost-center/CostCenterList.vue +0 -310
  314. package/src/components/modules/finance/dre/DataCrossTable.vue +0 -448
  315. package/src/components/modules/finance/new-payable-receivable/PayableReceivableConfig.vue +0 -35
  316. package/src/components/modules/finance/new-payable-receivable/PayableReceivableItem.vue +0 -448
  317. package/src/components/modules/finance/new-payable-receivable/PayableReceivableList.vue +0 -321
  318. package/src/components/modules/finance/new-payable-receivable/PayableReceivableSummary.vue +0 -179
  319. package/src/components/modules/finance/payable-receivable/PayableReceivable.js +0 -57
  320. package/src/components/modules/finance/payable-receivable/PayableReceivableCreateUpdate.vue +0 -357
  321. package/src/components/modules/finance/pluggy/PluggyConnect.vue +0 -91
  322. package/src/components/modules/finance/relationship-rent/RelationshipRentCreateUpdate.vue +0 -127
  323. package/src/components/modules/finance/relationship-rent/RelationshipRentList.vue +0 -164
  324. package/src/components/modules/finance/transfer-account/TransferAccount.js +0 -18
  325. package/src/components/modules/finance/transfer-account/TransferAccountCreateUpdate.vue +0 -130
  326. package/src/components/modules/finance/type-payment/TypePayment.js +0 -14
  327. package/src/components/modules/finance/type-payment/TypePaymentCreateUpdate.vue +0 -125
  328. package/src/components/modules/human-resources/collaborator/Collaborator.js +0 -38
  329. package/src/components/modules/human-resources/collaborator/CollaboratorCreate.vue +0 -125
  330. package/src/components/modules/human-resources/collaborator/CollaboratorCreateUpdate.vue +0 -200
  331. package/src/components/modules/human-resources/collaborator/ConsultantCreateUpdate.vue +0 -86
  332. package/src/components/modules/ia/Nixia.vue +0 -327
  333. package/src/components/modules/maintenance/items-order-service/ItemsOrderService.js +0 -44
  334. package/src/components/modules/maintenance/items-order-service/ItemsOrderServiceCreateUpdate.vue +0 -272
  335. package/src/components/modules/maintenance/items-order-service/ItemsOrderServiceItem.vue +0 -181
  336. package/src/components/modules/maintenance/items-order-service/ItemsOrderServiceList.vue +0 -132
  337. package/src/components/modules/maintenance/order-service/DropdownOptionsOs.vue +0 -66
  338. package/src/components/modules/maintenance/order-service/OrderService.js +0 -33
  339. package/src/components/modules/maintenance/order-service/OrderServiceCreateUpdate.vue +0 -198
  340. package/src/components/modules/maintenance/order-service/OrderServiceTotalization.vue +0 -49
  341. package/src/components/modules/maintenance/os-panel/OsPanel.vue +0 -269
  342. package/src/components/modules/maintenance/os-panel/OsPanelItem.vue +0 -199
  343. package/src/components/modules/maintenance/payment-os/PaymentOs.js +0 -19
  344. package/src/components/modules/maintenance/payment-os/PaymentOsCreateUpdate.vue +0 -130
  345. package/src/components/modules/maintenance/payment-os/PaymentOsList.vue +0 -249
  346. package/src/components/modules/notifications/Comunication.vue +0 -51
  347. package/src/components/modules/notifications/Emails.vue +0 -91
  348. package/src/components/modules/notifications/Messaging.vue +0 -40
  349. package/src/components/modules/operational/AddressRentList.vue +0 -124
  350. package/src/components/modules/operational/ButtonMovimentStock.vue +0 -136
  351. package/src/components/modules/operational/ItemsRentList.vue +0 -319
  352. package/src/components/modules/operational/OperationRent.vue +0 -138
  353. package/src/components/modules/operational/OsPanel.vue +0 -534
  354. package/src/components/modules/operational/ReservationPanel.vue +0 -224
  355. package/src/components/modules/operational/SearchByFilter.vue +0 -121
  356. package/src/components/modules/operational/SearchList.vue +0 -198
  357. package/src/components/modules/operational/TeamRent.vue +0 -152
  358. package/src/components/modules/operational/items-rent/ItemRentOperationalUpdate.vue +0 -131
  359. package/src/components/modules/operational/items-rent/ItemsRent.js +0 -28
  360. package/src/components/modules/operational/items-rent/ItemsRentOperationalCreate.vue +0 -122
  361. package/src/components/modules/operational/items-rent/ItemsRentOperationalList.vue +0 -481
  362. package/src/components/modules/operational/movement-bulk/Errors.vue +0 -28
  363. package/src/components/modules/operational/movement-bulk/ItemConflict.vue +0 -95
  364. package/src/components/modules/operational/movement-bulk/ItemMovementBulkOutPut.vue +0 -185
  365. package/src/components/modules/operational/movement-bulk/ItemsMovementBulk.vue +0 -189
  366. package/src/components/modules/operational/movement-bulk/ItemsPatrimony.vue +0 -98
  367. package/src/components/modules/operational/movement-bulk/ListItemGrouped.vue +0 -92
  368. package/src/components/modules/operational/movement-bulk/MovementBulk.js +0 -23
  369. package/src/components/modules/operational/movement-bulk/MovementBulkCreateUpdate.vue +0 -138
  370. package/src/components/modules/operational/movement-bulk/MovementBulkUpdate.vue +0 -493
  371. package/src/components/modules/operational/movement-bulk/OldMovementBulkUpdate.vue +0 -591
  372. package/src/components/modules/operational/movement-bulk/RentsDistribution.vue +0 -196
  373. package/src/components/modules/operational/movement-bulk/SuccessMovement.vue +0 -62
  374. package/src/components/modules/operational/rent/DropdownOptionsRentOperational.vue +0 -201
  375. package/src/components/modules/operational/rent/RentOperational.js +0 -40
  376. package/src/components/modules/operational/rent/RentOperationalCreateUpdate.vue +0 -336
  377. package/src/components/modules/pdv/rent/AddressRentList.vue +0 -135
  378. package/src/components/modules/pdv/rent/FinalizeRent.vue +0 -147
  379. package/src/components/modules/pdv/rent/ItemsRentList.vue +0 -235
  380. package/src/components/modules/pdv/rent/ItemsRentUpdate.vue +0 -137
  381. package/src/components/modules/pdv/rent/PrintPdv.vue +0 -84
  382. package/src/components/modules/pdv/rent/Rent.js +0 -12
  383. package/src/components/modules/pdv/rent/RentCreate.vue +0 -470
  384. package/src/components/modules/pdv/rent/SearchByBarcode.vue +0 -91
  385. package/src/components/modules/pdv/rent/SearchByFilter.vue +0 -120
  386. package/src/components/modules/pdv/rent/SearchList.vue +0 -159
  387. package/src/components/modules/pdv/rent/SearchManual.vue +0 -125
  388. package/src/components/modules/pdv/rent/SuccessPdvRent.vue +0 -82
  389. package/src/components/modules/planner/card/Card.js +0 -16
  390. package/src/components/modules/planner/card/CardCreate.vue +0 -78
  391. package/src/components/modules/planner/card/CardEdit.vue +0 -177
  392. package/src/components/modules/planner/card/JobCreateUpdate.vue +0 -120
  393. package/src/components/modules/planner/card/JobList.vue +0 -209
  394. package/src/components/modules/planner/card/RentLinked.vue +0 -70
  395. package/src/components/modules/planner/card/RentLinkedList.vue +0 -216
  396. package/src/components/modules/planner/card/ResponsibleUser.vue +0 -149
  397. package/src/components/modules/planner/comment/CommentListCreateEdit.vue +0 -253
  398. package/src/components/modules/planner/funnel/Funnel.js +0 -19
  399. package/src/components/modules/planner/funnel/FunnelCreateUpdate.vue +0 -151
  400. package/src/components/modules/planner/funnel/FunnelList.vue +0 -193
  401. package/src/components/modules/planner/kanban/Badge.vue +0 -19
  402. package/src/components/modules/planner/kanban/Card.vue +0 -271
  403. package/src/components/modules/planner/kanban/Kanban.vue +0 -496
  404. package/src/components/modules/planner/step/ColorStep.vue +0 -56
  405. package/src/components/modules/planner/step/SelectStep.vue +0 -135
  406. package/src/components/modules/rental/Rental.drawio +0 -85
  407. package/src/components/modules/rental/address-rent/AddressRent.js +0 -13
  408. package/src/components/modules/rental/address-rent/AddressRentCreateUpdate.vue +0 -149
  409. package/src/components/modules/rental/address-rent/AddressRentList.vue +0 -63
  410. package/src/components/modules/rental/address-rent/ImportAddress.vue +0 -58
  411. package/src/components/modules/rental/billing/InvoiceList.vue +0 -246
  412. package/src/components/modules/rental/clone-rent/CloneRent.vue +0 -144
  413. package/src/components/modules/rental/expense/Expense.js +0 -29
  414. package/src/components/modules/rental/expense/ExpenseCreateUpdate.vue +0 -111
  415. package/src/components/modules/rental/expense/ExpenseList.vue +0 -96
  416. package/src/components/modules/rental/group-rent/GroupRent.js +0 -10
  417. package/src/components/modules/rental/group-rent/GroupRentCreateUpdate.vue +0 -97
  418. package/src/components/modules/rental/items-kit-rent/ItemsKitRent.js +0 -18
  419. package/src/components/modules/rental/items-kit-rent/ItemsKitRentList.vue +0 -154
  420. package/src/components/modules/rental/items-kit-rent/ItemsKitRentUpdate.vue +0 -119
  421. package/src/components/modules/rental/items-rent/ApplyDiscount.vue +0 -52
  422. package/src/components/modules/rental/items-rent/DisableMovement.vue +0 -54
  423. package/src/components/modules/rental/items-rent/ItemRentFixedBar.vue +0 -198
  424. package/src/components/modules/rental/items-rent/ItemRentStockAvailability.vue +0 -120
  425. package/src/components/modules/rental/items-rent/ItemRentUpdate.vue +0 -222
  426. package/src/components/modules/rental/items-rent/ItemsAccessoryCreate.vue +0 -148
  427. package/src/components/modules/rental/items-rent/ItemsAccessoryList.vue +0 -269
  428. package/src/components/modules/rental/items-rent/ItemsRent.js +0 -40
  429. package/src/components/modules/rental/items-rent/ItemsRentCreate.vue +0 -181
  430. package/src/components/modules/rental/items-rent/ItemsRentList.vue +0 -566
  431. package/src/components/modules/rental/items-rent/ItemsRentStatusStock.vue +0 -121
  432. package/src/components/modules/rental/items-rent/ItemsRentalInvoice.vue +0 -45
  433. package/src/components/modules/rental/items-rent/ItemsRentalTotalization.vue +0 -73
  434. package/src/components/modules/rental/items-rent/RecalculateValue.vue +0 -52
  435. package/src/components/modules/rental/items-rent/UpdateStatusInvoicing.vue +0 -50
  436. package/src/components/modules/rental/kit-rent/KitRent.js +0 -16
  437. package/src/components/modules/rental/kit-rent/KitRentCreateUpdate.vue +0 -146
  438. package/src/components/modules/rental/maintenance/ItemsOsList.vue +0 -172
  439. package/src/components/modules/rental/moviment/MovimentList.vue +0 -374
  440. package/src/components/modules/rental/new-items-rent/ApplyDiscount.vue +0 -131
  441. package/src/components/modules/rental/new-items-rent/BadgeAvailabilityStock.vue +0 -110
  442. package/src/components/modules/rental/new-items-rent/BadgeStatusInvoice.vue +0 -73
  443. package/src/components/modules/rental/new-items-rent/BadgeStatusStock.vue +0 -144
  444. package/src/components/modules/rental/new-items-rent/BadgeTotalization.vue +0 -224
  445. package/src/components/modules/rental/new-items-rent/GroupDraggable.vue +0 -880
  446. package/src/components/modules/rental/new-items-rent/GroupSubgroupSelector.vue +0 -758
  447. package/src/components/modules/rental/new-items-rent/GroupSubgroupTransfer.vue +0 -58
  448. package/src/components/modules/rental/new-items-rent/GroupTemplateModal.vue +0 -368
  449. package/src/components/modules/rental/new-items-rent/IconTypeEquipament.vue +0 -24
  450. package/src/components/modules/rental/new-items-rent/InputSmartValue.vue +0 -97
  451. package/src/components/modules/rental/new-items-rent/ItemKitOrAccessoryList.vue +0 -177
  452. package/src/components/modules/rental/new-items-rent/ItemRentSection.vue +0 -134
  453. package/src/components/modules/rental/new-items-rent/ItemRentUpdate.vue +0 -158
  454. package/src/components/modules/rental/new-items-rent/ItemsAccessoryList.vue +0 -13
  455. package/src/components/modules/rental/new-items-rent/ItemsRent.js +0 -51
  456. package/src/components/modules/rental/new-items-rent/ItemsRentCreate.vue +0 -367
  457. package/src/components/modules/rental/new-items-rent/ItemsRentList.vue +0 -1445
  458. package/src/components/modules/rental/new-items-rent/ItemsRentRow.vue +0 -256
  459. package/src/components/modules/rental/new-items-rent/RecalculateValue.vue +0 -54
  460. package/src/components/modules/rental/new-items-rent/RemoveItem.vue +0 -93
  461. package/src/components/modules/rental/new-items-rent/SearchProductsToolbar.vue +0 -323
  462. package/src/components/modules/rental/nfse/NfseList.vue +0 -167
  463. package/src/components/modules/rental/nfse/NfseListItem.vue +0 -195
  464. package/src/components/modules/rental/payment-rent/PaymentRent.js +0 -20
  465. package/src/components/modules/rental/payment-rent/PaymentRentCreateUpdate.vue +0 -159
  466. package/src/components/modules/rental/payment-rent/PaymentRentList.vue +0 -216
  467. package/src/components/modules/rental/period-rental/GeneratePeriodRent.js +0 -8
  468. package/src/components/modules/rental/period-rental/GeneratePeriodRent.vue +0 -171
  469. package/src/components/modules/rental/period-rental/PeriodRent.js +0 -20
  470. package/src/components/modules/rental/period-rental/PeriodRentCreateUpdate.vue +0 -191
  471. package/src/components/modules/rental/period-rental/PeriodRentItem.vue +0 -64
  472. package/src/components/modules/rental/period-rental/PeriodRentList.vue +0 -61
  473. package/src/components/modules/rental/period-rental/SelectOptionPeriodRent.vue +0 -153
  474. package/src/components/modules/rental/rent/Rent.js +0 -50
  475. package/src/components/modules/rental/rent/RentAccept.vue +0 -52
  476. package/src/components/modules/rental/rent/RentArchive.vue +0 -40
  477. package/src/components/modules/rental/rent/RentCreateUpdate.vue +0 -640
  478. package/src/components/modules/rental/rent/RentProgress.vue +0 -47
  479. package/src/components/modules/rental/rent/RentReject.vue +0 -77
  480. package/src/components/modules/rental/rent/RentTotalizationRent.vue +0 -161
  481. package/src/components/modules/rental/shared/CollaboratorWithUser.vue +0 -84
  482. package/src/components/modules/rental/shared/CustomerWithCreate.vue +0 -79
  483. package/src/components/modules/rental/shared/DropdownOptionsRent.vue +0 -360
  484. package/src/components/modules/rental/shared/import-product-rent/ImportProductByRent.vue +0 -124
  485. package/src/components/modules/rental/shared/import-product-rent/ItemsImportList.vue +0 -198
  486. package/src/components/modules/rental/shared/import-product-rent/ItemsImportList_old.vue +0 -197
  487. package/src/components/modules/rental/team/Team.js +0 -31
  488. package/src/components/modules/rental/team/TeamCreateUpdate.vue +0 -149
  489. package/src/components/modules/rental/team/TeamList.vue +0 -174
  490. package/src/components/modules/rental/type-rent/TypeRent.js +0 -10
  491. package/src/components/modules/rental/type-rent/TypeRentCreateUpdate.vue +0 -111
  492. package/src/components/modules/rfid/linker-rfid/ProductRfidLinker.vue +0 -629
  493. package/src/components/modules/rfid/linker-rfid/ProductRfidLinkerList.vue +0 -399
  494. package/src/components/modules/rfid/linker-rfid/SuccessMessage.vue +0 -74
  495. package/src/components/modules/rfid/receive/ReceiveTags.vue +0 -472
  496. package/src/components/modules/shared/ParametersInfo.vue +0 -176
  497. package/src/components/modules/shared/address/Address.js +0 -32
  498. package/src/components/modules/shared/address/AddressCreateUpdate.vue +0 -134
  499. package/src/components/modules/shared/address/AddressList.vue +0 -101
  500. package/src/components/modules/shared/checklist/ChecklistCreateUpdateList.vue +0 -210
  501. package/src/components/modules/shared/contact/Contact.js +0 -20
  502. package/src/components/modules/shared/contact/ContactCreateUpdate.vue +0 -135
  503. package/src/components/modules/shared/contact/ContactList.vue +0 -100
  504. package/src/components/modules/shared/customer-supplier/CustomerSupplier.js +0 -53
  505. package/src/components/modules/shared/customer-supplier/CustomerSupplierCreate.vue +0 -164
  506. package/src/components/modules/shared/customer-supplier/CustomerSupplierCreateUpdate.vue +0 -350
  507. package/src/components/modules/shared/document-version/DocumentVersionList.vue +0 -112
  508. package/src/components/modules/shared/google-calendar/ErrorsGoogle.vue +0 -40
  509. package/src/components/modules/shared/google-calendar/GoogleCalendar.vue +0 -294
  510. package/src/components/modules/shared/google-calendar/NotificationSetting.vue +0 -141
  511. package/src/components/modules/shared/job/Job.js +0 -33
  512. package/src/components/modules/shared/job/JobCreateUpdate.vue +0 -408
  513. package/src/components/modules/shared/note/NoteListCreateEdit.vue +0 -308
  514. package/src/components/modules/shared/parameters/locacaoParameters.js +0 -56
  515. package/src/components/modules/shared/parameters/taxationParameters.js +0 -49
  516. package/src/components/modules/shared/payment-items/Payment.js +0 -18
  517. package/src/components/modules/shared/payment-items/PaymentCreate.vue +0 -127
  518. package/src/components/modules/shared/payment-items/PaymentUpdate.vue +0 -69
  519. package/src/components/modules/shared/payment-items/PaymentsList.vue +0 -170
  520. package/src/components/modules/shared/payment-items/RepeatPayment.vue +0 -108
  521. package/src/components/modules/shared/tag/Tag.js +0 -13
  522. package/src/components/modules/shared/tag/TagCreateUpdate.vue +0 -104
  523. package/src/components/modules/shared/tag/Tags.vue +0 -369
  524. package/src/components/modules/signature/send-signature/SendSingleSignature.vue +0 -57
  525. package/src/components/modules/signature/signature-config/SignatureConfig.vue +0 -118
  526. package/src/components/modules/signature/signature-file/SignatureFileList.vue +0 -125
  527. package/src/components/modules/signature/signer/SignerList.vue +0 -150
  528. package/src/components/modules/signature/signer/SignerListForMessaging.vue +0 -116
  529. package/src/components/modules/stock/accessory/Accessory.js +0 -16
  530. package/src/components/modules/stock/accessory/AccessoryList.vue +0 -134
  531. package/src/components/modules/stock/accessory/AccessoryUpdate.vue +0 -155
  532. package/src/components/modules/stock/availability-product/AvailabilityProduct.vue +0 -196
  533. package/src/components/modules/stock/category-product/CategoryProduct.js +0 -12
  534. package/src/components/modules/stock/category-product/CategoryProductCreateUpdate.vue +0 -102
  535. package/src/components/modules/stock/history-moviment/HistoryMoviment.vue +0 -92
  536. package/src/components/modules/stock/history-patrimony/HistoryPatrimony.vue +0 -85
  537. package/src/components/modules/stock/items-moviment/PatrimonyMoviment.vue +0 -134
  538. package/src/components/modules/stock/manufacturer/Manufacturer.js +0 -10
  539. package/src/components/modules/stock/manufacturer/ManufacturerCreateUpdate.vue +0 -111
  540. package/src/components/modules/stock/moviment/AddOrRemoveMaintenance.vue +0 -294
  541. package/src/components/modules/stock/moviment/ItemProductRent.vue +0 -114
  542. package/src/components/modules/stock/moviment/ItemProductSelected.vue +0 -78
  543. package/src/components/modules/stock/moviment/ItemsRentForRecalculatePrice.vue +0 -113
  544. package/src/components/modules/stock/moviment/PrintMoviment.vue +0 -70
  545. package/src/components/modules/stock/moviment/ProductAdd.vue +0 -224
  546. package/src/components/modules/stock/moviment/ProductRent.vue +0 -248
  547. package/src/components/modules/stock/moviment/ProductSelected.vue +0 -204
  548. package/src/components/modules/stock/moviment/RentAndSelected.vue +0 -61
  549. package/src/components/modules/stock/moviment/ReplacementPatrimony.vue +0 -273
  550. package/src/components/modules/stock/moviment/SuccessMoviment.vue +0 -100
  551. package/src/components/modules/stock/moviment/TotalizationItemsMoviment.vue +0 -86
  552. package/src/components/modules/stock/moviment/Warning.vue +0 -231
  553. package/src/components/modules/stock/moviment/output/CheckOutput.vue +0 -369
  554. package/src/components/modules/stock/moviment/output/GenerateOutput.vue +0 -149
  555. package/src/components/modules/stock/moviment/renewed/CheckRenewed.vue +0 -405
  556. package/src/components/modules/stock/moviment/renewed/GenerateRenewed.vue +0 -194
  557. package/src/components/modules/stock/moviment/return/CheckReturn.vue +0 -544
  558. package/src/components/modules/stock/moviment/return/GenerateReturn.vue +0 -127
  559. package/src/components/modules/stock/patrimony/Patrimony.js +0 -22
  560. package/src/components/modules/stock/patrimony/PatrimonyCreateUpdate.vue +0 -230
  561. package/src/components/modules/stock/patrimony/PatrimonyList.vue +0 -364
  562. package/src/components/modules/stock/price-table/PriceTable.js +0 -19
  563. package/src/components/modules/stock/price-table/PriceTableCreateUpdate.vue +0 -210
  564. package/src/components/modules/stock/price-table/PriceTableList.vue +0 -92
  565. package/src/components/modules/stock/product/Product.js +0 -56
  566. package/src/components/modules/stock/product/ProductCreateUpdate.vue +0 -360
  567. package/src/components/modules/stock/search-product/ProductItem.vue +0 -398
  568. package/src/components/modules/stock/search-product/SearchByBarcode.vue +0 -163
  569. package/src/components/modules/stock/search-product/SearchProduct.vue +0 -268
  570. package/src/components/modules/stock/search-product/SearchProduct_old.vue +0 -440
  571. package/src/components/modules/stock/shared/TimeLineAvailability.vue +0 -239
  572. package/src/components/modules/stock/type-product/TypeProduct.js +0 -12
  573. package/src/components/modules/stock/type-product/TypeProductCreateUpdate.vue +0 -108
  574. package/src/components/modules/stock/unit-of-measurement/UnitOfMeasurement.js +0 -12
  575. package/src/components/modules/stock/unit-of-measurement/UnitOfMeasurementCreateUpdate.vue +0 -124
  576. package/src/components/modules/supplier/items-supplier-order/ItemsSupplierOrder.js +0 -22
  577. package/src/components/modules/supplier/items-supplier-order/ItemsSupplierOrderCreate.vue +0 -78
  578. package/src/components/modules/supplier/items-supplier-order/ItemsSupplierOrderFixedBar.vue +0 -112
  579. package/src/components/modules/supplier/items-supplier-order/ItemsSupplierOrderList.vue +0 -251
  580. package/src/components/modules/supplier/items-supplier-order/ItemsSupplierOrderUpdate.vue +0 -124
  581. package/src/components/modules/supplier/payment-supplier-order/PaymentSupplierOrder.js +0 -17
  582. package/src/components/modules/supplier/payment-supplier-order/PaymentSupplierOrderCreateUpdate.vue +0 -128
  583. package/src/components/modules/supplier/payment-supplier-order/PaymentSupplierOrderList.vue +0 -199
  584. package/src/components/modules/supplier/shared/SupplierWithCreate.vue +0 -80
  585. package/src/components/modules/supplier/supplier-order/DropdownOptionsSupplierOrder.vue +0 -190
  586. package/src/components/modules/supplier/supplier-order/SupplierOrder.js +0 -51
  587. package/src/components/modules/supplier/supplier-order/SupplierOrderAccept.vue +0 -39
  588. package/src/components/modules/supplier/supplier-order/SupplierOrderArchive.vue +0 -40
  589. package/src/components/modules/supplier/supplier-order/SupplierOrderCreateUpdate.vue +0 -301
  590. package/src/components/modules/supplier/supplier-order/SupplierOrderProgress.vue +0 -52
  591. package/src/components/modules/supplier/supplier-order/SupplierOrderReject.vue +0 -51
  592. package/src/components/modules/tax-document/certificate/Certificate.vue +0 -193
  593. package/src/components/modules/tax-document/cfop/Cfop.js +0 -12
  594. package/src/components/modules/tax-document/cfop/CfopCreateUpdate.vue +0 -96
  595. package/src/components/modules/tax-document/company/CompanyTaxation.vue +0 -270
  596. package/src/components/modules/tax-document/company/ConfigCompany.vue +0 -359
  597. package/src/components/modules/tax-document/company/Imposto.vue +0 -198
  598. package/src/components/modules/tax-document/company/Logo.vue +0 -54
  599. package/src/components/modules/tax-document/items-nfe/ItemsNfe.js +0 -19
  600. package/src/components/modules/tax-document/items-nfe/ItemsNfeCreate.vue +0 -79
  601. package/src/components/modules/tax-document/items-nfe/ItemsNfeList.vue +0 -227
  602. package/src/components/modules/tax-document/items-nfe/ItemsNfeUpdate.vue +0 -123
  603. package/src/components/modules/tax-document/json/JsonInterpreter.vue +0 -366
  604. package/src/components/modules/tax-document/nature-operation/NatureOperation.js +0 -10
  605. package/src/components/modules/tax-document/nature-operation/NatureOperationCreateUpdate.vue +0 -92
  606. package/src/components/modules/tax-document/nfe/Nfe.js +0 -30
  607. package/src/components/modules/tax-document/nfe/NfeCreateUpdate.vue +0 -237
  608. package/src/components/modules/tax-document/nfe/NfeTotalization.vue +0 -49
  609. package/src/components/modules/tax-document/nfse/ConfigNfse.vue +0 -233
  610. package/src/components/modules/tax-document/nfse/LocalEvento.vue +0 -135
  611. package/src/components/modules/tax-document/nfse/Nfse.js +0 -150
  612. package/src/components/modules/tax-document/nfse/NfseCreateUpdate.vue +0 -312
  613. package/src/components/modules/tax-document/nfse/NfseCreateUpdate_Plug.vue +0 -221
  614. package/src/components/modules/tax-document/nfse/Tributacao.vue +0 -20
  615. package/src/components/modules/tax-document/nfse/TributacaoMunicipal.vue +0 -164
  616. package/src/components/modules/tax-document/nfse/TributacaoNacional.vue +0 -86
  617. package/src/components/modules/tax-document/nfse/Tributacao_Plug.vue +0 -185
  618. package/src/components/modules/tax-document/nfse-nacional/Dados.vue +0 -205
  619. package/src/components/modules/tax-document/nfse-nacional/Imposto.vue +0 -154
  620. package/src/components/modules/tax-document/nfse-nacional/NfseNacional.js +0 -211
  621. package/src/components/modules/tax-document/nfse-nacional/NfseNacionalCreateUpdate.vue +0 -413
  622. package/src/components/modules/tax-document/nfse-nacional/RegimeTributario.vue +0 -140
  623. package/src/components/modules/tax-document/nfse-nacional/Transparencia.vue +0 -98
  624. package/src/components/modules/tax-document/nfse-prefeitura/Dados.vue +0 -212
  625. package/src/components/modules/tax-document/nfse-prefeitura/Imposto.vue +0 -212
  626. package/src/components/modules/tax-document/nfse-prefeitura/NfsePrefeitura.js +0 -187
  627. package/src/components/modules/tax-document/nfse-prefeitura/NfsePrefeituraCreateUpdate.vue +0 -232
  628. package/src/components/modules/tax-document/nfse-prefeitura/RegimeTributario.vue +0 -244
  629. package/src/components/modules/tax-document/nfse-prefeitura/Transparencia.vue +0 -85
  630. package/src/components/modules/tax-document/nfse-shared/NfseDropdownOptions.vue +0 -448
  631. package/src/components/modules/tax-document/nfse-shared/NfseEmProcessamento.vue +0 -50
  632. package/src/components/modules/tax-document/nfse-shared/NfseLocalEvento.vue +0 -184
  633. package/src/components/modules/tax-document/nfse-shared/NfseMensagemErro.vue +0 -52
  634. package/src/components/modules/tax-document/nfse-shared/NfseStatus.js +0 -27
  635. package/src/components/modules/tax-document/notification/InputTagEmail.vue +0 -89
  636. package/src/components/modules/tax-document/notification/Notificacao.vue +0 -121
  637. package/src/components/modules/tax-document/shared/DropdownOptionsNfs.vue +0 -271
  638. package/src/components/modules/tax-document/shared/Helpers.js +0 -1283
  639. package/src/components/modules/tax-document/shared/OpcoesFiscaisGoverno.vue +0 -236
  640. package/src/components/modules/tax-document/shared/OpcoesTributarias.js +0 -117
  641. package/src/components/modules/tax-document/shared/classificacaoTributaria.js +0 -288
  642. package/src/components/modules/tax-document/shared/cnae.js +0 -675
  643. package/src/components/modules/tax-document/shared/codigoLC116.js +0 -816
  644. package/src/components/modules/tax-document/shared/codigoTributacaoNacional.js +0 -1344
  645. package/src/components/modules/tax-document/shared/tributacaoIBSCBS.js +0 -76
  646. package/src/components/modules/tax-document/taxation/Taxation.js +0 -23
  647. package/src/components/modules/tax-document/taxation/TaxationCreateUpdate.vue +0 -306
  648. package/src/components/modules/tax-document/taxation/TaxationCreateUpdate_Plug.vue +0 -202
  649. package/src/components/modules/tax-document/wizard/StepByStep.vue +0 -1306
  650. package/src/config/tips.js +0 -9
  651. package/src/store/modules/generateMoviment.js +0 -102
  652. package/src/store/modules/paymentShared.js +0 -39
  653. package/src/store/modules/pdv.js +0 -107
  654. package/src/store/modules/rfid.js +0 -49
  655. package/src/views/modules/adm/Authorization.vue +0 -45
  656. package/src/views/modules/adm/BilletFranchise.vue +0 -38
  657. package/src/views/modules/adm/Company.vue +0 -34
  658. package/src/views/modules/adm/ConfirmMailMobile.vue +0 -85
  659. package/src/views/modules/adm/DocumentCreateUpdate.vue +0 -88
  660. package/src/views/modules/adm/DocumentList.vue +0 -112
  661. package/src/views/modules/adm/DocumentPreviewPublic.vue +0 -124
  662. package/src/views/modules/adm/DocumentPublic.vue +0 -73
  663. package/src/views/modules/adm/Login.vue +0 -172
  664. package/src/views/modules/adm/LoginRedirect.vue +0 -74
  665. package/src/views/modules/adm/LoginTemp.vue +0 -63
  666. package/src/views/modules/adm/NfeFranchise.vue +0 -38
  667. package/src/views/modules/adm/NfseFranchise.vue +0 -38
  668. package/src/views/modules/adm/Notification.vue +0 -43
  669. package/src/views/modules/adm/Parameter.vue +0 -104
  670. package/src/views/modules/adm/Plan.vue +0 -77
  671. package/src/views/modules/adm/Register.vue +0 -70
  672. package/src/views/modules/adm/ReportAdm.vue +0 -35
  673. package/src/views/modules/adm/ReportAudit.vue +0 -86
  674. package/src/views/modules/adm/ResetPassword.vue +0 -73
  675. package/src/views/modules/adm/SignatureFranchise.vue +0 -38
  676. package/src/views/modules/adm/Store.vue +0 -47
  677. package/src/views/modules/adm/UserCreateUpdate.vue +0 -66
  678. package/src/views/modules/adm/UserList.vue +0 -181
  679. package/src/views/modules/adm/model/ParameterExemple.js +0 -506
  680. package/src/views/modules/adm/model/ParameterLegend.js +0 -1195
  681. package/src/views/modules/billing/BilletConfigList.vue +0 -90
  682. package/src/views/modules/billing/BilletList.vue +0 -335
  683. package/src/views/modules/billing/CancelInvoice.vue +0 -97
  684. package/src/views/modules/billing/GenerateBilling.vue +0 -41
  685. package/src/views/modules/billing/InvoiceCreateUpdate.vue +0 -45
  686. package/src/views/modules/billing/InvoiceList.vue +0 -209
  687. package/src/views/modules/billing/ReportBillet.vue +0 -35
  688. package/src/views/modules/billing/ReportBilling.vue +0 -35
  689. package/src/views/modules/billing/ReportInvoice.vue +0 -129
  690. package/src/views/modules/billing/ReturnShipment.vue +0 -250
  691. package/src/views/modules/billing/Shipment.vue +0 -141
  692. package/src/views/modules/billing/ShipmentReturnList.vue +0 -54
  693. package/src/views/modules/billing/ToProfitList.vue +0 -232
  694. package/src/views/modules/billing/_ReportBillet.vue +0 -124
  695. package/src/views/modules/calendar/Calendar.vue +0 -394
  696. package/src/views/modules/cashier/CashierList.vue +0 -192
  697. package/src/views/modules/course/Course.vue +0 -31
  698. package/src/views/modules/crm/CategoryCustomer.vue +0 -73
  699. package/src/views/modules/crm/ConfigCrm.vue +0 -65
  700. package/src/views/modules/crm/CustomerCreateUpdate.vue +0 -58
  701. package/src/views/modules/crm/CustomerList.vue +0 -138
  702. package/src/views/modules/crm/ImportCustomer.vue +0 -149
  703. package/src/views/modules/crm/OriginCustomer.vue +0 -74
  704. package/src/views/modules/crm/ReportCrm.vue +0 -35
  705. package/src/views/modules/crm/ReportCustomer.vue +0 -331
  706. package/src/views/modules/dashboard/Dashboard.vue +0 -449
  707. package/src/views/modules/dashboard/DashboardProfile.js +0 -16
  708. package/src/views/modules/dashboard/_Dashboard.vue +0 -269
  709. package/src/views/modules/faturamento/AFaturar.vue +0 -189
  710. package/src/views/modules/faturamento/HistoricoAFaturar.vue +0 -167
  711. package/src/views/modules/faturamento/ListaConfigAFaturar.vue +0 -47
  712. package/src/views/modules/faturamento/Semaforo.vue +0 -135
  713. package/src/views/modules/finance/Bank.vue +0 -85
  714. package/src/views/modules/finance/BankAccountCreateUpdate.vue +0 -58
  715. package/src/views/modules/finance/BankAccountList.vue +0 -127
  716. package/src/views/modules/finance/BankReconciliation.vue +0 -50
  717. package/src/views/modules/finance/ConfigFinance.vue +0 -72
  718. package/src/views/modules/finance/CostCenter.vue +0 -20
  719. package/src/views/modules/finance/DrePayableReceivable.vue +0 -248
  720. package/src/views/modules/finance/NewPayableReceivableList.vue +0 -239
  721. package/src/views/modules/finance/PayableReceivableCreateUpdate.vue +0 -58
  722. package/src/views/modules/finance/PayableReceivableList.vue +0 -490
  723. package/src/views/modules/finance/ReportFinance.vue +0 -46
  724. package/src/views/modules/finance/ReportPayableReceivable.vue +0 -312
  725. package/src/views/modules/finance/TransferAccountList.vue +0 -154
  726. package/src/views/modules/finance/TypePayment.vue +0 -80
  727. package/src/views/modules/financeiro/CentroCusto.vue +0 -112
  728. package/src/views/modules/financeiro/PlanoConta.vue +0 -111
  729. package/src/views/modules/financeiro/TipoPagamento.vue +0 -111
  730. package/src/views/modules/human-resources/CollaboratorCreateUpdate.vue +0 -68
  731. package/src/views/modules/human-resources/CollaboratorList.vue +0 -110
  732. package/src/views/modules/locacao/InserirLocacaoPadrao.vue +0 -54
  733. package/src/views/modules/locacao/InserirLocacaoPdv.vue +0 -104
  734. package/src/views/modules/locacao/LocacaoPdvFinalizada.vue +0 -75
  735. package/src/views/modules/maintenance/OrderServiceCreateUpdate.vue +0 -48
  736. package/src/views/modules/maintenance/OrderServiceList.vue +0 -190
  737. package/src/views/modules/maintenance/OsPanel.vue +0 -34
  738. package/src/views/modules/maintenance/ReportMaintenance.vue +0 -38
  739. package/src/views/modules/maintenance/ReportOrderService.vue +0 -124
  740. package/src/views/modules/maintenance/ReportProductOrderService.vue +0 -207
  741. package/src/views/modules/manutencao/InserirEditarOrdemServico.vue +0 -94
  742. package/src/views/modules/manutencao/Material.vue +0 -123
  743. package/src/views/modules/manutencao/OrdemServico.vue +0 -145
  744. package/src/views/modules/manutencao/TipoManutencao.vue +0 -94
  745. package/src/views/modules/operational/MovementBulkList.vue +0 -143
  746. package/src/views/modules/operational/MovementBulkUpdate.vue +0 -41
  747. package/src/views/modules/operational/OperationlSearch.vue +0 -37
  748. package/src/views/modules/operational/OsPanel.vue +0 -33
  749. package/src/views/modules/operational/RentOperationalCreateUpdate.vue +0 -38
  750. package/src/views/modules/operational/RentOperationalList.vue +0 -198
  751. package/src/views/modules/operational/ReplacementPatrimony.vue +0 -42
  752. package/src/views/modules/operational/ReportDeliveryDevolution.vue +0 -210
  753. package/src/views/modules/operational/ReportOperational.vue +0 -35
  754. package/src/views/modules/operational/ReservationPanel.vue +0 -34
  755. package/src/views/modules/pdv/PdvRentCreateUpdate.vue +0 -55
  756. package/src/views/modules/pdv/PdvRentList.vue +0 -103
  757. package/src/views/modules/pdv/PdvRentSelectOption.vue +0 -89
  758. package/src/views/modules/pdv/PdvSearch.vue +0 -41
  759. package/src/views/modules/pdv/SuccessPdvRent.vue +0 -59
  760. package/src/views/modules/planner/ConfigPlanner.vue +0 -47
  761. package/src/views/modules/planner/FunnelList.vue +0 -60
  762. package/src/views/modules/planner/Kanban.vue +0 -94
  763. package/src/views/modules/planner/Tag.vue +0 -79
  764. package/src/views/modules/rental/ConfigRental.vue +0 -67
  765. package/src/views/modules/rental/GroupRent.vue +0 -72
  766. package/src/views/modules/rental/KitRent.vue +0 -78
  767. package/src/views/modules/rental/KitRentCreateUpdate.vue +0 -58
  768. package/src/views/modules/rental/RentCreateUpdate.vue +0 -46
  769. package/src/views/modules/rental/RentSelectOption.vue +0 -53
  770. package/src/views/modules/rental/RentalList.vue +0 -394
  771. package/src/views/modules/rental/ReportRentByCustomer.vue +0 -216
  772. package/src/views/modules/rental/ReportRentByPayment.vue +0 -195
  773. package/src/views/modules/rental/ReportRentByPeriodRent.vue +0 -208
  774. package/src/views/modules/rental/ReportRentByProduct.vue +0 -240
  775. package/src/views/modules/rental/ReportRentPerformance.vue +0 -231
  776. package/src/views/modules/rental/ReportRental.vue +0 -46
  777. package/src/views/modules/rental/TypeRent.vue +0 -78
  778. package/src/views/modules/rental/_RentalList.vue +0 -285
  779. package/src/views/modules/rental/___ReportRentPerformance.vue +0 -345
  780. package/src/views/modules/rfid/LinkProductTags.vue +0 -39
  781. package/src/views/modules/shared/IntegrationReturn.vue +0 -274
  782. package/src/views/modules/shared/JobList.vue +0 -227
  783. package/src/views/modules/signature/ConfigSignature.vue +0 -43
  784. package/src/views/modules/signature/SignatureList.vue +0 -208
  785. package/src/views/modules/stock/CategoryProduct.vue +0 -78
  786. package/src/views/modules/stock/ConfigStock.vue +0 -77
  787. package/src/views/modules/stock/GenerateOutput.vue +0 -35
  788. package/src/views/modules/stock/GenerateRenewed.vue +0 -36
  789. package/src/views/modules/stock/GenerateReturn.vue +0 -35
  790. package/src/views/modules/stock/ImportProduct.vue +0 -135
  791. package/src/views/modules/stock/Manufacturer.vue +0 -73
  792. package/src/views/modules/stock/ProductCreateUpdate.vue +0 -58
  793. package/src/views/modules/stock/ProductList.vue +0 -185
  794. package/src/views/modules/stock/ProductSelectOption.vue +0 -80
  795. package/src/views/modules/stock/ReportHistoryPatrimony.vue +0 -126
  796. package/src/views/modules/stock/ReportPatrimony.vue +0 -184
  797. package/src/views/modules/stock/ReportProduct.vue +0 -358
  798. package/src/views/modules/stock/ReportProductByCustomer.vue +0 -674
  799. package/src/views/modules/stock/ReportStock.vue +0 -49
  800. package/src/views/modules/stock/TypeProduct.vue +0 -78
  801. package/src/views/modules/stock/UnitOfMeasurement.vue +0 -79
  802. package/src/views/modules/supplier/SupplierCreateUpdate.vue +0 -58
  803. package/src/views/modules/supplier/SupplierList.vue +0 -139
  804. package/src/views/modules/supplier/SupplierOrderCreateUpdate.vue +0 -46
  805. package/src/views/modules/supplier/SupplierOrderList.vue +0 -251
  806. package/src/views/modules/tax-document/CancelNfse.vue +0 -97
  807. package/src/views/modules/tax-document/Cfop.vue +0 -72
  808. package/src/views/modules/tax-document/ConfigTaxDocument.vue +0 -43
  809. package/src/views/modules/tax-document/NatureOperation.vue +0 -72
  810. package/src/views/modules/tax-document/NfeCreateUpdate.vue +0 -37
  811. package/src/views/modules/tax-document/NfeList.vue +0 -173
  812. package/src/views/modules/tax-document/NfeReceivedList.vue +0 -236
  813. package/src/views/modules/tax-document/NfseList.vue +0 -44
  814. package/src/views/modules/tax-document/NfseNacionalCreateUpdate.vue +0 -35
  815. package/src/views/modules/tax-document/NfseNacionalList.vue +0 -201
  816. package/src/views/modules/tax-document/NfsePrefeituraCreateUpdate.vue +0 -35
  817. package/src/views/modules/tax-document/NfsePrefeituraList.vue +0 -201
  818. package/src/views/modules/tax-document/StepByStep.vue +0 -45
  819. package/src/views/modules/tax-document/Taxation.vue +0 -93
  820. 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>