Merge branch '785-no-sms-notification-for-discount' into 'master'
Resolve "No SMS notification for discount" Closes #785 See merge request jankstudio/resq!896
This commit is contained in:
commit
ba8ac73c9d
1 changed files with 4 additions and 0 deletions
|
|
@ -4252,6 +4252,10 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
|
||||||
if ($rejection->getReason() == JORejectionReason::ADMINISTRATIVE)
|
if ($rejection->getReason() == JORejectionReason::ADMINISTRATIVE)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
|
// check if reason is discount
|
||||||
|
if ($rejection->getReason() == JORejectionReason::DISCOUNT)
|
||||||
|
return null;
|
||||||
|
|
||||||
// sms content
|
// sms content
|
||||||
// Job Order # - can get from jo
|
// Job Order # - can get from jo
|
||||||
// Order Date and Time - get from jo
|
// Order Date and Time - get from jo
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue