summaryrefslogtreecommitdiff
path: root/src/app/api/product/import
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/api/product/import')
-rw-r--r--src/app/api/product/import/route.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/app/api/product/import/route.tsx b/src/app/api/product/import/route.tsx
index eb87f07..e4e38c6 100644
--- a/src/app/api/product/import/route.tsx
+++ b/src/app/api/product/import/route.tsx
@@ -25,6 +25,7 @@ export async function POST(request: NextRequest) {
onhandQty: row[3],
differenceQty: row[4],
companyId: row[5],
+ externalId: row[6] ?? null
}));
const whereCompany = { companyId: intCompanyId }