Skip to content

Commit

Permalink
Merge branch 'master' into 2222
Browse files Browse the repository at this point in the history
  • Loading branch information
olsenrasmus authored Aug 22, 2023
2 parents db5bf1f + 64a5122 commit da830f7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ export let columns = [
name: 'StartAndEndDate',
type: 'Datetime'
},
{
label: 'Oppdragsnummer',
name: 'AppointmentNumber',
type: 'String'
},
{
label: 'Poststed',
name: 'City',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public without sharing class HOT_ServiceAppointmentNotification {
oldServiceAppointment.Status == 'Dispatched' ||
oldServiceAppointment.Status == 'In Progress') &&
(serviceAppointment.Status == null ||
serviceAppointment.Status == 'Scheduled' ||
serviceAppointment.Status == 'None') &&
serviceAppointment.HOT_CanceledByInterpreter__c == false
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ public without sharing class HOT_ServiceAppointmentHandler extends MyTriggers {
(serviceAppointment.Status == null ||
serviceAppointment.Status == 'Canceled' ||
serviceAppointment.Status == 'Annul' ||
serviceAppointment.Status == 'Scheduled' ||
serviceAppointment.Status == 'None') &&
serviceAppointment.HOT_CanceledByInterpreter__c == false
) {
Expand Down
2 changes: 1 addition & 1 deletion sfdx-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"default": true,
"package": "crm-hot",
"versionName": "ver 0.1",
"versionNumber": "1.228.0.NEXT",
"versionNumber": "1.229.0.NEXT",
"dependencies": [
{
"package": "crm-platform-base",
Expand Down

0 comments on commit da830f7

Please sign in to comment.