fix(inventory): Minor fixes to upserting inventory items (#3883)

* fix(inventory): Minor fixes to upserting inventory item levels

* Create sour-jobs-decide.md

* fix(inventory): Minor fixes to upserting inventory item levels
This commit is contained in:
Oliver Windall Juhl
2023-04-19 22:43:09 +02:00
committed by GitHub
parent 5fdccf5e32
commit 966ddd2f16
3 changed files with 23 additions and 18 deletions

View File

@@ -0,0 +1,7 @@
---
"@medusajs/admin-ui": patch
"@medusajs/admin": patch
"@medusajs/medusa": patch
---
fix(inventory): Minor fixes to upserting inventory items

View File

@@ -57,6 +57,7 @@ const EditVariantInventoryModal = ({ onClose, product, variant }: Props) => {
delete data.ean
delete data.barcode
delete data.upc
delete data.allow_backorder
return removeNullish({
...updateDimensions,
@@ -78,7 +79,7 @@ const EditVariantInventoryModal = ({ onClose, product, variant }: Props) => {
let inventoryItemId: string | undefined = itemId
const { ean, barcode, upc } = data
const { ean, barcode, upc, allow_backorder } = data
const upsertPayload = createUpdateInventoryItemPayload(data)
let shouldInvalidateCache = false
@@ -170,6 +171,7 @@ const EditVariantInventoryModal = ({ onClose, product, variant }: Props) => {
ean,
barcode,
upc,
allow_backorder,
}),
() => {
refetch()

View File

@@ -2,7 +2,6 @@ import { IInventoryService, InventoryItemDTO } from "@medusajs/types"
import { MedusaError } from "@medusajs/utils"
import { EntityManager } from "typeorm"
import { ulid } from "ulid"
import { ProductVariant } from "../../../../../models"
import {
ProductVariantInventoryService,
ProductVariantService,
@@ -74,19 +73,17 @@ export const createInventoryItemTransaction = async (
const productVariantServiceTx = productVariantService.withTransaction(manager)
const variant = await productVariantServiceTx.retrieve(variantId)
async function createInventoryItem(input: CreateInventoryItemInput) {
return await inventoryService!.createInventoryItem({
sku: variant.sku,
origin_country: variant.origin_country,
hs_code: variant.hs_code,
mid_code: variant.mid_code,
material: variant.material,
weight: variant.weight,
length: variant.length,
height: variant.height,
width: variant.width,
sku: input.sku,
origin_country: input.origin_country,
hs_code: input.hs_code,
mid_code: input.mid_code,
material: input.material,
weight: input.weight,
length: input.length,
height: input.height,
width: input.width,
})
}
@@ -96,10 +93,9 @@ export const createInventoryItemTransaction = async (
}
}
async function attachInventoryItem(
variant: ProductVariant,
inventoryItem: InventoryItemDTO
) {
async function attachInventoryItem(inventoryItem: InventoryItemDTO) {
const variant = await productVariantServiceTx.retrieve(variantId)
if (!variant.manage_inventory) {
return
}
@@ -136,7 +132,7 @@ export const createInventoryItemTransaction = async (
) => {
const { [actions.createInventoryItem]: inventoryItem } = invoke
return await attachInventoryItem(variant, inventoryItem)
return await attachInventoryItem(inventoryItem)
},
},
}