There are some reports you can customize by changing their paramters:

You will find a folder called COMPANY_ID in the reports folder of the web server, normally C:\Program Files (x86)\edinn\edinnM2\Server\websrv\Apache\htdocs\edinnM2\rep\, with the reports you can customize:

    1. Duplicate this folder and rename te copy with the company id
    2. Remove the readme.txt of the copy
    3. Make the changes in the reports

1. Hourly Board

This is a sample of repHourlyBoard.php script.

<?php

$obj->LngPlanification = 1;

$obj->IntRatiosType = 1;

$obj->LngRatiosTypeTarget = 1;

$obj->LngBad = 1;

$obj->LngGood = 0;

$obj->LngDifference = 1;  

?>

You can contomize hourly board by changing the parameters:

LngPlanification: Indicates if the target are calculated using planned time usages (1) or actual ones (0).

IntRatiosType: Indicates if shown ratios are based on OEE (0) or PE (1).

LngRatiosTypeTarget: Indicates if the shown target is green target (0) or yellow target (1).

LngBad: Indicates if the bad units (scrap + rework) are shown.

LngGood: Indicates if the good units are shown.

LngDifference: Indicates if the differences between good units and target units are shown.

2. Production Path

This is the sample of repProductionPath.php script.

<?php

$obj->BolOEE_target_line = 0;

$obj->BolOEE_green_target_line = 0;

$obj->BolOEE_yellow_target_line = 0;

$obj->BolPE_target_line = 0;

$obj->BolPE_green_target_line = 1;

$obj->BolPE_yellow_target_line = 1;

$obj->BolSchedule = 1;

$obj->BolStatuses_text = 0;

$obj->BolResults_text = 1;

$obj->BolSchedule_text = 0;

$obj->BolDot_in_lines = 0;

$obj->BolPossible_production_line = 0;

$obj->BolRestartOnResultChange = 0;

$obj->SngCanvasWidthReduction = 0; // '0.05 'recommended

$obj->SngCanvasHeightReduction = 0; // '0.07 'recommended

$obj->BolProductionAxisOnTheRight = 0; // 'True

?>

You can contomize production path by changing the parameters:

BolOEE_target_line: 1 To show OEE 100% line, 0 for not to show it.

BolOEE_green_target_line: 1 To show OEE green target line, 0 for not to show it.

BolOEE_yellow_target_line: 1 To show OEE yellow target line, 0 for not to show it.

BolPE_target_line: 1 To show PE 100% line, 0 for not to show it.

BolPE_green_target_line: 1 To show PE green target line, 0 for not to show it.

BolPE_yellow_target_line: 1 To show PE yellow target line, 0 for not to show it.

BolSchedule: 1 To show planned time usages line, 0 to actual time usages.

BolStatuses_text: 1 To show the statuses code and description, 0 for not to show it.

BolResults_text: 1 To show the results code and description, 0 for not to show it.

BolSchedule_text: 1 To show active order comment field (if fields contains ":" character, the comment will be shown in two lines)

BolDot_in_lines: 1 To show production dost in the lines, 0 for not to show it.

BolPossible_production_line: 1 To show possible prodution blue line, 0 for not to show it.

BolRestartOnResultChange: 1 To set the Y origin of path o zero every result change, 0 for not to do it.

SngCanvasWidthReduction: Percentage of margin used to write Y scales (left and right).

SngCanvasHeightReduction: Percentage of margin used to write X scale (for time).

BolProductionAxisOnTheRight: 1 To put production Y axis on the right side (0 to put on the left), consumption or cost Y scale will be put on the oposite side.

3. Skins

You can customize the apparience of your reports without affecting the functionallity. To do this you need advanced knowledge about HTML and CSS programming.

3.1. Create the skin folder

To create the skin you only have to duplicate the folder "edinn" placed into "htdocs/edinnM2/skins" and rename to your skin name.

3.2. Link the skin folder

To link th skin, you can edit th index.php placed in the root folder (htdocs) or create a duplicate of this file if you plan to use differen skins in your installation.

This is an example of the new file (we can call it skin.php)

<?php

header("Location: edinnM2/index.php?co_login=skin_name&menu_title=MENU_TITLE");

?>

In this file you put the skin folder name in the co_login paramater of the URL and, optionally yo can put a customized title for the menu in the menu_title parameter.

3.3. Customize your skin

The main parameters of the skin are placed into the file "style.css" ad the images used in the skin are inside the folder "img".

Take care about image and object sizes because any change the can affect the quality of your visualization.