-
Notifications
You must be signed in to change notification settings - Fork 39
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
22263 - EFT Refund AP Job Implementation #1719
Conversation
You'll need to:
Note: some of the GL's that are on PROD might not work on TEST, so look at the existing secrets in TEST for AP and compare - so if the GL's aren't correct on TEST, not a huge deal |
@@ -58,6 +59,8 @@ class EFTRefund(Audit): | |||
comment = db.Column(db.String(), nullable=False) | |||
decline_reason = db.Column(db.String(), nullable=True) | |||
created_by = db.Column('created_by', db.String(100), nullable=True) | |||
created_on = db.Column('created_on', db.DateTime, nullable=False, default=lambda: datetime.now(tz=timezone.utc)) | |||
disbursement_status_code = db.Column(db.String(20), ForeignKey('disbursement_status_codes.code'), nullable=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good I'll clean this one out later
Issue #:
bcgov/entity#22263
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of the sbc-pay license (Apache 2.0).