Purchase orders

This commit is contained in:
Hillel Coren 2022-07-04 08:32:31 +03:00
parent 0cf9267387
commit e4fc8b05e4
1 changed files with 3 additions and 1 deletions

View File

@ -181,9 +181,11 @@ class EntityAction extends EnumClass {
return EntityAction.newTask;
case EntityType.vendor:
return EntityAction.newVendor;
case EntityType.purchaseOrder:
return EntityAction.newPurchaseOrder;
default:
print(
'ERROR: entityType $entityType not defined in EntityAction.newEntityType');
'## ERROR: entityType $entityType not defined in EntityAction.newEntityType');
return null;
}
}