mirror of
https://github.com/Karaka-Management/oms-SalesAnalysis.git
synced 2026-01-11 11:28:41 +00:00
72 lines
2.2 KiB
PHP
Executable File
72 lines
2.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\SalesAnalysis
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['SalesAnalysis' => [
|
|
'ItemAttribute' => 'Item Attribute',
|
|
'ClientAttribute' => 'Client Attribute',
|
|
'Months' => 'Months',
|
|
'Year' => 'Year',
|
|
'Month' => 'Month',
|
|
'All' => 'All',
|
|
'New' => 'New',
|
|
'Lost' => 'Lost',
|
|
'Continent' => 'Continent',
|
|
'SalesPY' => 'Sales PY',
|
|
'SalesA' => 'Sales A',
|
|
'ProfitPY' => 'Profit PY',
|
|
'ProfitA' => 'Profit A',
|
|
'DiffPY' => 'Δ PY',
|
|
'Actual' => 'Actual',
|
|
'Segment' => 'Segment',
|
|
'Section' => 'Section',
|
|
'Group' => 'Group',
|
|
'Region' => 'Region',
|
|
'Filter' => 'Filter',
|
|
'Country' => 'Country',
|
|
'Category' => 'Category',
|
|
'General' => 'General',
|
|
'MTD' => 'MTD',
|
|
'YTD' => 'YTD',
|
|
'GrossProfit' => 'Gross Profit',
|
|
'SalesProfit' => 'Sales / Profit',
|
|
'monthly' => 'monthly',
|
|
'annually' => 'annually',
|
|
'Profit' => 'Profit',
|
|
'Start' => 'Start',
|
|
'End' => 'End',
|
|
'Sales' => 'Sales',
|
|
'Client' => 'Client',
|
|
'Clients' => 'Clients',
|
|
'World' => 'World',
|
|
'DomesticExport' => 'Domestic & Export',
|
|
'Comparison' => 'Comparison',
|
|
'Continents' => 'Continents',
|
|
'Data' => 'Data',
|
|
'Domestic' => 'Domestic',
|
|
'Export' => 'Export',
|
|
'Current' => 'Current',
|
|
'Analyze' => 'Analyze',
|
|
'Regions' => 'Regions',
|
|
'Total' => 'Total',
|
|
'Type' => 'Type',
|
|
'SalesGroup' => 'Sales Group',
|
|
'ProductGroup' => 'Product Group',
|
|
'Other' => 'Other',
|
|
'Europe' => 'Europe',
|
|
'Asia' => 'Asia',
|
|
'America' => 'America',
|
|
'Oceania' => 'Oceania',
|
|
'Africa' => 'Africa',
|
|
]];
|