Skip to content

Commit

Permalink
Fat 13330 (#3604)
Browse files Browse the repository at this point in the history
* fixed C343335

* fixed tests

* fixed C380474

* changed constant
  • Loading branch information
TetianaParanich committed May 10, 2024
1 parent bdff321 commit 19486a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -61,6 +61,7 @@ describe('Data Import', () => {
physicalUnitPrice: '"20"',
quantityPhysical: '"1"',
currency: 'USD',
materialType: MATERIAL_TYPE_NAMES.BOOK,
locationName: `"${LOCATION_NAMES.ANNEX}"`,
locationQuantityPhysical: '"1"',
},
Expand All @@ -84,7 +85,7 @@ describe('Data Import', () => {
mappingProfile: {
typeValue: FOLIO_RECORD_TYPE.ITEM,
name: `C380474 Create simple item for open order ${getRandomPostfix()}`,
materialType: `"${MATERIAL_TYPE_NAMES.ELECTRONIC_RESOURCE}"`,
materialType: `"${MATERIAL_TYPE_NAMES.BOOK}"`,
permanentLoanType: LOAN_TYPE_NAMES.CAN_CIRCULATE,
status: ITEM_STATUS_NAMES.AVAILABLE,
},
Expand Down
@@ -1,5 +1,4 @@
import {
ACQUISITION_METHOD_NAMES,
FOLIO_RECORD_TYPE,
ITEM_STATUS_NAMES,
JOB_STATUS_NAMES,
Expand Down Expand Up @@ -53,13 +52,13 @@ describe.skip('Data Import', () => {
approved: true,
vendor: VENDOR_NAMES.GOBI,
title: '245$a',
acquisitionMethod: ACQUISITION_METHOD_NAMES.APPROVAL_PLAN,
acquisitionMethod: 'Approval Plan',
orderFormat: ORDER_FORMAT_NAMES_IN_PROFILE.PE_MIX,
receivingWorkflow: 'Synchronized',
physicalUnitPrice: '"20"',
quantityPhysical: '"1"',
currency: 'USD',
electronicUnitPrice: '25',
electronicUnitPrice: '"25"',
quantityElectronic: '"1"',
locationName: `"${LOCATION_NAMES.ANNEX}"`,
locationQuantityPhysical: '"1"',
Expand Down

0 comments on commit 19486a6

Please sign in to comment.