Merge pull request #1408 from Tria-plc/credit-invoice
feat(eims): import MoR location master and fix importer arg parsing
BIN
.guide-shots5/00-invoice-detail-pay.png
Normal file
|
After Width: | Height: | Size: 173 KiB |
BIN
.guide-shots5/01-invoices-due-full.png
Normal file
|
After Width: | Height: | Size: 238 KiB |
BIN
.guide-shots5/02-login-full.png
Normal file
|
After Width: | Height: | Size: 673 KiB |
BIN
.guide-shots5/03-hager-invoices-empty-full.png
Normal file
|
After Width: | Height: | Size: 223 KiB |
BIN
.guide-shots5/04-contracts-list-full.png
Normal file
|
After Width: | Height: | Size: 257 KiB |
BIN
.guide-shots5/05-home-full.png
Normal file
|
After Width: | Height: | Size: 268 KiB |
BIN
.guide-shots5/06-contract-detail-signed-full.png
Normal file
|
After Width: | Height: | Size: 309 KiB |
BIN
.guide-shots5/07-contract-step1-full.png
Normal file
|
After Width: | Height: | Size: 204 KiB |
BIN
.guide-shots5/08-contract-step1-filled-full.png
Normal file
|
After Width: | Height: | Size: 240 KiB |
BIN
.guide-shots5/09-contract-step2-full.png
Normal file
|
After Width: | Height: | Size: 237 KiB |
BIN
.guide-shots5/10-contract-step3-review-full.png
Normal file
|
After Width: | Height: | Size: 261 KiB |
BIN
.guide-shots5/11-contract-duplicate-blocked-full.png
Normal file
|
After Width: | Height: | Size: 386 KiB |
BIN
.guide-shots5/11b-quotation-approve-full.png
Normal file
|
After Width: | Height: | Size: 386 KiB |
BIN
.guide-shots5/12-contract-submitted-list-full.png
Normal file
|
After Width: | Height: | Size: 272 KiB |
BIN
.guide-shots5/13-bookings-list-full.png
Normal file
|
After Width: | Height: | Size: 198 KiB |
BIN
.guide-shots5/14-booking-documents-modal-full.png
Normal file
|
After Width: | Height: | Size: 289 KiB |
BIN
4_5767239985799371288.xlsx
Normal file
BIN
EDR-Freight-Priority-Flows-Portal.pdf
Normal file
BIN
EDR-Freight-Priority-Flows.pdf
Normal file
@@ -64,7 +64,9 @@ async function main(): Promise<void> {
|
||||
const args = process.argv.slice(2);
|
||||
const sheetFlag = args.indexOf("--sheet");
|
||||
const sheetName = sheetFlag >= 0 ? args[sheetFlag + 1] : DEFAULT_SHEET;
|
||||
const workbookPath = args.find((arg, i) => !arg.startsWith("--") && i !== sheetFlag + 1);
|
||||
const workbookPath = args.find(
|
||||
(arg, i) => !arg.startsWith("--") && (sheetFlag < 0 || i !== sheetFlag + 1),
|
||||
);
|
||||
|
||||
if (!workbookPath) {
|
||||
throw new Error(
|
||||
|
||||