2
0
mirror of https://github.com/frappe/books.git synced 2024-11-15 17:57:08 +00:00
books/src/router.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

144 lines
3.2 KiB
JavaScript
Raw Normal View History

2022-03-16 11:42:06 +00:00
import ChartOfAccounts from '@/pages/ChartOfAccounts.vue';
import Dashboard from '@/pages/Dashboard/Dashboard.vue';
import DataImport from '@/pages/DataImport.vue';
import GetStarted from '@/pages/GetStarted.vue';
import InvoiceForm from '@/pages/InvoiceForm.vue';
import JournalEntryForm from '@/pages/JournalEntryForm.vue';
import ListView from '@/pages/ListView/ListView.vue';
import PrintView from '@/pages/PrintView/PrintView.vue';
import QuickEditForm from '@/pages/QuickEditForm.vue';
import Report from '@/pages/Report.vue';
import Settings from '@/pages/Settings/Settings.vue';
import { createRouter, createWebHistory } from 'vue-router';
import telemetry from '../frappe/telemetry/telemetry';
import { NounEnum, Verb } from '../frappe/telemetry/types';
2018-06-27 14:36:42 +00:00
const routes = [
2019-07-25 09:50:48 +00:00
{
path: '/',
component: Dashboard,
2019-07-25 09:50:48 +00:00
},
{
path: '/get-started',
component: GetStarted,
},
2019-11-19 19:10:01 +00:00
{
path: '/edit/JournalEntry/:name',
name: 'JournalEntryForm',
components: {
default: JournalEntryForm,
edit: QuickEditForm,
2019-11-19 19:10:01 +00:00
},
props: {
default: (route) => {
// for sidebar item active state
route.params.doctype = 'JournalEntry';
return {
doctype: 'JournalEntry',
name: route.params.name,
};
},
edit: (route) => route.query,
},
2019-11-19 19:10:01 +00:00
},
2018-06-27 14:36:42 +00:00
{
2019-10-13 21:56:20 +00:00
path: '/edit/:doctype/:name',
name: 'InvoiceForm',
components: {
default: InvoiceForm,
edit: QuickEditForm,
},
props: {
default: true,
edit: (route) => route.query,
},
},
{
2022-03-10 06:36:37 +00:00
path: '/list/:doctype/:fieldname?/:value?',
name: 'ListView',
components: {
default: ListView,
edit: QuickEditForm,
2019-10-04 20:18:10 +00:00
},
props: {
default: (route) => {
2022-03-10 06:36:37 +00:00
let { doctype, filters, fieldname, value } = route.params;
if (filters === undefined && fieldname && value) {
filters = { [fieldname]: value };
}
return {
doctype,
filters,
};
},
edit: (route) => route.query,
},
2018-06-27 14:36:42 +00:00
},
2018-10-15 12:05:01 +00:00
{
path: '/print/:doctype/:name',
name: 'PrintView',
component: PrintView,
props: true,
2018-10-22 18:10:22 +00:00
},
2018-06-27 14:36:42 +00:00
{
path: '/report/:reportName',
name: 'Report',
component: Report,
props: true,
2018-10-10 10:32:56 +00:00
},
Winter Sprint: Work (#79) * init() * Country-wise Chart of accounts on setup * Add a sample invoice template * Some error fixes * [fix] missing COA - move importCOA.js from models/doctype/account to models/doctype/Account * All Account initial balance zero * setup Bank Reconciliation * New chart of accounts tree component * GST taxes added. initialized gst reports. * [chore] add *.db to .gitignore * [fix] importCOA path error * fix error + bank reconciliation fields * [feat] add gst taxes * GST report initialized * GST report finalized * GST report finalized * Complete min. reconciliation * [feat] auto select tax in invoice based on states * [chore] fix merge changes * Fix date issue - Make Payment * Add invoice templates and invoice customizer panel * Restructure invoice vue components * update file with fiscal year * Fix issues in invoice designs * Add company settings. Dynamic addresses in invoice * Move invoice styles to different file and add separate components for addresses * [feat] add export-filtered-data-to-csv to reports * [feat] add Export Wizard component for customizing export * Fix invoice customizer position while scrolling. Fix address displayed as undefined in invoice if not found in db * [chore] change markup for select all chkbox * Setup config as doctype * GSTIN bug fix * Add custom google fonts * Add Send email footer * Fix DateTime * Complete Merge + Resolve * Complete Merge + Resolve * [chore] change layout of Export Wizard * [enh] optimize checkNoneSelected, style export modal footer divider * Add Tax to SideBar * Remove extra logs * [fix] db name section in sidebar showing absolute path instead of dbname in windows i.e. platform=win32 * Country-wise Chart of accounts on setup (#78) * Country-wise Chart of accounts on setup * Some error fixes * All Account initial balance zero * Update README.md - updated installation instructions with more detail * Merge #79 Winter Sprint: Work https://github.com/frappe/accounting/pull/79 * Revert "Merge #79 Winter Sprint: Work" This reverts commit 171511666817caa430af672791c8d452e3b4b680.
2019-02-18 05:42:04 +00:00
{
2019-12-23 08:26:41 +00:00
path: '/chart-of-accounts',
Winter Sprint: Work (#79) * init() * Country-wise Chart of accounts on setup * Add a sample invoice template * Some error fixes * [fix] missing COA - move importCOA.js from models/doctype/account to models/doctype/Account * All Account initial balance zero * setup Bank Reconciliation * New chart of accounts tree component * GST taxes added. initialized gst reports. * [chore] add *.db to .gitignore * [fix] importCOA path error * fix error + bank reconciliation fields * [feat] add gst taxes * GST report initialized * GST report finalized * GST report finalized * Complete min. reconciliation * [feat] auto select tax in invoice based on states * [chore] fix merge changes * Fix date issue - Make Payment * Add invoice templates and invoice customizer panel * Restructure invoice vue components * update file with fiscal year * Fix issues in invoice designs * Add company settings. Dynamic addresses in invoice * Move invoice styles to different file and add separate components for addresses * [feat] add export-filtered-data-to-csv to reports * [feat] add Export Wizard component for customizing export * Fix invoice customizer position while scrolling. Fix address displayed as undefined in invoice if not found in db * [chore] change markup for select all chkbox * Setup config as doctype * GSTIN bug fix * Add custom google fonts * Add Send email footer * Fix DateTime * Complete Merge + Resolve * Complete Merge + Resolve * [chore] change layout of Export Wizard * [enh] optimize checkNoneSelected, style export modal footer divider * Add Tax to SideBar * Remove extra logs * [fix] db name section in sidebar showing absolute path instead of dbname in windows i.e. platform=win32 * Country-wise Chart of accounts on setup (#78) * Country-wise Chart of accounts on setup * Some error fixes * All Account initial balance zero * Update README.md - updated installation instructions with more detail * Merge #79 Winter Sprint: Work https://github.com/frappe/accounting/pull/79 * Revert "Merge #79 Winter Sprint: Work" This reverts commit 171511666817caa430af672791c8d452e3b4b680.
2019-02-18 05:42:04 +00:00
name: 'Chart Of Accounts',
2019-10-13 21:18:18 +00:00
components: {
default: ChartOfAccounts,
edit: QuickEditForm,
2019-10-13 21:18:18 +00:00
},
props: {
default: true,
edit: (route) => route.query,
},
},
2022-02-21 10:56:57 +00:00
{
path: '/data_import',
name: 'Data Import',
component: DataImport,
},
{
path: '/settings',
name: 'Settings',
component: Settings,
props: true,
},
];
2018-06-27 14:36:42 +00:00
let router = createRouter({ routes, history: createWebHistory() });
function removeDetails(path) {
if (!path) {
return path;
}
const match = path.match(/edit=1/);
if (!match) {
return path;
}
return path.slice(0, match.index + 4);
}
router.afterEach((to, from) => {
const more = {
from: removeDetails(from.fullPath),
to: removeDetails(to.fullPath),
};
2022-03-09 10:48:26 +00:00
telemetry.log(Verb.Navigated, NounEnum.Route, more);
});
if (process.env.NODE_ENV === 'development') {
2019-11-19 19:10:01 +00:00
window.router = router;
}
export default router;