Skip to content

Commit

Permalink
Reversed a change from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jjdejong committed Jun 12, 2024
1 parent e54eaf9 commit 1dd0b21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/scripts/aqs.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
cost (invoiced to us by AQS)
fee (our fees)
notes (status from AQS: Estimated, Invoiced, Cancelled)
step (indicates advancement of instructions, 10 = closed)
step (indicates advancement of instructions, -1 = processed)
invoice_step (indicates advancement of client invoicing, 1 = to invoice)
*/

Expand Down Expand Up @@ -233,7 +233,7 @@ function base64UrlEncode($data)
}
if (strlen($renewal->paymentDate) > 0 && $renewal->paymentDate != $myRenewal->done_date) {
$set[] = "done_date = '$renewal->paymentDate'";
$set[] = "step = 10";
$set[] = "step = -1";
if (!$myRenewal->invoice_step) {
$set[] = "invoice_step = 1";
}
Expand Down

0 comments on commit 1dd0b21

Please sign in to comment.