@nixweb/nixloc-ui 0.0.273 → 0.0.274
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.
- package/package.json +1 -1
- package/src/App.vue +13 -217
- package/src/component/forms/Button.vue +166 -0
- package/src/component/forms/ButtonFilter.vue +75 -0
- package/src/component/forms/ButtonGroup.vue +67 -0
- package/src/component/forms/ButtonSub.vue +98 -0
- package/src/component/forms/CheckboxGroup.vue +69 -0
- package/src/component/forms/CheckboxServer.vue +192 -0
- package/src/component/forms/CheckboxSimple.vue +59 -0
- package/src/component/forms/Color.vue +38 -0
- package/src/component/forms/DateTime.vue +170 -0
- package/src/component/forms/Dropdown.vue +236 -0
- package/src/component/forms/EditorHtml.vue +132 -0
- package/src/component/forms/FileUpload.vue +170 -0
- package/src/component/forms/ImageUpload.vue +214 -0
- package/src/component/forms/IncrementDecrement.vue +141 -0
- package/src/component/forms/InputAddressGoogle.vue +171 -0
- package/src/component/forms/InputCallToAction.vue +135 -0
- package/src/component/forms/InputDecimal.vue +153 -0
- package/src/component/forms/InputDecimalDiscount.vue +78 -0
- package/src/component/forms/InputNumber.vue +160 -0
- package/src/component/forms/InputPassword.vue +155 -0
- package/src/component/forms/InputTag.vue +125 -0
- package/src/component/forms/InputText.vue +174 -0
- package/src/component/forms/InputTextEdit.vue +69 -0
- package/src/component/forms/InputWhatsApp.vue +48 -0
- package/src/component/forms/Modal.vue +57 -0
- package/src/component/forms/RadioGroup.vue +91 -0
- package/src/component/forms/Select.vue +326 -0
- package/src/component/forms/SelectStatic.vue +198 -0
- package/src/component/forms/SideBar.vue +110 -0
- package/src/component/forms/Slider.vue +18 -0
- package/src/component/forms/TextArea.vue +138 -0
- package/src/component/forms/Toggle.vue +72 -0
- package/src/component/layout/Account.vue +131 -0
- package/src/component/layout/Alert.vue +88 -0
- package/src/component/layout/Badge.vue +111 -0
- package/src/component/layout/BarFloating.vue +68 -0
- package/src/component/layout/FixedBar.vue +113 -0
- package/src/component/layout/Gantt.vue +130 -0
- package/src/component/layout/Header.vue +56 -0
- package/src/component/layout/HideShow.vue +62 -0
- package/src/component/layout/IconMolded.vue +59 -0
- package/src/component/layout/LoadingFullPage.vue +27 -0
- package/src/component/layout/Menu.vue +267 -0
- package/src/component/layout/Molded.vue +29 -0
- package/src/component/layout/Panel.vue +169 -0
- package/src/component/layout/Popover.vue +126 -0
- package/src/component/layout/ScrollBar.vue +57 -0
- package/src/component/layout/Tab.vue +135 -0
- package/src/component/layout/Tag.vue +90 -0
- package/src/component/layout/Wizard.vue +211 -0
- package/src/component/rental/DisplayCalculatePeriod.vue +49 -0
- package/src/component/rental/DisplayPeriodRent.vue +55 -0
- package/src/component/rental/DisplayTotalization.vue +86 -0
- package/src/component/shared/CodeEditor.vue +80 -0
- package/src/component/shared/Collapse.vue +131 -0
- package/src/component/shared/Confirmation.vue +74 -0
- package/src/component/shared/DocumentEditor.vue +150 -0
- package/src/component/shared/DocumentPreview.vue +61 -0
- package/src/component/shared/DocumentPublic.vue +31 -0
- package/src/component/shared/ExportExcel.vue +60 -0
- package/src/component/shared/ExportPDF.vue +116 -0
- package/src/component/shared/FullCalendar.vue +174 -0
- package/src/component/shared/HeaderReport.vue +47 -0
- package/src/component/shared/HorizontalFilter.vue +76 -0
- package/src/component/shared/ListNotifications.vue +70 -0
- package/src/component/shared/Loading.vue +107 -0
- package/src/component/shared/LoadingMoreButton.vue +23 -0
- package/src/component/shared/Messages.vue +83 -0
- package/src/component/shared/PDFViewer.vue +24 -0
- package/src/component/shared/Pagination.vue +106 -0
- package/src/component/shared/ParameterLegend.vue +169 -0
- package/src/component/shared/ProgressBar.vue +22 -0
- package/src/component/shared/QueryButton.vue +66 -0
- package/src/component/shared/Report.vue +200 -0
- package/src/component/shared/SaveCancel.vue +92 -0
- package/src/component/shared/Search.vue +174 -0
- package/src/component/shared/SelectOption.vue +162 -0
- package/src/component/shared/Table.vue +155 -0
- package/src/component/shared/TableButton.vue +36 -0
- package/src/component/shared/TableDraggable.vue +117 -0
- package/src/component/shared/TableImport.vue +98 -0
- package/src/component/shared/TableItem.vue +174 -0
- package/src/component/shared/TableTotalRecords.vue +44 -0
- package/src/component/shared/TableTotalization.vue +47 -0
- package/src/component/shared/TimeLine.vue +47 -0
- package/src/component/shared/Timer.vue +78 -0
- package/src/component/shared/Tip.vue +42 -0
- package/src/component/shared/Toast.vue +69 -0
- package/src/component/shared/TotalizationReport.vue +86 -0
- package/src/component/shared/VerticalFilter.vue +97 -0
- package/src/component/shared/automation/ActivitiesList.vue +44 -0
- package/src/component/shared/automation/AddRule.vue +61 -0
- package/src/component/shared/automation/AutomationBuilder.vue +27 -0
- package/src/component/shared/automation/DynamicComponentList.vue +86 -0
- package/src/component/shared/automation/SelectRule.vue +98 -0
- package/src/component/shared/automation/components/BillingByRent.vue +98 -0
- package/src/component/shared/automation/components/SendEmail.vue +94 -0
- package/src/component/shared/file-manager/FileManager.vue +390 -0
- package/src/component/shared/filter-builder/FilterBuilder.vue +198 -0
- package/src/component/shared/filter-builder/FilterQuery.vue +92 -0
- package/src/component/shared/query-builder/AddRule.vue +203 -0
- package/src/component/shared/query-builder/ConvertToOdata.js +86 -0
- package/src/component/shared/query-builder/DynamicComponent.vue +161 -0
- package/src/component/shared/query-builder/DynamicComponentList.vue +70 -0
- package/src/component/shared/query-builder/Fields.vue +93 -0
- package/src/component/shared/query-builder/QueryBuilder.vue +69 -0
- package/src/component/shared/query-builder/Rules.vue +68 -0
- package/src/component/shared/query-builder/SelectRule.vue +97 -0
- package/src/component/shared/query-builder/Tags.vue +59 -0
- package/src/component/shared/query-builder/utilities.js +22 -0
- package/src/component/signature/Payment.vue +161 -0
- package/src/component/signature/Warning.vue +76 -0
- package/src/component/template/ListViewWithDataHandler.vue +424 -0
- package/src/component/template/ReportCreateUpdate.vue +124 -0
- package/src/component/template/ViewTemplateConfiguration.vue +64 -0
- package/src/component/template/ViewTemplateDocumentView.vue +213 -0
- package/src/component/template/ViewTemplateImportFile.vue +347 -0
- package/src/component/template/ViewTemplateReportList.vue +216 -0
- package/src/component/template/ViewTemplateReportPreview.vue +432 -0
- package/src/component/template/ViewTemplateSelectOption.vue +46 -0
- package/src/component/template/ViewTemplateWithSalveCancel.vue +32 -0
- package/src/component/template/ViewTemplateWithTable.vue +64 -0
- package/src/component/template/model/Report.js +6 -0
- package/src/component/training/Course.vue +344 -0
- package/src/component/training/CourseView.vue +190 -0
- package/src/component/value-objects/Address.js +11 -0
- package/src/component/value-objects/Address.vue +157 -0
- package/src/component/value-objects/Contact.js +7 -0
- package/src/component/value-objects/Contact.vue +106 -0
- package/src/component/value-objects/Person.js +10 -0
- package/src/component/value-objects/Person.vue +129 -0
- package/src/config/axios.js +9 -9
- package/src/config/dicas.js +14 -14
- package/src/config/router.js +13 -272
- package/src/config/token.js +14 -13
- package/src/main.js +23 -74
- package/src/store/modules/automation.js +31 -0
- package/src/store/modules/generic.js +764 -0
- package/src/store/modules/report.js +278 -0
- package/src/store/modules/user.js +67 -0
- package/src/store/modules/util.js +26 -0
- package/src/store/modules/validation.js +39 -0
- package/src/store/store.js +13 -22
- package/src/assets/logo.png +0 -0
- package/src/components/modules/adm/company/Company.js +0 -9
- package/src/components/modules/adm/company/Company.vue +0 -114
- package/src/components/modules/adm/document/Document.js +0 -41
- package/src/components/modules/adm/document/DocumentCreateUpdate.vue +0 -269
- package/src/components/modules/adm/document/DocumentPreview.vue +0 -123
- package/src/components/modules/adm/document/Link.vue +0 -118
- package/src/components/modules/adm/document/PrintDetail.vue +0 -123
- package/src/components/modules/adm/document/PrintPreview.vue +0 -123
- package/src/components/modules/adm/document/SelectOptionDocument.vue +0 -219
- package/src/components/modules/adm/document/SendMail.vue +0 -245
- package/src/components/modules/adm/document/SendSignature.vue +0 -289
- package/src/components/modules/adm/login/ConfirmMailMobile.vue +0 -101
- package/src/components/modules/adm/login/ForgotPassword.js +0 -8
- package/src/components/modules/adm/login/ForgotPassword.vue +0 -159
- package/src/components/modules/adm/login/Login.js +0 -7
- package/src/components/modules/adm/login/Login.vue +0 -150
- package/src/components/modules/adm/login/Menu.js +0 -868
- package/src/components/modules/adm/login/ResetPassword.vue +0 -136
- package/src/components/modules/adm/login/SendConfirmMailMobile.vue +0 -72
- package/src/components/modules/adm/login/SignalrUser.vue +0 -147
- package/src/components/modules/adm/parameter/ParameterBilling.js +0 -9
- package/src/components/modules/adm/parameter/ParameterBilling.vue +0 -91
- package/src/components/modules/adm/parameter/ParameterDangerZone.js +0 -12
- package/src/components/modules/adm/parameter/ParameterDangerZone.vue +0 -159
- package/src/components/modules/adm/parameter/ParameterRental.js +0 -39
- package/src/components/modules/adm/parameter/ParameterRental.vue +0 -213
- package/src/components/modules/adm/parameter/ParameterStock.js +0 -14
- package/src/components/modules/adm/parameter/ParameterStock.vue +0 -127
- package/src/components/modules/adm/parameter/ParameterSystem.js +0 -23
- package/src/components/modules/adm/parameter/ParameterSystem.vue +0 -92
- package/src/components/modules/adm/register/Register.js +0 -9
- package/src/components/modules/adm/register/Register.vue +0 -306
- package/src/components/modules/adm/store/Store.vue +0 -340
- package/src/components/modules/adm/store/Success.vue +0 -79
- package/src/components/modules/adm/store/Term.vue +0 -198
- package/src/components/modules/adm/user/Profile.vue +0 -131
- package/src/components/modules/adm/user/Rules.vue +0 -219
- package/src/components/modules/adm/user/User.js +0 -27
- package/src/components/modules/adm/user/UserCreateUpdate.vue +0 -184
- package/src/components/modules/adm/user/UserRule.vue +0 -82
- package/src/components/modules/automation/AutomationBuilder.vue +0 -54
- package/src/components/modules/billing/billet/Billet.vue +0 -133
- package/src/components/modules/billing/billet/CancelBillet.vue +0 -68
- package/src/components/modules/billing/billet/CheckBillet.vue +0 -122
- package/src/components/modules/billing/billet/CreateBillet.vue +0 -83
- package/src/components/modules/billing/billet/PDFBillet.vue +0 -116
- package/src/components/modules/billing/billet/UpdateBillet.vue +0 -78
- package/src/components/modules/billing/billet-config/BilletConfig.js +0 -12
- package/src/components/modules/billing/billet-config/BilletConfigCreateUpdate.vue +0 -91
- package/src/components/modules/billing/generate-billing/GenerateBilling.vue +0 -252
- package/src/components/modules/billing/generate-billing/GenerateInvoice.vue +0 -98
- package/src/components/modules/billing/generate-billing/GenerateTaxDocument.vue +0 -159
- package/src/components/modules/billing/generate-billing/InvoiceOrTaxDocument.vue +0 -61
- package/src/components/modules/billing/generate-billing/ItemsRentForInvoice.vue +0 -205
- package/src/components/modules/billing/generate-billing/SuccessBilling.vue +0 -124
- package/src/components/modules/billing/history-billet/HistoryBillet.vue +0 -85
- package/src/components/modules/billing/invoice/DropdownOptionsInvoice.vue +0 -218
- package/src/components/modules/billing/invoice/Invoice.js +0 -18
- package/src/components/modules/billing/invoice/InvoiceCreateUpdate.vue +0 -164
- package/src/components/modules/billing/invoice/InvoiceTotalization.vue +0 -62
- package/src/components/modules/billing/items-invoice/ItemsInvoice.js +0 -20
- package/src/components/modules/billing/items-invoice/ItemsInvoiceCreateUpdate.vue +0 -138
- package/src/components/modules/billing/items-invoice/ItemsInvoiceList.vue +0 -235
- package/src/components/modules/cashier/CashierMovementList.vue +0 -186
- package/src/components/modules/cashier/CloseCashier.js +0 -9
- package/src/components/modules/cashier/CloseCashier.vue +0 -112
- package/src/components/modules/cashier/OpenCashier.js +0 -9
- package/src/components/modules/cashier/OpenCashier.vue +0 -174
- package/src/components/modules/cashier/Totalization.vue +0 -114
- package/src/components/modules/crm/category-customer/CategoryCustomer.js +0 -10
- package/src/components/modules/crm/category-customer/CategoryCustomerCreateUpdate.vue +0 -92
- package/src/components/modules/crm/category-customer/OriginCustomer.js +0 -10
- package/src/components/modules/crm/category-customer/OriginCustomerCreateUpdate.vue +0 -92
- package/src/components/modules/dashboard/alert/Alert.vue +0 -115
- package/src/components/modules/dashboard/billing/PanelBillet.vue +0 -210
- package/src/components/modules/dashboard/billing/PanelInvoice.vue +0 -188
- package/src/components/modules/dashboard/config/ConfigDashboard.vue +0 -253
- package/src/components/modules/dashboard/favorite/Favorite.js +0 -126
- package/src/components/modules/dashboard/favorite/Favorite.vue +0 -117
- package/src/components/modules/dashboard/favorite/FavoriteCreateRemove.vue +0 -136
- package/src/components/modules/dashboard/favorite/_Favorite.vue +0 -265
- package/src/components/modules/dashboard/finance/BalanceBank.vue +0 -124
- package/src/components/modules/dashboard/finance/BalanceFinance.vue +0 -180
- package/src/components/modules/dashboard/finance/BillsToPay.vue +0 -137
- package/src/components/modules/dashboard/finance/BillsToReceive.vue +0 -141
- package/src/components/modules/dashboard/finance/PanelFinance.vue +0 -146
- package/src/components/modules/dashboard/finance/PaymentByStatus.vue +0 -121
- package/src/components/modules/dashboard/operational/DeliveryDevolution.vue +0 -163
- package/src/components/modules/dashboard/operational/PanelOperational.vue +0 -230
- package/src/components/modules/dashboard/rent/BalanceRent.vue +0 -156
- package/src/components/modules/dashboard/rent/PanelRent.vue +0 -72
- package/src/components/modules/dashboard/rent/RankingCollaborator.vue +0 -166
- package/src/components/modules/dashboard/rent/TotalRent.vue +0 -133
- package/src/components/modules/dashboard/rent/_BalanceRent.vue +0 -176
- package/src/components/modules/dashboard/rent/_RankingCollaborator.vue +0 -173
- package/src/components/modules/dashboard/rent/_TotalRent.vue +0 -154
- package/src/components/modules/dashboard/shared/SelectFilter.vue +0 -79
- package/src/components/modules/dashboard/signature/PanelSignature.vue +0 -144
- package/src/components/modules/dashboard/stock/TotalStock.vue +0 -127
- package/src/components/modules/dashboard/task/PanelTask.vue +0 -121
- package/src/components/modules/finance/bank/Bank.js +0 -12
- package/src/components/modules/finance/bank/BankCreateUpdate.vue +0 -101
- package/src/components/modules/finance/bank-account/BankAccountCreateUpdate.js +0 -34
- package/src/components/modules/finance/bank-account/BankAccountCreateUpdate.vue +0 -224
- package/src/components/modules/finance/bank-reconciliation/AddTransactionsList.vue +0 -137
- package/src/components/modules/finance/bank-reconciliation/BankReconciliation.js +0 -7
- package/src/components/modules/finance/bank-reconciliation/BankReconciliation.vue +0 -164
- package/src/components/modules/finance/bank-reconciliation/ImportPluggy.vue +0 -99
- package/src/components/modules/finance/bank-reconciliation/ItemFixedBar.vue +0 -39
- package/src/components/modules/finance/bank-reconciliation/ItemReconciliation.vue +0 -124
- package/src/components/modules/finance/bank-reconciliation/ReconciliationList.vue +0 -185
- package/src/components/modules/finance/bank-reconciliation/SuggestionList.vue +0 -281
- package/src/components/modules/finance/bank-reconciliation/TransactionsList.vue +0 -202
- package/src/components/modules/finance/chart-of-accounts/ChartOfAccounts.js +0 -12
- package/src/components/modules/finance/chart-of-accounts/ChartOfAccountsCreateUpdate.vue +0 -122
- package/src/components/modules/finance/cost-center/CostCenter.js +0 -12
- package/src/components/modules/finance/cost-center/CostCenterCreateUpdate.vue +0 -127
- package/src/components/modules/finance/cost-center/CostCenterList.vue +0 -414
- package/src/components/modules/finance/payable-receivable/PayableReceivable.js +0 -53
- package/src/components/modules/finance/payable-receivable/PayableReceivableCreateUpdate.vue +0 -333
- package/src/components/modules/finance/pluggy/PluggyConnect.vue +0 -91
- package/src/components/modules/finance/relationship-rent/RelationshipRentCreateUpdate.vue +0 -127
- package/src/components/modules/finance/relationship-rent/RelationshipRentList.vue +0 -166
- package/src/components/modules/finance/transfer-account/TransferAccount.js +0 -18
- package/src/components/modules/finance/transfer-account/TransferAccountCreateUpdate.vue +0 -130
- package/src/components/modules/finance/type-payment/TypePayment.js +0 -14
- package/src/components/modules/finance/type-payment/TypePaymentCreateUpdate.vue +0 -125
- package/src/components/modules/human-resources/collaborator/Collaborator.js +0 -38
- package/src/components/modules/human-resources/collaborator/CollaboratorCreate.vue +0 -127
- package/src/components/modules/human-resources/collaborator/CollaboratorCreateUpdate.vue +0 -190
- package/src/components/modules/human-resources/collaborator/ConsultantCreateUpdate.vue +0 -86
- package/src/components/modules/maintenance/items-order-service/ItemsOrderService.js +0 -32
- package/src/components/modules/maintenance/items-order-service/ItemsOrderServiceCreateUpdate.vue +0 -171
- package/src/components/modules/maintenance/items-order-service/ItemsOrderServiceItem.vue +0 -97
- package/src/components/modules/maintenance/items-order-service/ItemsOrderServiceList.vue +0 -94
- package/src/components/modules/maintenance/order-service/OrderService.js +0 -20
- package/src/components/modules/maintenance/order-service/OrderServiceCreateUpdate.vue +0 -124
- package/src/components/modules/notifications/Comunication.vue +0 -51
- package/src/components/modules/notifications/Emails.vue +0 -91
- package/src/components/modules/notifications/Messaging.vue +0 -33
- package/src/components/modules/operational/AddressRentList.vue +0 -124
- package/src/components/modules/operational/ButtonMovimentStock.vue +0 -97
- package/src/components/modules/operational/ItemsRentList.vue +0 -221
- package/src/components/modules/operational/OperationRent.vue +0 -131
- package/src/components/modules/operational/OsPanel.vue +0 -487
- package/src/components/modules/operational/ReservationPanel.vue +0 -224
- package/src/components/modules/operational/items-rent/ItemRentOperationalUpdate.vue +0 -131
- package/src/components/modules/operational/items-rent/ItemsRent.js +0 -28
- package/src/components/modules/operational/items-rent/ItemsRentOperationalCreate.vue +0 -122
- package/src/components/modules/operational/items-rent/ItemsRentOperationalList.vue +0 -479
- package/src/components/modules/operational/rent/DropdownOptionsRentOperational.vue +0 -172
- package/src/components/modules/operational/rent/RentOperational.js +0 -33
- package/src/components/modules/operational/rent/RentOperationalCreateUpdate.vue +0 -310
- package/src/components/modules/pdv/rent/AddressRentList.vue +0 -135
- package/src/components/modules/pdv/rent/FinalizeRent.vue +0 -147
- package/src/components/modules/pdv/rent/ItemsRentList.vue +0 -235
- package/src/components/modules/pdv/rent/ItemsRentUpdate.vue +0 -137
- package/src/components/modules/pdv/rent/PrintPdv.vue +0 -84
- package/src/components/modules/pdv/rent/Rent.js +0 -12
- package/src/components/modules/pdv/rent/RentCreate.vue +0 -470
- package/src/components/modules/pdv/rent/SearchByBarcode.vue +0 -92
- package/src/components/modules/pdv/rent/SearchByFilter.vue +0 -146
- package/src/components/modules/pdv/rent/SearchList.vue +0 -166
- package/src/components/modules/pdv/rent/SearchManual.vue +0 -125
- package/src/components/modules/pdv/rent/SuccessPdvRent.vue +0 -82
- package/src/components/modules/rental/Rental.drawio +0 -85
- package/src/components/modules/rental/address-rent/AddressRent.js +0 -13
- package/src/components/modules/rental/address-rent/AddressRentCreateUpdate.vue +0 -149
- package/src/components/modules/rental/address-rent/AddressRentList.vue +0 -63
- package/src/components/modules/rental/address-rent/ImportAddress.vue +0 -58
- package/src/components/modules/rental/billing/InvoiceList.vue +0 -232
- package/src/components/modules/rental/clone-rent/CloneRent.vue +0 -143
- package/src/components/modules/rental/group-rent/GroupRent.js +0 -10
- package/src/components/modules/rental/group-rent/GroupRentCreateUpdate.vue +0 -97
- package/src/components/modules/rental/items-kit-rent/ItemsKitRent.js +0 -18
- package/src/components/modules/rental/items-kit-rent/ItemsKitRentList.vue +0 -154
- package/src/components/modules/rental/items-kit-rent/ItemsKitRentUpdate.vue +0 -119
- package/src/components/modules/rental/items-rent/ApplyDiscount.vue +0 -52
- package/src/components/modules/rental/items-rent/DisableMovement.vue +0 -54
- package/src/components/modules/rental/items-rent/ItemRentFixedBar.vue +0 -193
- package/src/components/modules/rental/items-rent/ItemRentStockAvailability.vue +0 -120
- package/src/components/modules/rental/items-rent/ItemRentUpdate.vue +0 -188
- package/src/components/modules/rental/items-rent/ItemsAccessoryCreate.vue +0 -199
- package/src/components/modules/rental/items-rent/ItemsAccessoryList.vue +0 -269
- package/src/components/modules/rental/items-rent/ItemsRent.js +0 -39
- package/src/components/modules/rental/items-rent/ItemsRentCreate.vue +0 -130
- package/src/components/modules/rental/items-rent/ItemsRentList.vue +0 -566
- package/src/components/modules/rental/items-rent/ItemsRentStatusStock.vue +0 -122
- package/src/components/modules/rental/items-rent/ItemsRentalInvoice.vue +0 -45
- package/src/components/modules/rental/items-rent/ItemsRentalTotalization.vue +0 -73
- package/src/components/modules/rental/items-rent/RecalculateValue.vue +0 -52
- package/src/components/modules/rental/items-rent/UpdateStatusInvoicing.vue +0 -50
- package/src/components/modules/rental/kit-rent/KitRent.js +0 -16
- package/src/components/modules/rental/kit-rent/KitRentCreateUpdate.vue +0 -146
- package/src/components/modules/rental/moviment/MovimentList.vue +0 -367
- package/src/components/modules/rental/nfse/NfseList.vue +0 -250
- package/src/components/modules/rental/payment-rent/PaymentRent.js +0 -16
- package/src/components/modules/rental/payment-rent/PaymentRentCreateUpdate.vue +0 -122
- package/src/components/modules/rental/payment-rent/PaymentRentList.vue +0 -215
- package/src/components/modules/rental/period-rental/GeneratePeriodRent.js +0 -8
- package/src/components/modules/rental/period-rental/GeneratePeriodRent.vue +0 -201
- package/src/components/modules/rental/period-rental/PeriodRent.js +0 -20
- package/src/components/modules/rental/period-rental/PeriodRentCreateUpdate.vue +0 -184
- package/src/components/modules/rental/period-rental/PeriodRentItem.vue +0 -63
- package/src/components/modules/rental/period-rental/PeriodRentList.vue +0 -71
- package/src/components/modules/rental/period-rental/SelectOptionPeriodRent.vue +0 -153
- package/src/components/modules/rental/rent/Rent.js +0 -42
- package/src/components/modules/rental/rent/RentAccept.vue +0 -40
- package/src/components/modules/rental/rent/RentCreateUpdate.vue +0 -432
- package/src/components/modules/rental/rent/RentProgress.vue +0 -46
- package/src/components/modules/rental/rent/RentReject.vue +0 -46
- package/src/components/modules/rental/rent/RentTotalizationRent.vue +0 -153
- package/src/components/modules/rental/shared/CollaboratorWithUser.vue +0 -84
- package/src/components/modules/rental/shared/CustomerWithCreate.vue +0 -79
- package/src/components/modules/rental/shared/DropdownOptionsRent.vue +0 -306
- package/src/components/modules/rental/shared/import-product-rent/ImportProductByRent.vue +0 -122
- package/src/components/modules/rental/shared/import-product-rent/ItemsImportList.vue +0 -196
- package/src/components/modules/rental/team/Team.js +0 -29
- package/src/components/modules/rental/team/TeamCreateUpdate.vue +0 -141
- package/src/components/modules/rental/team/TeamList.vue +0 -150
- package/src/components/modules/rental/type-rent/TypeRent.js +0 -10
- package/src/components/modules/rental/type-rent/TypeRentCreateUpdate.vue +0 -111
- package/src/components/modules/shared/address/Address.js +0 -32
- package/src/components/modules/shared/address/AddressCreateUpdate.vue +0 -134
- package/src/components/modules/shared/address/AddressList.vue +0 -101
- package/src/components/modules/shared/contact/Contact.js +0 -20
- package/src/components/modules/shared/contact/ContactCreateUpdate.vue +0 -176
- package/src/components/modules/shared/contact/ContactList.vue +0 -100
- package/src/components/modules/shared/customer-supplier/CustomerSupplier.js +0 -52
- package/src/components/modules/shared/customer-supplier/CustomerSupplierCreate.vue +0 -166
- package/src/components/modules/shared/customer-supplier/CustomerSupplierCreateUpdate.vue +0 -212
- package/src/components/modules/shared/job/Job.js +0 -33
- package/src/components/modules/shared/job/JobCreateUpdate.vue +0 -219
- package/src/components/modules/shared/payment-items/Payment.js +0 -18
- package/src/components/modules/shared/payment-items/PaymentCreate.vue +0 -114
- package/src/components/modules/shared/payment-items/PaymentUpdate.vue +0 -69
- package/src/components/modules/shared/payment-items/PaymentsList.vue +0 -170
- package/src/components/modules/signature/send-signature/SendSingleSignature.vue +0 -57
- package/src/components/modules/signature/signature-config/SignatureConfig.vue +0 -118
- package/src/components/modules/signature/signature-file/SignatureFileList.vue +0 -125
- package/src/components/modules/signature/signer/SignerList.vue +0 -149
- package/src/components/modules/signature/signer/SignerListForMessaging.vue +0 -116
- package/src/components/modules/stock/accessory/Accessory.js +0 -16
- package/src/components/modules/stock/accessory/AccessoryList.vue +0 -134
- package/src/components/modules/stock/accessory/AccessoryUpdate.vue +0 -155
- package/src/components/modules/stock/availability-product/AvailabilityProduct.vue +0 -83
- package/src/components/modules/stock/category-product/CategoryProduct.js +0 -12
- package/src/components/modules/stock/category-product/CategoryProductCreateUpdate.vue +0 -102
- package/src/components/modules/stock/history-moviment/HistoryMoviment.vue +0 -93
- package/src/components/modules/stock/items-moviment/PatrimonyMoviment.vue +0 -133
- package/src/components/modules/stock/manufacturer/Manufacturer.js +0 -10
- package/src/components/modules/stock/manufacturer/ManufacturerCreateUpdate.vue +0 -111
- package/src/components/modules/stock/moviment/ItemProductRent.vue +0 -114
- package/src/components/modules/stock/moviment/ItemProductSelected.vue +0 -78
- package/src/components/modules/stock/moviment/ItemsRentForRecalculatePrice.vue +0 -113
- package/src/components/modules/stock/moviment/PrintMoviment.vue +0 -70
- package/src/components/modules/stock/moviment/ProductAdd.vue +0 -187
- package/src/components/modules/stock/moviment/ProductRent.vue +0 -198
- package/src/components/modules/stock/moviment/ProductSelected.vue +0 -149
- package/src/components/modules/stock/moviment/RentAndSelected.vue +0 -48
- package/src/components/modules/stock/moviment/SuccessMoviment.vue +0 -78
- package/src/components/modules/stock/moviment/TotalizationItemsMoviment.vue +0 -97
- package/src/components/modules/stock/moviment/output/CheckOutput.vue +0 -314
- package/src/components/modules/stock/moviment/output/GenerateOutput.vue +0 -127
- package/src/components/modules/stock/moviment/renewed/CheckRenewed.vue +0 -405
- package/src/components/modules/stock/moviment/renewed/GenerateRenewed.vue +0 -192
- package/src/components/modules/stock/moviment/return/CheckReturn.vue +0 -494
- package/src/components/modules/stock/moviment/return/GenerateReturn.vue +0 -127
- package/src/components/modules/stock/patrimony/Patrimony.js +0 -20
- package/src/components/modules/stock/patrimony/PatrimonyCreateUpdate.vue +0 -157
- package/src/components/modules/stock/patrimony/PatrimonyList.vue +0 -112
- package/src/components/modules/stock/price-table/PriceTable.js +0 -19
- package/src/components/modules/stock/price-table/PriceTableCreateUpdate.vue +0 -210
- package/src/components/modules/stock/price-table/PriceTableList.vue +0 -104
- package/src/components/modules/stock/product/Product.js +0 -56
- package/src/components/modules/stock/product/ProductCreateUpdate.vue +0 -324
- package/src/components/modules/stock/search-product/SearchByBarcode.vue +0 -163
- package/src/components/modules/stock/search-product/SearchProduct.vue +0 -440
- package/src/components/modules/stock/shared/TimeLineAvailability.vue +0 -100
- package/src/components/modules/stock/type-product/TypeProduct.js +0 -12
- package/src/components/modules/stock/type-product/TypeProductCreateUpdate.vue +0 -108
- package/src/components/modules/stock/unit-of-measurement/UnitOfMeasurement.js +0 -12
- package/src/components/modules/stock/unit-of-measurement/UnitOfMeasurementCreateUpdate.vue +0 -124
- package/src/components/modules/tax-document/certificate/Certificate.vue +0 -193
- package/src/components/modules/tax-document/cfop/Cfop.js +0 -12
- package/src/components/modules/tax-document/cfop/CfopCreateUpdate.vue +0 -96
- package/src/components/modules/tax-document/company/CompanyTaxation.vue +0 -121
- package/src/components/modules/tax-document/company/ConfigCompany.vue +0 -149
- package/src/components/modules/tax-document/company/Logo.vue +0 -54
- package/src/components/modules/tax-document/items-nfe/ItemsNfe.js +0 -19
- package/src/components/modules/tax-document/items-nfe/ItemsNfeCreate.vue +0 -79
- package/src/components/modules/tax-document/items-nfe/ItemsNfeList.vue +0 -227
- package/src/components/modules/tax-document/items-nfe/ItemsNfeUpdate.vue +0 -123
- package/src/components/modules/tax-document/nature-operation/NatureOperation.js +0 -10
- package/src/components/modules/tax-document/nature-operation/NatureOperationCreateUpdate.vue +0 -92
- package/src/components/modules/tax-document/nfe/Nfe.js +0 -28
- package/src/components/modules/tax-document/nfe/NfeCreateUpdate.vue +0 -227
- package/src/components/modules/tax-document/nfse/ConfigNfse.vue +0 -233
- package/src/components/modules/tax-document/nfse/Nfse.js +0 -73
- package/src/components/modules/tax-document/nfse/NfseCreateUpdate.vue +0 -239
- package/src/components/modules/tax-document/nfse/NfseCreateUpdate_Plug.vue +0 -221
- package/src/components/modules/tax-document/nfse/Tributacao.vue +0 -209
- package/src/components/modules/tax-document/nfse/Tributacao_Plug.vue +0 -185
- package/src/components/modules/tax-document/notification/InputTagEmail.vue +0 -89
- package/src/components/modules/tax-document/notification/Notificacao.vue +0 -122
- package/src/components/modules/tax-document/shared/DropdownOptionsNfs.vue +0 -271
- package/src/components/modules/tax-document/taxation/Taxation.js +0 -28
- package/src/components/modules/tax-document/taxation/TaxationCreateUpdate.vue +0 -141
- package/src/components/modules/tax-document/taxation/TaxationCreateUpdate_Plug.vue +0 -160
- package/src/config/tips.js +0 -9
- package/src/store/modules/generateMoviment.js +0 -98
- package/src/store/modules/paymentShared.js +0 -39
- package/src/store/modules/pdv.js +0 -107
- package/src/views/modules/adm/BilletFranchise.vue +0 -38
- package/src/views/modules/adm/Company.vue +0 -34
- package/src/views/modules/adm/ConfirmMailMobile.vue +0 -85
- package/src/views/modules/adm/DocumentCreateUpdate.vue +0 -88
- package/src/views/modules/adm/DocumentList.vue +0 -99
- package/src/views/modules/adm/DocumentPreviewPublic.vue +0 -124
- package/src/views/modules/adm/DocumentPublic.vue +0 -73
- package/src/views/modules/adm/Login.vue +0 -88
- package/src/views/modules/adm/LoginTemp.vue +0 -65
- package/src/views/modules/adm/NfeFranchise.vue +0 -38
- package/src/views/modules/adm/NfseFranchise.vue +0 -38
- package/src/views/modules/adm/Parameter.vue +0 -98
- package/src/views/modules/adm/Plan.vue +0 -74
- package/src/views/modules/adm/Register.vue +0 -82
- package/src/views/modules/adm/ReportAdm.vue +0 -35
- package/src/views/modules/adm/ReportAudit.vue +0 -216
- package/src/views/modules/adm/ResetPassword.vue +0 -73
- package/src/views/modules/adm/SignatureFranchise.vue +0 -38
- package/src/views/modules/adm/Store.vue +0 -47
- package/src/views/modules/adm/UserCreateUpdate.vue +0 -66
- package/src/views/modules/adm/UserList.vue +0 -178
- package/src/views/modules/adm/model/ParameterExemple.js +0 -421
- package/src/views/modules/adm/model/ParameterLegend.js +0 -1195
- package/src/views/modules/billing/BilletConfigList.vue +0 -90
- package/src/views/modules/billing/BilletList.vue +0 -294
- package/src/views/modules/billing/CancelInvoice.vue +0 -97
- package/src/views/modules/billing/GenerateBilling.vue +0 -41
- package/src/views/modules/billing/InvoiceCreateUpdate.vue +0 -45
- package/src/views/modules/billing/InvoiceList.vue +0 -167
- package/src/views/modules/billing/ReportBillet.vue +0 -35
- package/src/views/modules/billing/ReportBilling.vue +0 -35
- package/src/views/modules/billing/ReportInvoice.vue +0 -228
- package/src/views/modules/billing/ReturnShipment.vue +0 -196
- package/src/views/modules/billing/Shipment.vue +0 -141
- package/src/views/modules/billing/ShipmentReturnList.vue +0 -54
- package/src/views/modules/billing/ToProfitList.vue +0 -177
- package/src/views/modules/billing/_ReportBillet.vue +0 -178
- package/src/views/modules/calendar/Calendar.vue +0 -305
- package/src/views/modules/cashier/CashierList.vue +0 -192
- package/src/views/modules/course/Course.vue +0 -31
- package/src/views/modules/crm/CategoryCustomer.vue +0 -70
- package/src/views/modules/crm/ConfigCrm.vue +0 -53
- package/src/views/modules/crm/CustomerCreateUpdate.vue +0 -58
- package/src/views/modules/crm/CustomerList.vue +0 -131
- package/src/views/modules/crm/ImportCustomer.vue +0 -149
- package/src/views/modules/crm/OriginCustomer.vue +0 -82
- package/src/views/modules/crm/ReportCrm.vue +0 -35
- package/src/views/modules/crm/ReportCustomer.vue +0 -331
- package/src/views/modules/dashboard/Dashboard.vue +0 -538
- package/src/views/modules/dashboard/DashboardProfile.js +0 -16
- package/src/views/modules/dashboard/_Dashboard.vue +0 -257
- package/src/views/modules/faturamento/AFaturar.vue +0 -189
- package/src/views/modules/faturamento/HistoricoAFaturar.vue +0 -167
- package/src/views/modules/faturamento/ListaConfigAFaturar.vue +0 -47
- package/src/views/modules/faturamento/Semaforo.vue +0 -135
- package/src/views/modules/finance/Bank.vue +0 -80
- package/src/views/modules/finance/BankAccountCreateUpdate.vue +0 -58
- package/src/views/modules/finance/BankAccountList.vue +0 -96
- package/src/views/modules/finance/BankReconciliation.vue +0 -50
- package/src/views/modules/finance/ConfigFinance.vue +0 -59
- package/src/views/modules/finance/CostCenter.vue +0 -26
- package/src/views/modules/finance/PayableReceivableCreateUpdate.vue +0 -58
- package/src/views/modules/finance/PayableReceivableList.vue +0 -636
- package/src/views/modules/finance/ReportFinance.vue +0 -40
- package/src/views/modules/finance/ReportPayableReceivable.vue +0 -355
- package/src/views/modules/finance/TransferAccountList.vue +0 -130
- package/src/views/modules/finance/TypePayment.vue +0 -80
- package/src/views/modules/financeiro/CentroCusto.vue +0 -112
- package/src/views/modules/financeiro/PlanoConta.vue +0 -111
- package/src/views/modules/financeiro/TipoPagamento.vue +0 -111
- package/src/views/modules/human-resources/CollaboratorCreateUpdate.vue +0 -68
- package/src/views/modules/human-resources/CollaboratorList.vue +0 -114
- package/src/views/modules/locacao/InserirLocacaoPadrao.vue +0 -54
- package/src/views/modules/locacao/InserirLocacaoPdv.vue +0 -104
- package/src/views/modules/locacao/LocacaoPdvFinalizada.vue +0 -75
- package/src/views/modules/maintenance/OrderServiceCreateUpdate.vue +0 -56
- package/src/views/modules/maintenance/OrderServiceList.vue +0 -94
- package/src/views/modules/manutencao/InserirEditarOrdemServico.vue +0 -94
- package/src/views/modules/manutencao/Material.vue +0 -123
- package/src/views/modules/manutencao/OrdemServico.vue +0 -145
- package/src/views/modules/manutencao/TipoManutencao.vue +0 -94
- package/src/views/modules/operational/OsPanel.vue +0 -32
- package/src/views/modules/operational/RentOperationalCreateUpdate.vue +0 -47
- package/src/views/modules/operational/RentOperationalList.vue +0 -217
- package/src/views/modules/operational/ReportDeliveryDevolution.vue +0 -210
- package/src/views/modules/operational/ReportOperational.vue +0 -35
- package/src/views/modules/operational/ReservationPanel.vue +0 -34
- package/src/views/modules/pdv/PdvRentCreateUpdate.vue +0 -55
- package/src/views/modules/pdv/PdvRentList.vue +0 -103
- package/src/views/modules/pdv/PdvRentSelectOption.vue +0 -89
- package/src/views/modules/pdv/PdvSearch.vue +0 -47
- package/src/views/modules/pdv/SuccessPdvRent.vue +0 -59
- package/src/views/modules/rental/ConfigRental.vue +0 -59
- package/src/views/modules/rental/GroupRent.vue +0 -80
- package/src/views/modules/rental/KitRent.vue +0 -78
- package/src/views/modules/rental/KitRentCreateUpdate.vue +0 -58
- package/src/views/modules/rental/RentCreateUpdate.vue +0 -46
- package/src/views/modules/rental/RentSelectOption.vue +0 -53
- package/src/views/modules/rental/RentalList.vue +0 -297
- package/src/views/modules/rental/ReportRentByCustomer.vue +0 -303
- package/src/views/modules/rental/ReportRentByPayment.vue +0 -242
- package/src/views/modules/rental/ReportRentByPeriodRent.vue +0 -312
- package/src/views/modules/rental/ReportRentByProduct.vue +0 -323
- package/src/views/modules/rental/ReportRentPerformance.vue +0 -346
- package/src/views/modules/rental/ReportRental.vue +0 -50
- package/src/views/modules/rental/TypeRent.vue +0 -86
- package/src/views/modules/rental/_RentalList.vue +0 -285
- package/src/views/modules/shared/JobList.vue +0 -178
- package/src/views/modules/signature/ConfigSignature.vue +0 -43
- package/src/views/modules/signature/SignatureList.vue +0 -208
- package/src/views/modules/stock/CategoryProduct.vue +0 -75
- package/src/views/modules/stock/ConfigStock.vue +0 -71
- package/src/views/modules/stock/GenerateOutput.vue +0 -35
- package/src/views/modules/stock/GenerateRenewed.vue +0 -36
- package/src/views/modules/stock/GenerateReturn.vue +0 -35
- package/src/views/modules/stock/ImportProduct.vue +0 -134
- package/src/views/modules/stock/Manufacturer.vue +0 -81
- package/src/views/modules/stock/ProductCreateUpdate.vue +0 -58
- package/src/views/modules/stock/ProductList.vue +0 -175
- package/src/views/modules/stock/ProductSelectOption.vue +0 -80
- package/src/views/modules/stock/ReportHistoryPatrimony.vue +0 -154
- package/src/views/modules/stock/ReportPatrimony.vue +0 -239
- package/src/views/modules/stock/ReportProduct.vue +0 -421
- package/src/views/modules/stock/ReportProductByCustomer.vue +0 -392
- package/src/views/modules/stock/ReportStock.vue +0 -50
- package/src/views/modules/stock/TypeProduct.vue +0 -86
- package/src/views/modules/stock/UnitOfMeasurement.vue +0 -86
- package/src/views/modules/tax-document/CancelNfse.vue +0 -97
- package/src/views/modules/tax-document/Cfop.vue +0 -72
- package/src/views/modules/tax-document/ConfigTaxDocument.vue +0 -43
- package/src/views/modules/tax-document/NatureOperation.vue +0 -72
- package/src/views/modules/tax-document/NfeCreateUpdate.vue +0 -37
- package/src/views/modules/tax-document/NfeList.vue +0 -173
- package/src/views/modules/tax-document/NfeReceivedList.vue +0 -236
- package/src/views/modules/tax-document/NfseCreateUpdate.vue +0 -36
- package/src/views/modules/tax-document/NfseList.vue +0 -162
- package/src/views/modules/tax-document/Taxation.vue +0 -85
|
@@ -1,868 +0,0 @@
|
|
|
1
|
-
export default class Menu {
|
|
2
|
-
constructor() {
|
|
3
|
-
this.itens = [
|
|
4
|
-
{
|
|
5
|
-
order: 0,
|
|
6
|
-
isModule: true,
|
|
7
|
-
rule: "Adm",
|
|
8
|
-
module: "Adm",
|
|
9
|
-
title: "Adm...",
|
|
10
|
-
isVisible: "all",
|
|
11
|
-
icon: "fa-light fa-screwdriver-wrench",
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
isModule: false,
|
|
15
|
-
rule: "Adm",
|
|
16
|
-
module: "Adm",
|
|
17
|
-
type: "group",
|
|
18
|
-
isVisible: "all",
|
|
19
|
-
groupName: "Administração",
|
|
20
|
-
icon: "fas fa-user-lock",
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
isModule: false,
|
|
24
|
-
rule: "Adm",
|
|
25
|
-
module: "Adm",
|
|
26
|
-
type: "link",
|
|
27
|
-
title: "Documento",
|
|
28
|
-
isVisible: "all",
|
|
29
|
-
routeName: "documentList",
|
|
30
|
-
icon: "fa-solid fa-file-invoice",
|
|
31
|
-
iconColor: "#577696"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
isModule: false,
|
|
35
|
-
rule: "Adm",
|
|
36
|
-
module: "Adm",
|
|
37
|
-
type: "link",
|
|
38
|
-
title: "Empresa",
|
|
39
|
-
isVisible: "all",
|
|
40
|
-
routeName: "company",
|
|
41
|
-
icon: "fas fa-building",
|
|
42
|
-
iconColor: "#577696"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
isModule: false,
|
|
46
|
-
rule: "Adm",
|
|
47
|
-
module: "Adm",
|
|
48
|
-
type: "link",
|
|
49
|
-
title: "Usuário",
|
|
50
|
-
isVisible: "all",
|
|
51
|
-
routeName: "userList",
|
|
52
|
-
icon: "fas fa-users",
|
|
53
|
-
iconColor: "#577696"
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
isModule: false,
|
|
57
|
-
rule: "Adm",
|
|
58
|
-
module: "Adm",
|
|
59
|
-
type: "link",
|
|
60
|
-
title: "Loja",
|
|
61
|
-
isVisible: "all",
|
|
62
|
-
routeName: "store",
|
|
63
|
-
icon: "fa-sharp fa-solid fa-bags-shopping",
|
|
64
|
-
iconColor: "#38A169"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
isModule: false,
|
|
68
|
-
rule: "Adm",
|
|
69
|
-
module: "Adm",
|
|
70
|
-
type: "link",
|
|
71
|
-
title: "Parâmetro",
|
|
72
|
-
isVisible: "all",
|
|
73
|
-
routeName: "parameter",
|
|
74
|
-
icon: "fas fa-cogs",
|
|
75
|
-
iconColor: "#577696"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
isModule: false,
|
|
79
|
-
rule: "Adm",
|
|
80
|
-
module: "Adm",
|
|
81
|
-
type: "link",
|
|
82
|
-
title: "Plano",
|
|
83
|
-
isVisible: "all",
|
|
84
|
-
routeName: "plan",
|
|
85
|
-
icon: "fa-regular fa-chart-mixed-up-circle-dollar",
|
|
86
|
-
iconColor: "#577696"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
isModule: false,
|
|
90
|
-
rule: "Adm",
|
|
91
|
-
module: "Adm",
|
|
92
|
-
type: "group",
|
|
93
|
-
isVisible: "all",
|
|
94
|
-
groupName: "Outros",
|
|
95
|
-
icon: "fas fa-user-lock",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
isModule: false,
|
|
99
|
-
rule: "Adm",
|
|
100
|
-
module: "Adm",
|
|
101
|
-
type: "link",
|
|
102
|
-
title: "Relatório",
|
|
103
|
-
isVisible: "all",
|
|
104
|
-
routeName: "reportAdm",
|
|
105
|
-
icon: "fa-solid fa-file-dashed-line",
|
|
106
|
-
iconColor: "#94AA2A"
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
order: 1,
|
|
110
|
-
isModule: true,
|
|
111
|
-
rule: "Signature",
|
|
112
|
-
module: "Signature",
|
|
113
|
-
title: "Assina...",
|
|
114
|
-
isVisible: "all",
|
|
115
|
-
icon: "fa-light fa-file-signature",
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
isModule: false,
|
|
119
|
-
rule: "Signature",
|
|
120
|
-
module: "Signature",
|
|
121
|
-
type: "group",
|
|
122
|
-
isVisible: "all",
|
|
123
|
-
groupName: "Assinatura Digital",
|
|
124
|
-
icon: "fas fa-user-lock",
|
|
125
|
-
},
|
|
126
|
-
{
|
|
127
|
-
isModule: false,
|
|
128
|
-
rule: "Signature",
|
|
129
|
-
module: "Signature",
|
|
130
|
-
type: "link",
|
|
131
|
-
title: "Documento",
|
|
132
|
-
isVisible: "all",
|
|
133
|
-
routeName: "signatureList",
|
|
134
|
-
icon: "fa-solid fa-file-signature",
|
|
135
|
-
iconColor: "#577696"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
isModule: false,
|
|
139
|
-
rule: "Signature",
|
|
140
|
-
module: "Signature",
|
|
141
|
-
type: "group",
|
|
142
|
-
isVisible: "all",
|
|
143
|
-
groupName: "Outros",
|
|
144
|
-
icon: "fas fa-user-lock",
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
isModule: false,
|
|
148
|
-
rule: "Signature",
|
|
149
|
-
module: "Signature",
|
|
150
|
-
type: "link",
|
|
151
|
-
title: "Configuração",
|
|
152
|
-
isVisible: "all",
|
|
153
|
-
routeName: "configSignature",
|
|
154
|
-
icon: "fas fa-cog",
|
|
155
|
-
iconColor: "#528DD7"
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
order: 2,
|
|
159
|
-
isModule: true,
|
|
160
|
-
rule: "Billet",
|
|
161
|
-
module: "Billet",
|
|
162
|
-
isVisible: "all",
|
|
163
|
-
title: "Boleto",
|
|
164
|
-
icon: "fa-light fa-barcode",
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
isModule: false,
|
|
168
|
-
rule: "Billet",
|
|
169
|
-
module: "Billet",
|
|
170
|
-
type: "group",
|
|
171
|
-
isVisible: "all",
|
|
172
|
-
groupName: "Boleto Bancário",
|
|
173
|
-
icon: "fas fa-user-lock",
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
isModule: false,
|
|
177
|
-
rule: "Billet",
|
|
178
|
-
module: "Billet",
|
|
179
|
-
type: "link",
|
|
180
|
-
title: "Boleto",
|
|
181
|
-
isVisible: "all",
|
|
182
|
-
routeName: "billetList",
|
|
183
|
-
icon: "fa-solid fa-barcode",
|
|
184
|
-
iconColor: "#577696"
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
isModule: false,
|
|
188
|
-
rule: "Billet",
|
|
189
|
-
module: "Billet",
|
|
190
|
-
type: "link",
|
|
191
|
-
title: "Remessa e Retorno",
|
|
192
|
-
isVisible: "all",
|
|
193
|
-
routeName: "shipmentReturnList",
|
|
194
|
-
icon: "fa-solid fa-retweet",
|
|
195
|
-
iconColor: "#577696"
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
isModule: false,
|
|
199
|
-
rule: "Billet",
|
|
200
|
-
module: "Billet",
|
|
201
|
-
type: "group",
|
|
202
|
-
isVisible: "all",
|
|
203
|
-
groupName: "Outros",
|
|
204
|
-
icon: "fas fa-user-lock",
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
isModule: false,
|
|
208
|
-
rule: "Billet",
|
|
209
|
-
module: "Billet",
|
|
210
|
-
type: "link",
|
|
211
|
-
title: "Integração",
|
|
212
|
-
isVisible: "support",
|
|
213
|
-
routeName: "billetConfigList",
|
|
214
|
-
icon: "fa-solid fa-plug",
|
|
215
|
-
iconColor: "#528DD7"
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
isModule: false,
|
|
219
|
-
rule: "Billet",
|
|
220
|
-
module: "Billet",
|
|
221
|
-
type: "link",
|
|
222
|
-
title: "Relatório",
|
|
223
|
-
isVisible: "all",
|
|
224
|
-
routeName: "reportBillet",
|
|
225
|
-
icon: "fa-solid fa-file-dashed-line",
|
|
226
|
-
iconColor: "#94AA2A"
|
|
227
|
-
},
|
|
228
|
-
{
|
|
229
|
-
order: 3,
|
|
230
|
-
isModule: true,
|
|
231
|
-
rule: "CRM",
|
|
232
|
-
module: "CRM",
|
|
233
|
-
isVisible: "all",
|
|
234
|
-
title: "CRM",
|
|
235
|
-
icon: "fa-sharp fa-light fa-handshake",
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
isModule: false,
|
|
239
|
-
rule: "CRM",
|
|
240
|
-
module: "CRM",
|
|
241
|
-
type: "group",
|
|
242
|
-
isVisible: "all",
|
|
243
|
-
groupName: "CRM",
|
|
244
|
-
icon: "fas fa-user-lock",
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
isModule: false,
|
|
248
|
-
rule: "CRM",
|
|
249
|
-
module: "CRM",
|
|
250
|
-
type: "link",
|
|
251
|
-
title: "Cliente",
|
|
252
|
-
isVisible: "all",
|
|
253
|
-
routeName: "customerList",
|
|
254
|
-
icon: "fas fa-user",
|
|
255
|
-
iconColor: "#577696"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
isModule: false,
|
|
259
|
-
rule: "CRM",
|
|
260
|
-
module: "CRM",
|
|
261
|
-
type: "group",
|
|
262
|
-
isVisible: "all",
|
|
263
|
-
groupName: "Outros",
|
|
264
|
-
icon: "fas fa-user-lock",
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
isModule: false,
|
|
268
|
-
rule: "CRM",
|
|
269
|
-
module: "CRM",
|
|
270
|
-
type: "link",
|
|
271
|
-
title: "Configuração",
|
|
272
|
-
isVisible: "all",
|
|
273
|
-
routeName: "configCrm",
|
|
274
|
-
icon: "fas fa-cog",
|
|
275
|
-
iconColor: "#528DD7"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
isModule: false,
|
|
279
|
-
rule: "CRM",
|
|
280
|
-
module: "CRM",
|
|
281
|
-
type: "link",
|
|
282
|
-
title: "Importar",
|
|
283
|
-
isVisible: "support",
|
|
284
|
-
routeName: "importCustomer",
|
|
285
|
-
icon: "fa-solid fa-up-from-line",
|
|
286
|
-
iconColor: "#D98621"
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
isModule: false,
|
|
290
|
-
rule: "CRM",
|
|
291
|
-
module: "CRM",
|
|
292
|
-
type: "link",
|
|
293
|
-
title: "Relatório",
|
|
294
|
-
isVisible: "all",
|
|
295
|
-
routeName: "reportCrm",
|
|
296
|
-
icon: "fa-solid fa-file-dashed-line",
|
|
297
|
-
iconColor: "#94AA2A"
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
order: 4,
|
|
301
|
-
isModule: true,
|
|
302
|
-
rule: "Cashier",
|
|
303
|
-
module: "Cashier",
|
|
304
|
-
title: "Caixa",
|
|
305
|
-
isVisible: "all",
|
|
306
|
-
icon: "fa-light fa-cash-register",
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
isModule: false,
|
|
310
|
-
rule: "Cashier",
|
|
311
|
-
module: "Cashier",
|
|
312
|
-
type: "group",
|
|
313
|
-
isVisible: "all",
|
|
314
|
-
groupName: "Caixa",
|
|
315
|
-
icon: "fas fa-user-lock",
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
isModule: false,
|
|
319
|
-
rule: "Cashier",
|
|
320
|
-
module: "Cashier",
|
|
321
|
-
type: "link",
|
|
322
|
-
title: "Caixa",
|
|
323
|
-
isVisible: "all",
|
|
324
|
-
routeName: "cashierList",
|
|
325
|
-
icon: "fa-sharp fa-solid fa-cash-register",
|
|
326
|
-
iconColor: "#577696"
|
|
327
|
-
},
|
|
328
|
-
{
|
|
329
|
-
order: 5,
|
|
330
|
-
isModule: true,
|
|
331
|
-
rule: "Stock",
|
|
332
|
-
module: "Stock",
|
|
333
|
-
title: "Estoque",
|
|
334
|
-
isVisible: "all",
|
|
335
|
-
icon: "fa-light fa-boxes-stacked",
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
isModule: false,
|
|
339
|
-
rule: "Stock",
|
|
340
|
-
module: "Stock",
|
|
341
|
-
type: "group",
|
|
342
|
-
isVisible: "all",
|
|
343
|
-
groupName: "Estoque",
|
|
344
|
-
icon: "fas fa-user-lock",
|
|
345
|
-
},
|
|
346
|
-
{
|
|
347
|
-
isModule: false,
|
|
348
|
-
rule: "Stock",
|
|
349
|
-
module: "Stock",
|
|
350
|
-
type: "link",
|
|
351
|
-
title: "Produto",
|
|
352
|
-
isVisible: "all",
|
|
353
|
-
routeName: "productList",
|
|
354
|
-
icon: "fas fa-boxes",
|
|
355
|
-
iconColor: "#577696"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
isModule: false,
|
|
359
|
-
rule: "Stock",
|
|
360
|
-
module: "Stock",
|
|
361
|
-
type: "group",
|
|
362
|
-
isVisible: "all",
|
|
363
|
-
groupName: "Outros",
|
|
364
|
-
icon: "fas fa-user-lock",
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
isModule: false,
|
|
368
|
-
rule: "Stock",
|
|
369
|
-
module: "Stock",
|
|
370
|
-
type: "link",
|
|
371
|
-
title: "Configuração",
|
|
372
|
-
isVisible: "all",
|
|
373
|
-
routeName: "configStock",
|
|
374
|
-
icon: "fas fa-cog",
|
|
375
|
-
iconColor: "#528DD7"
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
isModule: false,
|
|
379
|
-
rule: "Stock",
|
|
380
|
-
module: "Stock",
|
|
381
|
-
type: "link",
|
|
382
|
-
title: "Importar",
|
|
383
|
-
isVisible: "support",
|
|
384
|
-
routeName: "importProduct",
|
|
385
|
-
icon: "fa-solid fa-up-from-line",
|
|
386
|
-
iconColor: "#D98621"
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
isModule: false,
|
|
390
|
-
rule: "Stock",
|
|
391
|
-
module: "Stock",
|
|
392
|
-
type: "link",
|
|
393
|
-
title: "Relatório",
|
|
394
|
-
isVisible: "all",
|
|
395
|
-
routeName: "reportStock",
|
|
396
|
-
icon: "fa-solid fa-file-dashed-line",
|
|
397
|
-
iconColor: "#94AA2A"
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
order: 6,
|
|
401
|
-
isModule: true,
|
|
402
|
-
rule: "Billing",
|
|
403
|
-
module: "Billing",
|
|
404
|
-
title: "Fatura...",
|
|
405
|
-
icon: "fa-light fa-file-invoice",
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
isModule: false,
|
|
409
|
-
rule: "Billing",
|
|
410
|
-
module: "Billing",
|
|
411
|
-
type: "group",
|
|
412
|
-
isVisible: "all",
|
|
413
|
-
groupName: "Faturamento",
|
|
414
|
-
icon: "fas fa-user-lock",
|
|
415
|
-
},
|
|
416
|
-
{
|
|
417
|
-
isModule: false,
|
|
418
|
-
rule: "Billing",
|
|
419
|
-
module: "Billing",
|
|
420
|
-
type: "link",
|
|
421
|
-
title: "Fatura",
|
|
422
|
-
isVisible: "all",
|
|
423
|
-
routeName: "invoiceList",
|
|
424
|
-
icon: "fa-sharp fa-solid fa-file-invoice",
|
|
425
|
-
iconColor: "#577696"
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
isModule: false,
|
|
429
|
-
rule: "Billing",
|
|
430
|
-
module: "Billing",
|
|
431
|
-
type: "link",
|
|
432
|
-
title: "A Faturar",
|
|
433
|
-
isVisible: "all",
|
|
434
|
-
routeName: "toProfitList",
|
|
435
|
-
icon: "fa-solid fa-chart-mixed-up-circle-dollar",
|
|
436
|
-
iconColor: "#577696"
|
|
437
|
-
},
|
|
438
|
-
{
|
|
439
|
-
isModule: false,
|
|
440
|
-
rule: "Billing",
|
|
441
|
-
module: "Billing",
|
|
442
|
-
type: "group",
|
|
443
|
-
isVisible: "all",
|
|
444
|
-
groupName: "Outros",
|
|
445
|
-
icon: "fas fa-user-lock",
|
|
446
|
-
},
|
|
447
|
-
{
|
|
448
|
-
isModule: false,
|
|
449
|
-
rule: "Billing",
|
|
450
|
-
module: "Billing",
|
|
451
|
-
type: "link",
|
|
452
|
-
title: "Relatório",
|
|
453
|
-
isVisible: "all",
|
|
454
|
-
routeName: "reportBilling",
|
|
455
|
-
icon: "fa-solid fa-file-dashed-line",
|
|
456
|
-
iconColor: "#94AA2A"
|
|
457
|
-
},
|
|
458
|
-
{
|
|
459
|
-
order: 7,
|
|
460
|
-
isModule: true,
|
|
461
|
-
rule: "Finance",
|
|
462
|
-
module: "Finance",
|
|
463
|
-
title: "Financ...",
|
|
464
|
-
isVisible: "all",
|
|
465
|
-
icon: "fa-light fa-sack-dollar",
|
|
466
|
-
},
|
|
467
|
-
{
|
|
468
|
-
isModule: false,
|
|
469
|
-
rule: "Finance",
|
|
470
|
-
module: "Finance",
|
|
471
|
-
type: "group",
|
|
472
|
-
isVisible: "all",
|
|
473
|
-
groupName: "Financeiro",
|
|
474
|
-
icon: "fas fa-user-lock",
|
|
475
|
-
},
|
|
476
|
-
/* {
|
|
477
|
-
isModule: false,
|
|
478
|
-
rule: "Finance",
|
|
479
|
-
module: "Finance",
|
|
480
|
-
type: "link",
|
|
481
|
-
title: "Boleto Bancário",
|
|
482
|
-
routeName: "payableReceivableList",
|
|
483
|
-
icon: "fa-solid fa-barcode-scan",
|
|
484
|
-
iconColor: "#577696"
|
|
485
|
-
},*/
|
|
486
|
-
{
|
|
487
|
-
isModule: false,
|
|
488
|
-
rule: "Finance",
|
|
489
|
-
module: "Finance",
|
|
490
|
-
type: "link",
|
|
491
|
-
title: "Pagar e Receber",
|
|
492
|
-
isVisible: "all",
|
|
493
|
-
routeName: "payableReceivableList",
|
|
494
|
-
icon: "fa-solid fa-money-check-dollar-pen",
|
|
495
|
-
iconColor: "#577696"
|
|
496
|
-
},
|
|
497
|
-
{
|
|
498
|
-
isModule: false,
|
|
499
|
-
rule: "Finance",
|
|
500
|
-
module: "Finance",
|
|
501
|
-
type: "link",
|
|
502
|
-
title: "Conciliação Bancária",
|
|
503
|
-
isVisible: "all",
|
|
504
|
-
routeName: "bankReconciliation",
|
|
505
|
-
icon: "fa-solid fa-up-from-line",
|
|
506
|
-
iconColor: "#577696"
|
|
507
|
-
},
|
|
508
|
-
{
|
|
509
|
-
isModule: false,
|
|
510
|
-
rule: "Finance",
|
|
511
|
-
module: "Finance",
|
|
512
|
-
type: "link",
|
|
513
|
-
title: "Transfe...entre Contas",
|
|
514
|
-
isVisible: "all",
|
|
515
|
-
routeName: "transferAccountList",
|
|
516
|
-
icon: "fa-solid fa-money-bill-transfer",
|
|
517
|
-
iconColor: "#577696"
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
isModule: false,
|
|
521
|
-
rule: "Finance",
|
|
522
|
-
module: "Finance",
|
|
523
|
-
type: "group",
|
|
524
|
-
isVisible: "all",
|
|
525
|
-
groupName: "Outros",
|
|
526
|
-
icon: "fas fa-user-lock",
|
|
527
|
-
},
|
|
528
|
-
|
|
529
|
-
{
|
|
530
|
-
isModule: false,
|
|
531
|
-
rule: "Finance",
|
|
532
|
-
module: "Finance",
|
|
533
|
-
type: "link",
|
|
534
|
-
title: "Configuração",
|
|
535
|
-
isVisible: "all",
|
|
536
|
-
routeName: "configFinance",
|
|
537
|
-
icon: "fas fa-cog",
|
|
538
|
-
iconColor: "#528DD7"
|
|
539
|
-
},
|
|
540
|
-
{
|
|
541
|
-
isModule: false,
|
|
542
|
-
rule: "Finance",
|
|
543
|
-
module: "Finance",
|
|
544
|
-
type: "link",
|
|
545
|
-
title: "Relatório",
|
|
546
|
-
isVisible: "all",
|
|
547
|
-
routeName: "reportFinance",
|
|
548
|
-
icon: "fa-solid fa-file-dashed-line",
|
|
549
|
-
iconColor: "#94AA2A"
|
|
550
|
-
},
|
|
551
|
-
{
|
|
552
|
-
order: 8,
|
|
553
|
-
isModule: true,
|
|
554
|
-
rule: "Maintenance",
|
|
555
|
-
module: "Maintenance",
|
|
556
|
-
title: "Manute...",
|
|
557
|
-
isVisible: "all",
|
|
558
|
-
icon: "fa-light fa-wrench",
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
isModule: false,
|
|
562
|
-
rule: "Maintenance",
|
|
563
|
-
module: "Maintenance",
|
|
564
|
-
isVisible: "all",
|
|
565
|
-
type: "group",
|
|
566
|
-
groupName: "Manutenção",
|
|
567
|
-
},
|
|
568
|
-
{
|
|
569
|
-
isModule: false,
|
|
570
|
-
rule: "Maintenance",
|
|
571
|
-
module: "Maintenance",
|
|
572
|
-
type: "link",
|
|
573
|
-
title: "OS Interna",
|
|
574
|
-
isVisible: "all",
|
|
575
|
-
routeName: "maintenanceList",
|
|
576
|
-
icon: "fa-solid fa-file-lines",
|
|
577
|
-
iconColor: "#577696"
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
order: 9,
|
|
581
|
-
isModule: true,
|
|
582
|
-
rule: "Rental",
|
|
583
|
-
module: "Rental",
|
|
584
|
-
title: "Locação",
|
|
585
|
-
isVisible: "all",
|
|
586
|
-
icon: "fa-sharp fa-light fa-right-left",
|
|
587
|
-
},
|
|
588
|
-
{
|
|
589
|
-
isModule: false,
|
|
590
|
-
rule: "Rental",
|
|
591
|
-
module: "Rental",
|
|
592
|
-
isVisible: "all",
|
|
593
|
-
type: "group",
|
|
594
|
-
groupName: "Locação",
|
|
595
|
-
|
|
596
|
-
},
|
|
597
|
-
{
|
|
598
|
-
isModule: false,
|
|
599
|
-
rule: "Rental",
|
|
600
|
-
module: "Rental",
|
|
601
|
-
type: "link",
|
|
602
|
-
title: "Locação",
|
|
603
|
-
isVisible: "all",
|
|
604
|
-
routeName: "rentalList",
|
|
605
|
-
icon: "fas fa-exchange-alt",
|
|
606
|
-
iconColor: "#577696"
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
isModule: false,
|
|
610
|
-
rule: "Rental",
|
|
611
|
-
module: "Rental",
|
|
612
|
-
type: "group",
|
|
613
|
-
isVisible: "all",
|
|
614
|
-
groupName: "Outros",
|
|
615
|
-
icon: "fas fa-user-lock",
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
isModule: false,
|
|
619
|
-
rule: "Rental",
|
|
620
|
-
module: "Rental",
|
|
621
|
-
type: "link",
|
|
622
|
-
title: "Configuração",
|
|
623
|
-
isVisible: "all",
|
|
624
|
-
routeName: "configRental",
|
|
625
|
-
icon: "fas fa-cog",
|
|
626
|
-
iconColor: "#528DD7"
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
isModule: false,
|
|
630
|
-
rule: "Rental",
|
|
631
|
-
module: "Rental",
|
|
632
|
-
type: "link",
|
|
633
|
-
title: "Relatório",
|
|
634
|
-
isVisible: "all",
|
|
635
|
-
routeName: "reportRental",
|
|
636
|
-
icon: "fa-solid fa-file-dashed-line",
|
|
637
|
-
iconColor: "#94AA2A"
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
order: 10,
|
|
641
|
-
isModule: true,
|
|
642
|
-
rule: "TaxDocument",
|
|
643
|
-
module: "TaxDocument",
|
|
644
|
-
title: "Nota F...",
|
|
645
|
-
isVisible: "all",
|
|
646
|
-
icon: "fa-light fa-receipt",
|
|
647
|
-
},
|
|
648
|
-
{
|
|
649
|
-
isModule: false,
|
|
650
|
-
rule: "TaxDocument",
|
|
651
|
-
module: "TaxDocument",
|
|
652
|
-
type: "group",
|
|
653
|
-
isVisible: "all",
|
|
654
|
-
groupName: "Emissão",
|
|
655
|
-
icon: "fas fa-user-lock",
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
isModule: false,
|
|
659
|
-
rule: "TaxDocument",
|
|
660
|
-
module: "TaxDocument",
|
|
661
|
-
type: "link",
|
|
662
|
-
title: "Nota de Serviço",
|
|
663
|
-
isVisible: "all",
|
|
664
|
-
routeName: "nfseList",
|
|
665
|
-
icon: "fa-solid fa-receipt",
|
|
666
|
-
iconColor: "#577696"
|
|
667
|
-
},
|
|
668
|
-
{
|
|
669
|
-
isModule: false,
|
|
670
|
-
rule: "TaxDocument",
|
|
671
|
-
module: "TaxDocument",
|
|
672
|
-
type: "link",
|
|
673
|
-
title: "Nota de Remessa",
|
|
674
|
-
isVisible: "all",
|
|
675
|
-
routeName: "nfeList",
|
|
676
|
-
icon: "fa-solid fa-receipt",
|
|
677
|
-
iconColor: "#577696"
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
isModule: false,
|
|
681
|
-
rule: "TaxDocument",
|
|
682
|
-
module: "TaxDocument",
|
|
683
|
-
type: "group",
|
|
684
|
-
isVisible: "all",
|
|
685
|
-
groupName: "Recebimento",
|
|
686
|
-
icon: "fas fa-user-lock",
|
|
687
|
-
},
|
|
688
|
-
{
|
|
689
|
-
isModule: false,
|
|
690
|
-
rule: "TaxDocument",
|
|
691
|
-
module: "TaxDocument",
|
|
692
|
-
type: "link",
|
|
693
|
-
title: "Nfe Recebida",
|
|
694
|
-
isVisible: "all",
|
|
695
|
-
routeName: "nfeReceivedList",
|
|
696
|
-
icon: "fa-solid fa-arrows-repeat",
|
|
697
|
-
iconColor: "#577696"
|
|
698
|
-
},
|
|
699
|
-
{
|
|
700
|
-
isModule: false,
|
|
701
|
-
rule: "TaxDocument",
|
|
702
|
-
module: "TaxDocument",
|
|
703
|
-
type: "group",
|
|
704
|
-
isVisible: "all",
|
|
705
|
-
groupName: "Outros",
|
|
706
|
-
icon: "fas fa-user-lock",
|
|
707
|
-
},
|
|
708
|
-
{
|
|
709
|
-
isModule: false,
|
|
710
|
-
rule: "TaxDocument",
|
|
711
|
-
module: "TaxDocument",
|
|
712
|
-
type: "link",
|
|
713
|
-
title: "Configuração",
|
|
714
|
-
isVisible: "all",
|
|
715
|
-
routeName: "configTaxDocument",
|
|
716
|
-
icon: "fas fa-cog",
|
|
717
|
-
iconColor: "#528DD7"
|
|
718
|
-
},
|
|
719
|
-
{
|
|
720
|
-
order: 11,
|
|
721
|
-
isModule: true,
|
|
722
|
-
rule: "Operational",
|
|
723
|
-
module: "Operational",
|
|
724
|
-
isVisible: "all",
|
|
725
|
-
title: "Operac...",
|
|
726
|
-
icon: "fa-light fa-truck-loading",
|
|
727
|
-
},
|
|
728
|
-
{
|
|
729
|
-
isModule: false,
|
|
730
|
-
rule: "Operational",
|
|
731
|
-
module: "Operational",
|
|
732
|
-
type: "group",
|
|
733
|
-
isVisible: "all",
|
|
734
|
-
groupName: "Operacional",
|
|
735
|
-
icon: "fas fa-user-lock",
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
isModule: false,
|
|
739
|
-
rule: "Operational",
|
|
740
|
-
module: "Operational",
|
|
741
|
-
type: "link",
|
|
742
|
-
title: "Locação",
|
|
743
|
-
isVisible: "all",
|
|
744
|
-
routeName: "rentOperationalList",
|
|
745
|
-
icon: "fas fa-exchange-alt",
|
|
746
|
-
iconColor: "#577696"
|
|
747
|
-
},
|
|
748
|
-
{
|
|
749
|
-
isModule: false,
|
|
750
|
-
rule: "Operational",
|
|
751
|
-
module: "Operational",
|
|
752
|
-
type: "link",
|
|
753
|
-
title: "Painel de OS",
|
|
754
|
-
isVisible: "all",
|
|
755
|
-
routeName: "osPanelList",
|
|
756
|
-
icon: "fa-regular fa-solar-panel",
|
|
757
|
-
iconColor: "#577696"
|
|
758
|
-
},
|
|
759
|
-
{
|
|
760
|
-
isModule: false,
|
|
761
|
-
rule: "Operational",
|
|
762
|
-
module: "Operational",
|
|
763
|
-
type: "link",
|
|
764
|
-
title: "Painel de Reserva",
|
|
765
|
-
isVisible: "all",
|
|
766
|
-
routeName: "reservationPanel",
|
|
767
|
-
icon: "fa-solid fa-table-pivot",
|
|
768
|
-
iconColor: "#577696"
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
|
-
isModule: false,
|
|
772
|
-
rule: "Operational",
|
|
773
|
-
module: "Operational",
|
|
774
|
-
type: "group",
|
|
775
|
-
isVisible: "all",
|
|
776
|
-
groupName: "Outros",
|
|
777
|
-
icon: "fas fa-user-lock",
|
|
778
|
-
},
|
|
779
|
-
{
|
|
780
|
-
isModule: false,
|
|
781
|
-
rule: "Operational",
|
|
782
|
-
module: "Operational",
|
|
783
|
-
type: "link",
|
|
784
|
-
title: "Relatório",
|
|
785
|
-
isVisible: "all",
|
|
786
|
-
routeName: "reportOperational",
|
|
787
|
-
icon: "fa-solid fa-file-dashed-line",
|
|
788
|
-
iconColor: "#94AA2A"
|
|
789
|
-
},
|
|
790
|
-
{
|
|
791
|
-
order: 12,
|
|
792
|
-
isModule: true,
|
|
793
|
-
rule: "PDV",
|
|
794
|
-
module: "PDV",
|
|
795
|
-
isVisible: "all",
|
|
796
|
-
title: "PDV",
|
|
797
|
-
icon: "fa-light fa-display",
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
isModule: false,
|
|
801
|
-
rule: "PDV",
|
|
802
|
-
module: "PDV",
|
|
803
|
-
type: "group",
|
|
804
|
-
isVisible: "all",
|
|
805
|
-
groupName: "PDV",
|
|
806
|
-
icon: "fas fa-user-lock",
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
isModule: false,
|
|
810
|
-
rule: "PDV",
|
|
811
|
-
module: "PDV",
|
|
812
|
-
type: "link",
|
|
813
|
-
title: "Locação",
|
|
814
|
-
isVisible: "all",
|
|
815
|
-
routeName: "pdvRentSelectOption",
|
|
816
|
-
icon: "fas fa-exchange-alt",
|
|
817
|
-
iconColor: "#577696"
|
|
818
|
-
},
|
|
819
|
-
/* {
|
|
820
|
-
isModule: false,
|
|
821
|
-
rule: "PDV",
|
|
822
|
-
module: "PDV",
|
|
823
|
-
type: "group",
|
|
824
|
-
groupName: "Outros",
|
|
825
|
-
icon: "fas fa-user-lock",
|
|
826
|
-
},
|
|
827
|
-
{
|
|
828
|
-
isModule: false,
|
|
829
|
-
rule: "PDV",
|
|
830
|
-
module: "PDV",
|
|
831
|
-
type: "link",
|
|
832
|
-
title: "Relatório",
|
|
833
|
-
routeName: "reportOperational",
|
|
834
|
-
icon: "fa-solid fa-file-dashed-line",
|
|
835
|
-
iconColor: "#94AA2A"
|
|
836
|
-
},*/
|
|
837
|
-
{
|
|
838
|
-
order: 13,
|
|
839
|
-
isModule: true,
|
|
840
|
-
rule: "HumanResources",
|
|
841
|
-
module: "HumanResources",
|
|
842
|
-
isVisible: "all",
|
|
843
|
-
title: "RH",
|
|
844
|
-
icon: "fa-light fa-user-chart",
|
|
845
|
-
},
|
|
846
|
-
{
|
|
847
|
-
isModule: false,
|
|
848
|
-
rule: "HumanResources",
|
|
849
|
-
module: "HumanResources",
|
|
850
|
-
type: "group",
|
|
851
|
-
isVisible: "all",
|
|
852
|
-
groupName: "Recursos Humanos",
|
|
853
|
-
icon: "fas fa-user-lock",
|
|
854
|
-
},
|
|
855
|
-
{
|
|
856
|
-
isModule: false,
|
|
857
|
-
rule: "HumanResources",
|
|
858
|
-
module: "HumanResources",
|
|
859
|
-
type: "link",
|
|
860
|
-
title: "Colaborador",
|
|
861
|
-
isVisible: "all",
|
|
862
|
-
routeName: "collaboratorList",
|
|
863
|
-
icon: "fas fa-users-class",
|
|
864
|
-
iconColor: "#577696"
|
|
865
|
-
},
|
|
866
|
-
]
|
|
867
|
-
}
|
|
868
|
-
}
|