added crane interialtion with other assets

This commit is contained in:
2025-08-13 18:19:17 +05:30
parent 01f0fa7cd7
commit b898c51927
25 changed files with 1107 additions and 148 deletions

View File

@@ -125,7 +125,8 @@ function determineExecutionMachineSequences(products: productsSchema): EventsSch
event.type === 'machine' ||
event.type === 'storageUnit' ||
event.type === 'roboticArm' ||
event.type === 'human'
event.type === 'human' ||
event.type === 'crane'
) {
pointToEventMap.set(event.point.uuid, event);
allPoints.push(event.point);

View File

@@ -17,7 +17,8 @@ export async function determineExecutionMachineSequences(products: productsSchem
event.type === 'machine' ||
event.type === 'storageUnit' ||
event.type === 'roboticArm' ||
event.type === 'human'
event.type === 'human' ||
event.type === 'crane'
) {
pointToEventMap.set(event.point.uuid, event);
allPoints.push(event.point);

View File

@@ -20,7 +20,8 @@ export function determineExecutionOrder(products: productsSchema): PointsScheme[
event.type === 'machine' ||
event.type === 'storageUnit' ||
event.type === 'roboticArm' ||
event.type === 'human'
event.type === 'human' ||
event.type === 'crane'
) {
pointMap.set(event.point.uuid, event.point);
allPoints.push(event.point);

View File

@@ -17,7 +17,8 @@ export async function determineExecutionSequences(products: productsSchema): Pro
event.type === 'machine' ||
event.type === 'storageUnit' ||
event.type === 'roboticArm' ||
event.type === 'human'
event.type === 'human' ||
event.type === 'crane'
) {
pointMap.set(event.point.uuid, event.point);
allPoints.push(event.point);

View File

@@ -92,7 +92,8 @@ function determineExecutionMachineSequences(products: productsSchema): EventsSch
event.type === 'machine' ||
event.type === 'storageUnit' ||
event.type === 'roboticArm' ||
event.type === 'human'
event.type === 'human' ||
event.type === 'crane'
) {
pointToEventMap.set(event.point.uuid, event);
allPoints.push(event.point);