Purchase Requisitions
This page explains how to troubleshoot various data points within the requisition form.
Data Point: Projects Drop Down
The data point lists all projects that are aligned to a staff as follows:
Source: JobsList - Page 89
Filters on JobsList:
$filter = [
//'Balance' => '> 0',
'Principle_Investigator_Name' => '<> null',
'RollOver' => 1,
'Global_Dimension_1_Code' => Yii::$app->user->identity->Employee->Global_Dimension_1_Code, // Department filter
];
from the top :
- principle_investigator_name should not be empty or null
- RollOver should be true
- Global_Dimension_1_Code should match employees Global_Dimension_1_Code from Employee Card
NB: Please note no cache is active while retrieving this data, it should therefore reflect instantly when all above filter conditions are met.
NB: If the following filters are manually applied on the ERP list (page 89) and they yield the desired results then notify the ESS developer of the inconsistency.
No Comments