Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BH-79063 adding placement shift set #401

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dataloader.properties
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ loginUrl=https://rest.bullhornstaffing.com/rest-services/login
#placementChangeRequestExistField=customText1
#placementCommissionExistField=migrateGUID
#placementExistField=customText1
#placementShiftSetExistField=externalID,placement.customText1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should probably only be externalID, to keep things simple. There should be no need for a multi-field lookup.

#sendoutExistField=migrateGUID
#stateTaxFormExistField=customText1
#taskExistField=taskUUID
Expand Down
2 changes: 2 additions & 0 deletions examples/load/PlacementShiftSet.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
placement.customText1,effectiveDate,isDeleted
placement-ext-1 ,2001-01-01 ,FALSE
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<dependency>
<groupId>com.bullhorn</groupId>
<artifactId>sdk-rest</artifactId>
<version>1.4.46</version>
<version>1.4.57</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ opportunityExistField=externalID
placementChangeRequestExistField=customText1
placementCommissionExistField=migrateGUID
placementExistField=customText1
placementShiftSetExistField=externalID,placement.customText1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here - This should probably only be externalID, to keep things simple. There should be no need for a multi-field lookup.

sendoutExistField=migrateGUID
stateTaxFormExistField=customText1
taskExistField=taskUUID
Expand Down