diff --git a/dataloader.properties b/dataloader.properties index c053161b..dbdbf84d 100755 --- a/dataloader.properties +++ b/dataloader.properties @@ -97,6 +97,7 @@ loginUrl=https://rest.bullhornstaffing.com/rest-services/login #placementChangeRequestExistField=customText1 #placementCommissionExistField=migrateGUID #placementExistField=customText1 +#placementShiftSetExistField=externalID,placement.customText1 #sendoutExistField=migrateGUID #stateTaxFormExistField=customText1 #taskExistField=taskUUID diff --git a/examples/load/PlacementShiftSet.csv b/examples/load/PlacementShiftSet.csv new file mode 100644 index 00000000..5935c69c --- /dev/null +++ b/examples/load/PlacementShiftSet.csv @@ -0,0 +1,2 @@ +placement.customText1,effectiveDate,isDeleted +placement-ext-1 ,2001-01-01 ,FALSE diff --git a/pom.xml b/pom.xml index c660b5f3..cf414489 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ com.bullhorn sdk-rest - 1.4.46 + 1.4.57 diff --git a/src/main/java/com/bullhorn/dataloader/enums/EntityInfo.java b/src/main/java/com/bullhorn/dataloader/enums/EntityInfo.java index cd87f9b5..0e0f18ac 100644 --- a/src/main/java/com/bullhorn/dataloader/enums/EntityInfo.java +++ b/src/main/java/com/bullhorn/dataloader/enums/EntityInfo.java @@ -68,6 +68,7 @@ public enum EntityInfo { PLACEMENT_CHANGE_REQUEST(BullhornEntityInfo.PLACEMENT_CHANGE_REQUEST, 320), INVOICE_TERM(BullhornEntityInfo.INVOICE_TERM, 330), BILLING_PROFILE(BullhornEntityInfo.BILLING_PROFILE, 340), + PLACEMENT_SHIFT_SET(BullhornEntityInfo.PLACEMENT_SHIFT_SET, 350), // Custom Objects CLIENT_CORPORATION_CUSTOM_OBJECT_INSTANCE_1(BullhornEntityInfo.CLIENT_CORPORATION_CUSTOM_OBJECT_INSTANCE_1, 1000), diff --git a/src/test/resources/integrationTest/integrationTest.properties b/src/test/resources/integrationTest/integrationTest.properties index 37007af4..cfe4e440 100644 --- a/src/test/resources/integrationTest/integrationTest.properties +++ b/src/test/resources/integrationTest/integrationTest.properties @@ -58,6 +58,7 @@ opportunityExistField=externalID placementChangeRequestExistField=customText1 placementCommissionExistField=migrateGUID placementExistField=customText1 +placementShiftSetExistField=externalID,placement.customText1 sendoutExistField=migrateGUID stateTaxFormExistField=customText1 taskExistField=taskUUID