geupdate runKPIitemtask, helaas nog geen KPI data gevonden als child item
This commit is contained in:
parent
7dda21dd77
commit
be22d631bc
@ -299,17 +299,17 @@ namespace FarmmapsApi.Services
|
|||||||
|
|
||||||
//hier nog definieren waar in de hierarchie een KPI item is?
|
//hier nog definieren waar in de hierarchie een KPI item is?
|
||||||
|
|
||||||
////the BOFEK data is a child of the cropfield
|
//the kpi data is a child of the cropfield
|
||||||
//var itemName = "bofek";
|
var itemname = "KPI";
|
||||||
//var bofekItem = await FindChildItemAsync(cropfieldItem.Code,
|
var KPIItem = await FindChildItemAsync(cropfieldItem.Code,
|
||||||
// SHAPE_PROCESSED_ITEMTYPE, itemName);
|
CROPFIELD_ITEMTYPE, itemname); //hier moet ik dus verwijzen naar waar het KPIItem zit? ik gok dat het een cropfield item type is...
|
||||||
//if (bofekItem == null)
|
if (KPIItem == null)
|
||||||
//{
|
{
|
||||||
// _logger.LogError("Could not find the BOFEK data as a child item under the cropfield");
|
_logger.LogError("could not find the bofek data as a child item under the cropfield");
|
||||||
// return null;
|
return null;
|
||||||
//}
|
}
|
||||||
|
|
||||||
return bofekItem;
|
return KPIItem;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<Item> RunAhnTask(Item cropfieldItem) {
|
public async Task<Item> RunAhnTask(Item cropfieldItem) {
|
||||||
|
@ -144,8 +144,8 @@ namespace FarmmapsKPI
|
|||||||
|
|
||||||
// Get KPI data
|
// Get KPI data
|
||||||
|
|
||||||
//_logger.LogInformation("Calculate KPI map for field");
|
_logger.LogInformation("Calculate KPI map for field");
|
||||||
//var KPIItem = await _generalService.RunKPITask(cropfieldItem);
|
var KPIItem = await _generalService.RunKPITask(cropfieldItem);// hier dus verwijzen naar de KPI task
|
||||||
if ((object)null == null)
|
if ((object)null == null)
|
||||||
{
|
{
|
||||||
_logger.LogError("Something went wrong while obtaining the KPI map");
|
_logger.LogError("Something went wrong while obtaining the KPI map");
|
||||||
|
Loading…
Reference in New Issue
Block a user