EPIC-005 - Financial Module: - Add AccountMapping entity for GL account configuration - Create GLPostingService for automatic journal entries - Integrate GL posting with invoice validation - Fix tax calculation in invoice lines EPIC-006 - Inventory Automation: - Integrate FIFO valuation with pickings - Create ReorderAlertsService for stock monitoring - Add lot validation for tracked products - Integrate valuation with inventory adjustments EPIC-007 - CRM Improvements: - Create ActivitiesService for activity management - Create ForecastingService for pipeline analytics - Add win/loss reporting and user performance metrics EPIC-008 - Project Billing: - Create BillingService with billing rate management - Add getUnbilledTimesheets and createInvoiceFromTimesheets - Support grouping options for invoice generation EPIC-009 - HR-Projects Integration: - Create HRIntegrationService for employee-user linking - Add employee cost rate management - Implement project profitability calculations Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
390 B
TypeScript
10 lines
390 B
TypeScript
export * from './accounts.service.js';
|
|
export * from './journals.service.js';
|
|
export * from './journal-entries.service.js';
|
|
export * from './invoices.service.js';
|
|
export * from './payments.service.js';
|
|
export * from './taxes.service.js';
|
|
export * from './gl-posting.service.js';
|
|
export * from './financial.controller.js';
|
|
export { default as financialRoutes } from './financial.routes.js';
|