44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
'name' => 'Accounting',
|
|
'module_version' => '0.9',
|
|
'pid' => 16,
|
|
'features' => [
|
|
'financial_posting_contract' => true,
|
|
'cheque_lifecycle' => true,
|
|
'installments' => true,
|
|
'depreciation_posting' => true,
|
|
'period_close' => true,
|
|
'bank_reconciliation' => true,
|
|
'consolidation' => true,
|
|
'exchange_rate_sync' => true,
|
|
'fx_api' => true,
|
|
'dual_fx_consolidation' => true,
|
|
'payroll_tax_bridge' => true,
|
|
'journal_approval_per_business' => true,
|
|
'analytical_dimensions' => true,
|
|
'profit_and_loss_report' => true,
|
|
'cash_flow_report' => true,
|
|
'health_monitoring' => true,
|
|
'deferred_documents' => true,
|
|
'payroll_gl_posting' => true,
|
|
'unified_warehousing_menu' => env('MENU_UNIFIED_WAREHOUSING', true),
|
|
],
|
|
'rollout' => [
|
|
'phase' => 'holding_v1',
|
|
'strict_period_lock' => true,
|
|
'idempotent_posting' => true,
|
|
'journal_approval_required' => false,
|
|
'location_default_mapping_sync' => true,
|
|
'unified_operational_posting' => true,
|
|
],
|
|
'fx_api' => [
|
|
'default_provider' => 'open_er_api',
|
|
'timeout' => 15,
|
|
],
|
|
'installments' => [
|
|
'default_penalty_rate' => 2.0,
|
|
],
|
|
];
|