mirror of
https://github.com/Karaka-Management/oms-Sales.git
synced 2026-02-07 15:58:41 +00:00
update
This commit is contained in:
parent
97249334af
commit
a252a271a4
36
README.md
36
README.md
|
|
@ -1 +1,35 @@
|
|||
# Sales #
|
||||
# Sales
|
||||
|
||||
## Analysis
|
||||
|
||||
Filters:
|
||||
|
||||
* Localization: Global/region/country
|
||||
* Item: All/Segment/Group/Type/Item
|
||||
* Customer: All/Segment/Group/Type/Customer
|
||||
* Steps: Annually/Quarterly/Monthly/Daily
|
||||
* Timeframe: YTD/Total/Isolated
|
||||
* Time:
|
||||
|
||||
Results:
|
||||
|
||||
Always with table below chart
|
||||
|
||||
* Top 25 items
|
||||
* Lorenze curve of items + gini coefficient
|
||||
* Top 25 customers
|
||||
* Lorenze curve of customers + gini coefficient
|
||||
|
||||
* Item: Segment/Group/Type bar chart
|
||||
* Customer: Segment/Group/Type bar chart
|
||||
|
||||
* Bar chart + bubble chart for countries
|
||||
* Region doughnut chart
|
||||
* Region map graphic with circles indicating sales volume
|
||||
|
||||
Analysis:
|
||||
|
||||
1. Product cluster based on purchased together
|
||||
2. Customers potentially interested in product X
|
||||
3. Lowest selling items
|
||||
4.
|
||||
|
|
@ -71,14 +71,12 @@ final class Autoloader
|
|||
*
|
||||
* @return void
|
||||
*
|
||||
* @throws AutoloadException Throws this exception if the class to autoload doesn't exist. This could also be related to a wrong namespace/file path correlation.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public static function defaultAutoloader(string $class) : void
|
||||
{
|
||||
$class = \ltrim($class, '\\');
|
||||
$class = \str_replace(['_', '\\'], '/', $class);
|
||||
$class = \strtr($class, '_\\', '//');
|
||||
|
||||
foreach (self::$paths as $path) {
|
||||
$file = $path . $class . '.php';
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user