Add checking for discount rejection reason. #785
This commit is contained in:
parent
b033e5674d
commit
9b52d4578f
1 changed files with 4 additions and 0 deletions
|
|
@ -4252,6 +4252,10 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
|
|||
if ($rejection->getReason() == JORejectionReason::ADMINISTRATIVE)
|
||||
return null;
|
||||
|
||||
// check if reason is discount
|
||||
if ($rejection->getReason() == JORejectionReason::DISCOUNT)
|
||||
return null;
|
||||
|
||||
// sms content
|
||||
// Job Order # - can get from jo
|
||||
// Order Date and Time - get from jo
|
||||
|
|
|
|||
Loading…
Reference in a new issue