From 1f6daef0180bc737a2883203f6d513e5b81712ed Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Tue, 7 May 2024 00:34:26 +0200 Subject: [node] improved sql migrations code --- nodejs/automation/contracting.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nodejs/automation') diff --git a/nodejs/automation/contracting.ts b/nodejs/automation/contracting.ts index 93c2f8e..9ac5d2f 100644 --- a/nodejs/automation/contracting.ts +++ b/nodejs/automation/contracting.ts @@ -32,11 +32,11 @@ async function runOne(contract: Contract, ship: Ship): Promise { await libContracts.accept(contract); switch(contract.type) { case 'PROCUREMENT': - if (contract.terms.deliver[0].tradeSymbol.match(/_ORE$/)) { - await runOreProcurement(contract, ship); - } else { + //if (contract.terms.deliver[0].tradeSymbol.match(/_ORE$/)) { + // await runOreProcurement(contract, ship); + //} else { await runTradeProcurement(contract, ship); - } + //} break; default: throw `Handling of contract type ${contract.type} is not implemented yet`; -- cgit v1.2.3