2022-05-29 12:32:21 +00:00
|
|
|
import { ModelNameEnum } from 'models/types';
|
2022-04-28 06:34:55 +00:00
|
|
|
import ChartOfAccounts from 'src/pages/ChartOfAccounts.vue';
|
2022-04-20 06:38:47 +00:00
|
|
|
import Dashboard from 'src/pages/Dashboard/Dashboard.vue';
|
2022-05-05 10:44:26 +00:00
|
|
|
import DataImport from 'src/pages/DataImport.vue';
|
2022-11-14 08:30:11 +00:00
|
|
|
import GeneralForm from 'src/pages/GeneralForm.vue';
|
2022-04-25 10:37:25 +00:00
|
|
|
import GetStarted from 'src/pages/GetStarted.vue';
|
2022-05-01 04:45:47 +00:00
|
|
|
import InvoiceForm from 'src/pages/InvoiceForm.vue';
|
2022-04-29 19:04:08 +00:00
|
|
|
import JournalEntryForm from 'src/pages/JournalEntryForm.vue';
|
2022-04-27 12:02:43 +00:00
|
|
|
import ListView from 'src/pages/ListView/ListView.vue';
|
2022-05-02 05:31:11 +00:00
|
|
|
import PrintView from 'src/pages/PrintView/PrintView.vue';
|
2022-04-27 12:02:43 +00:00
|
|
|
import QuickEditForm from 'src/pages/QuickEditForm.vue';
|
2022-05-12 14:59:56 +00:00
|
|
|
import Report from 'src/pages/Report.vue';
|
2022-04-26 10:12:33 +00:00
|
|
|
import Settings from 'src/pages/Settings/Settings.vue';
|
2022-04-20 10:41:27 +00:00
|
|
|
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router';
|
2018-06-27 14:36:42 +00:00
|
|
|
|
2022-11-14 08:30:11 +00:00
|
|
|
function getGeneralFormItems(): RouteRecordRaw[] {
|
|
|
|
return [ModelNameEnum.Shipment, ModelNameEnum.PurchaseReceipt].map(
|
|
|
|
(schemaName) => {
|
|
|
|
return {
|
|
|
|
path: `/edit/${schemaName}/:name`,
|
|
|
|
name: `${schemaName}Form`,
|
|
|
|
components: {
|
|
|
|
default: GeneralForm,
|
|
|
|
edit: QuickEditForm,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
default: (route) => {
|
|
|
|
route.params.schemaName = schemaName;
|
|
|
|
return {
|
|
|
|
schemaName,
|
|
|
|
name: route.params.name,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
edit: (route) => route.query,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-04-20 10:41:27 +00:00
|
|
|
const routes: RouteRecordRaw[] = [
|
2019-07-25 09:50:48 +00:00
|
|
|
{
|
|
|
|
path: '/',
|
2021-11-24 09:08:13 +00:00
|
|
|
component: Dashboard,
|
2019-07-25 09:50:48 +00:00
|
|
|
},
|
2019-12-21 14:46:50 +00:00
|
|
|
{
|
|
|
|
path: '/get-started',
|
2021-11-24 09:08:13 +00:00
|
|
|
component: GetStarted,
|
2019-12-21 14:46:50 +00:00
|
|
|
},
|
2022-11-14 08:30:11 +00:00
|
|
|
...getGeneralFormItems(),
|
2019-11-19 19:10:01 +00:00
|
|
|
{
|
|
|
|
path: '/edit/JournalEntry/:name',
|
|
|
|
name: 'JournalEntryForm',
|
|
|
|
components: {
|
|
|
|
default: JournalEntryForm,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: QuickEditForm,
|
2019-11-19 19:10:01 +00:00
|
|
|
},
|
|
|
|
props: {
|
2021-11-24 09:08:13 +00:00
|
|
|
default: (route) => {
|
2019-12-21 14:46:50 +00:00
|
|
|
// for sidebar item active state
|
2022-04-29 19:04:08 +00:00
|
|
|
route.params.schemaName = 'JournalEntry';
|
2019-12-21 14:46:50 +00:00
|
|
|
return {
|
2022-05-01 04:45:47 +00:00
|
|
|
schemaName: 'JournalEntry',
|
2021-11-24 09:08:13 +00:00
|
|
|
name: route.params.name,
|
2019-12-21 14:46:50 +00:00
|
|
|
};
|
|
|
|
},
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: (route) => route.query,
|
|
|
|
},
|
2019-11-19 19:10:01 +00:00
|
|
|
},
|
2018-06-27 14:36:42 +00:00
|
|
|
{
|
2022-05-01 04:45:47 +00:00
|
|
|
path: '/edit/:schemaName/:name',
|
2019-10-11 09:55:50 +00:00
|
|
|
name: 'InvoiceForm',
|
|
|
|
components: {
|
|
|
|
default: InvoiceForm,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: QuickEditForm,
|
2019-10-11 09:55:50 +00:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
default: true,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: (route) => route.query,
|
|
|
|
},
|
2019-10-11 09:55:50 +00:00
|
|
|
},
|
|
|
|
{
|
2022-05-02 05:31:11 +00:00
|
|
|
path: '/list/:schemaName/:fieldname?/:value?/:pageTitle?',
|
2018-10-10 18:51:03 +00:00
|
|
|
name: 'ListView',
|
2019-10-11 09:55:50 +00:00
|
|
|
components: {
|
|
|
|
default: ListView,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: QuickEditForm,
|
2019-10-04 20:18:10 +00:00
|
|
|
},
|
2019-10-11 09:55:50 +00:00
|
|
|
props: {
|
2021-11-24 09:08:13 +00:00
|
|
|
default: (route) => {
|
2022-05-02 05:31:11 +00:00
|
|
|
const { schemaName, fieldname, value, pageTitle } = route.params;
|
2022-04-20 10:41:27 +00:00
|
|
|
let { filters } = route.params;
|
|
|
|
|
2022-03-10 06:36:37 +00:00
|
|
|
if (filters === undefined && fieldname && value) {
|
2022-04-20 10:41:27 +00:00
|
|
|
// @ts-ignore
|
|
|
|
filters = { [fieldname as string]: value };
|
2022-03-10 06:36:37 +00:00
|
|
|
}
|
|
|
|
|
2019-10-11 09:55:50 +00:00
|
|
|
return {
|
2022-04-27 12:02:43 +00:00
|
|
|
schemaName,
|
2021-11-24 09:08:13 +00:00
|
|
|
filters,
|
2022-05-02 05:31:11 +00:00
|
|
|
pageTitle: pageTitle ?? '',
|
2019-10-11 09:55:50 +00:00
|
|
|
};
|
|
|
|
},
|
2022-04-28 06:34:55 +00:00
|
|
|
edit: (route) => {
|
|
|
|
return route.query;
|
|
|
|
},
|
2021-11-24 09:08:13 +00:00
|
|
|
},
|
2018-06-27 14:36:42 +00:00
|
|
|
},
|
2018-10-15 12:05:01 +00:00
|
|
|
{
|
2022-05-01 04:45:47 +00:00
|
|
|
path: '/print/:schemaName/:name',
|
2018-10-15 12:05:01 +00:00
|
|
|
name: 'PrintView',
|
|
|
|
component: PrintView,
|
2021-11-24 09:08:13 +00:00
|
|
|
props: true,
|
2018-10-22 18:10:22 +00:00
|
|
|
},
|
2018-06-27 14:36:42 +00:00
|
|
|
{
|
2022-05-18 07:04:33 +00:00
|
|
|
path: '/report/:reportClassName',
|
2018-06-27 14:36:42 +00:00
|
|
|
name: 'Report',
|
|
|
|
component: Report,
|
2021-11-24 09:08:13 +00:00
|
|
|
props: true,
|
2018-10-10 10:32:56 +00:00
|
|
|
},
|
2019-02-18 05:42:04 +00:00
|
|
|
{
|
2019-12-23 08:26:41 +00:00
|
|
|
path: '/chart-of-accounts',
|
2019-02-18 05:42:04 +00:00
|
|
|
name: 'Chart Of Accounts',
|
2019-10-13 21:18:18 +00:00
|
|
|
components: {
|
|
|
|
default: ChartOfAccounts,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: QuickEditForm,
|
2019-10-13 21:18:18 +00:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
default: true,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: (route) => route.query,
|
|
|
|
},
|
|
|
|
},
|
2022-02-21 10:56:57 +00:00
|
|
|
{
|
2022-05-01 11:34:13 +00:00
|
|
|
path: '/data-import',
|
2022-02-21 10:56:57 +00:00
|
|
|
name: 'Data Import',
|
|
|
|
component: DataImport,
|
|
|
|
},
|
2022-05-05 10:44:26 +00:00
|
|
|
{
|
2021-11-24 09:08:13 +00:00
|
|
|
path: '/settings',
|
|
|
|
name: 'Settings',
|
2022-10-12 08:35:18 +00:00
|
|
|
components: {
|
|
|
|
default: Settings,
|
|
|
|
edit: QuickEditForm,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
default: true,
|
|
|
|
edit: (route) => route.query,
|
|
|
|
},
|
2021-11-24 09:08:13 +00:00
|
|
|
},
|
2018-10-10 18:51:03 +00:00
|
|
|
];
|
2018-06-27 14:36:42 +00:00
|
|
|
|
2022-05-29 12:32:21 +00:00
|
|
|
export function getEntryRoute(schemaName: string, name: string) {
|
|
|
|
if (
|
|
|
|
[
|
|
|
|
ModelNameEnum.SalesInvoice,
|
|
|
|
ModelNameEnum.PurchaseInvoice,
|
|
|
|
ModelNameEnum.JournalEntry,
|
2022-11-30 13:35:49 +00:00
|
|
|
ModelNameEnum.Shipment,
|
|
|
|
ModelNameEnum.PurchaseReceipt,
|
2022-05-29 12:32:21 +00:00
|
|
|
].includes(schemaName as ModelNameEnum)
|
|
|
|
) {
|
|
|
|
return `/edit/${schemaName}/${name}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return `/list/${schemaName}?edit=1&schemaName=${schemaName}&name=${name}`;
|
|
|
|
}
|
|
|
|
|
2022-04-20 06:38:47 +00:00
|
|
|
const router = createRouter({ routes, history: createWebHistory() });
|
2019-10-03 13:46:12 +00:00
|
|
|
|
|
|
|
export default router;
|