-
Notifications
You must be signed in to change notification settings - Fork 0
PM-1142 - reset tax forms #34
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
Conversation
prisma/migrations/20250425134520_truncate_tax_forms/migration.sql
Outdated
Show resolved
Hide resolved
prisma/migrations/20250425134520_truncate_tax_forms/migration.sql
Outdated
Show resolved
Hide resolved
@@ -1,13 +1,9 @@ | |||
import { TaxFormStatus } from './adminWinning.dto'; | |||
|
|||
export class TaxFormQueryResult { | |||
id: string; |
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.
Consider adding type annotations for the properties in the TaxFormQueryResult
class to ensure type safety and clarity. For example, id: string;
could be id: string;
.
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.
@kkartunov lol. this one is funny:
For example, id: string; could be id: string;
https://topcoder.atlassian.net/browse/PM-1142
Migration file to:
docusign_envelopes
table & related enumsuser_tax_form_associations
table with columns: user_id, tax_form_id, date_filed, tax_form_status.tax_forms
tax_form_status
to reflect status from trolleyUpdated services & controller to get rid of handling "net_amount" based on filled-in tax forms.