summaryrefslogtreecommitdiff
path: root/src/app/api/product/import/route.tsx
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2025-02-06 11:27:03 +0700
committerit-fixcomart <it@fixcomart.co.id>2025-02-06 11:27:03 +0700
commit137737e4c215f5a9a6aae78cafbefe5b4cf7793d (patch)
tree325b429f5fae6ecca2de177c537d237191fb3dc5 /src/app/api/product/import/route.tsx
parent38db9dbede5ee9d99068fb9a98941fd15c2730bf (diff)
<iman> update scanner and add value
Diffstat (limited to 'src/app/api/product/import/route.tsx')
-rw-r--r--src/app/api/product/import/route.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app/api/product/import/route.tsx b/src/app/api/product/import/route.tsx
index 3f11def..37b4690 100644
--- a/src/app/api/product/import/route.tsx
+++ b/src/app/api/product/import/route.tsx
@@ -25,7 +25,8 @@ export async function POST(request: NextRequest) {
onhandQty: row[3] || 0, // Handle undefined values
differenceQty: row[4] || 0, // Handle undefined values
companyId: intCompanyId, // Use the parsed company ID
- externalId: row[6] ? row[6].toString() : null // Handle undefined values
+ externalId: row[6] ? row[6].toString() : null, // Handle undefined values
+ value: row[7] != null ? Number(row[7]) || 0 : null,
}));
const whereCompany = { companyId: intCompanyId }