Skip to content

Commit

Permalink
Merge pull request #469 from hotwax/#437_cycle_count_bulk_upload
Browse files Browse the repository at this point in the history
Fixed: Passed default inventory count import status Id (#437).
  • Loading branch information
ravilodhi authored Oct 11, 2024
2 parents 59bf248 + 7c74222 commit da6e390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/BulkUpload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ async function save(){
const uploadedData = content.value.map(item => {
return {
countImportName: item[fieldMapping.value.countImportName],
statusId: item[fieldMapping.value.statusId],
statusId: item[fieldMapping.value.statusId] ? item[fieldMapping.value.statusId] : "INV_COUNT_CREATED",
idValue: item[fieldMapping.value.productSku],
idType: "SKU",
dueDate: item[fieldMapping.value.dueDate],
Expand Down

0 comments on commit da6e390

Please sign in to comment.