From 48b8ae35285153f632fd47fc925c079a349351be Mon Sep 17 00:00:00 2001 From: Greig McGill Date: Thu, 2 Jan 2025 17:25:39 +1300 Subject: [PATCH] Added custom configured client CSV mappings based on email address domain --- column_mapping.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 column_mapping.json diff --git a/column_mapping.json b/column_mapping.json new file mode 100644 index 0000000..b563866 --- /dev/null +++ b/column_mapping.json @@ -0,0 +1,17 @@ +{ + "default": { + "Item_ID": "Item_ID", + "Item_Name": "Item_Name", + "Item_Description": "Item_Description", + "Item_Price": "Item_Price", + "Item_Quantity": "Item_Quantity" + }, + "hamiltron.net": { + "Item_ID": "ID", + "Item_Name": "Name", + "Item_Description": "Description", + "Item_Price": "Price", + "Item_Quantity": "Quantity" + } +} +