import React from 'react'; import { FormattedMessage as T } from 'components'; export const financialReportMenus = [ { sectionTitle: , reports: [ { title: , desc: ( ), link: '/financial-reports/balance-sheet', }, { title: , desc: ( ), link: '/financial-reports/trial-balance-sheet', }, { title: , desc: , link: '/financial-reports/profit-loss-sheet', }, { title: , desc: ( ), link: '/financial-reports/cash-flow', }, { title: , desc: , link: '/financial-reports/journal-sheet', }, { title: , desc: , link: '/financial-reports/general-ledger', }, { title: , desc: ( ), link: '/financial-reports/receivable-aging-summary', }, { title: , desc: , link: '/financial-reports/payable-aging-summary', }, ], }, ]; export const SalesAndPurchasesReportMenus = [ { sectionTitle: , reports: [ { title: , desc: ( ), link: '/financial-reports/purchases-by-items', }, { title: , desc: ( ), link: '/financial-reports/sales-by-items', }, { title: , desc: ( ), link: '/financial-reports/inventory-valuation', }, { title: , desc: ( ), link: '/financial-reports/customers-balance-summary', }, { title: , desc: ( ), link: '/financial-reports/vendors-balance-summary', }, { title: , desc: ( ), link: '/financial-reports/transactions-by-customers', }, { title: , desc: ( ), link: '/financial-reports/transactions-by-vendors', }, { title: , desc: ( ), link: '/financial-reports/inventory-item-details', }, ], }, ];