|
@@ -0,0 +1,67 @@
|
|
|
|
|
+export default [
|
|
|
|
|
+ {
|
|
|
|
|
+ path: "/financial/treasury",
|
|
|
|
|
+ name: "TreasuryPage",
|
|
|
|
|
+ component: () => import("pages/financial/TreasuryPage.vue"),
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: { value: "Tesouraria", translate: false },
|
|
|
|
|
+ requireAuth: true,
|
|
|
|
|
+ breadcrumbs: [
|
|
|
|
|
+ { name: "DashboardPage", title: "Dashboard" },
|
|
|
|
|
+ { name: "TreasuryPage", title: "Tesouraria" },
|
|
|
|
|
+ ],
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: "/financial/accounts-payable",
|
|
|
|
|
+ name: "AccountsPayablePage",
|
|
|
|
|
+ component: () => import("pages/financial/AccountsPayablePage.vue"),
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: { value: "Contas a Pagar", translate: false },
|
|
|
|
|
+ requireAuth: true,
|
|
|
|
|
+ breadcrumbs: [
|
|
|
|
|
+ { name: "DashboardPage", title: "Dashboard" },
|
|
|
|
|
+ { name: "AccountsPayablePage", title: "Contas a Pagar" },
|
|
|
|
|
+ ],
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: "/financial/accounts-receivable",
|
|
|
|
|
+ name: "AccountsReceivablePage",
|
|
|
|
|
+ component: () => import("pages/financial/AccountsReceivablePage.vue"),
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: { value: "Contas a Receber", translate: false },
|
|
|
|
|
+ requireAuth: true,
|
|
|
|
|
+ breadcrumbs: [
|
|
|
|
|
+ { name: "DashboardPage", title: "Dashboard" },
|
|
|
|
|
+ { name: "AccountsReceivablePage", title: "Contas a Receber" },
|
|
|
|
|
+ ],
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: "/financial/chart-of-accounts",
|
|
|
|
|
+ name: "ChartOfAccountsPage",
|
|
|
|
|
+ component: () => import("pages/financial/ChartOfAccountsPage.vue"),
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: { value: "Plano de Contas", translate: false },
|
|
|
|
|
+ requireAuth: true,
|
|
|
|
|
+ breadcrumbs: [
|
|
|
|
|
+ { name: "DashboardPage", title: "Dashboard" },
|
|
|
|
|
+ { name: "ChartOfAccountsPage", title: "Plano de Contas" },
|
|
|
|
|
+ ],
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: "/financial/invoice-issuance",
|
|
|
|
|
+ name: "InvoiceIssuancePage",
|
|
|
|
|
+ component: () => import("pages/financial/InvoiceIssuancePage.vue"),
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: { value: "Emissão de Notas", translate: false },
|
|
|
|
|
+ requireAuth: true,
|
|
|
|
|
+ breadcrumbs: [
|
|
|
|
|
+ { name: "DashboardPage", title: "Dashboard" },
|
|
|
|
|
+ { name: "InvoiceIssuancePage", title: "Emissão de Notas" },
|
|
|
|
|
+ ],
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
+];
|