All checks were successful
farmcontrol/farmcontrol-ui/pipeline/head This commit looks good
- Introduced new components for managing Payment Policies and Fulfillment Policies, enhancing the dashboard's functionality for financial management. - Added corresponding SVG icons for Payment Policy, Fulfillment Policy, and Return Policy to improve visual representation. - Updated App.css with new styles for file gallery previews, ensuring a cohesive layout and user experience across the dashboard. - Implemented new object forms and tables for Payment Policies, allowing for better data handling and user interaction.
36 lines
712 B
JavaScript
36 lines
712 B
JavaScript
const financeSidebarItems = [
|
|
{
|
|
key: 'overview',
|
|
label: 'Overview',
|
|
iconKey: 'finance',
|
|
path: '/dashboard/finance/overview'
|
|
},
|
|
{ type: 'divider' },
|
|
{
|
|
key: 'invoices',
|
|
label: 'Invoices',
|
|
iconKey: 'invoice',
|
|
path: '/dashboard/finance/invoices'
|
|
},
|
|
{
|
|
key: 'payments',
|
|
label: 'Payments',
|
|
iconKey: 'payment',
|
|
path: '/dashboard/finance/payments'
|
|
},
|
|
{
|
|
key: 'paymentpolicies',
|
|
label: 'Payment Policies',
|
|
iconKey: 'paymentPolicy',
|
|
path: '/dashboard/finance/paymentpolicies'
|
|
},
|
|
{
|
|
key: 'taxRecords',
|
|
iconKey: 'taxRecord',
|
|
label: 'Tax Records',
|
|
path: '/dashboard/finance/taxrecords'
|
|
}
|
|
]
|
|
|
|
export default financeSidebarItems
|