chore: Make packages/medusa/src/services/inventory.js pass linting #509

This commit is contained in:
saurabh singh
2021-10-14 21:49:13 +05:30
parent 1439450e63
commit 25adc7d26b
2 changed files with 10 additions and 11 deletions

View File

@@ -7,10 +7,9 @@
/packages/medusa/src/services/discount.js
/packages/medusa/src/services/draft-order.js
/packages/medusa/src/services/event-bus.js
/packages/medusa/src/services/fulfillment-provider.js
/packages/medusa/src/services/fulfillment.js
/packages/medusa/src/services/idempotency-key.js
/packages/medusa/src/services/inventory.js
/packages/medusa/src/services/line-item.js
/packages/medusa/src/services/middleware.js
/packages/medusa/src/services/note.js

View File

@@ -29,8 +29,8 @@ class InventoryService extends BaseService {
/**
* Updates the inventory of a variant based on a given adjustment.
* @params {string} variantId - the id of the variant to update
* @params {number} adjustment - the number to adjust the inventory quantity by
* @param {string} variantId - the id of the variant to update
* @param {number} adjustment - the number to adjust the inventory quantity by
* @return {Promise} resolves to the update result.
*/
async adjustInventory(variantId, adjustment) {
@@ -39,7 +39,7 @@ class InventoryService extends BaseService {
return
}
return this.atomicPhase_(async manager => {
return this.atomicPhase_(async (manager) => {
const variant = await this.productVariantService_.retrieve(variantId)
// if inventory is managed then update
if (variant.manage_inventory) {
@@ -55,8 +55,8 @@ class InventoryService extends BaseService {
* Checks if the inventory of a variant can cover a given quantity. Will
* return true if the variant doesn't have managed inventory or if the variant
* allows backorders or if the inventory quantity is greater than `quantity`.
* @params {string} variantId - the id of the variant to check
* @params {number} quantity - the number of units to check availability for
* @param {string} variantId - the id of the variant to check
* @param {number} quantity - the number of units to check availability for
* @return {boolean} true if the inventory covers the quantity
*/
async confirmInventory(variantId, quantity) {