-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
fix-9127: Add the unique ticket code into the downlad CSV file #9130
Changes from all commits
974d831
9e5ce9d
455d3ab
78c819c
e181b83
241ca93
a281cf9
58d0fb8
74ac30c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
"""empty message | ||
|
||
Revision ID: bce7acfe5a4f | ||
Revises: 24271525a263 | ||
Revises: 1af4cc4f7cd5 | ||
Create Date: 2023-08-17 15:38:43.387065 | ||
|
||
""" | ||
|
@@ -12,7 +12,7 @@ | |
|
||
# revision identifiers, used by Alembic. | ||
revision = 'bce7acfe5a4f' | ||
down_revision = '24271525a263' | ||
down_revision = '1af4cc4f7cd5' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is a database migration necessary here? I don't see any changes to the database structure? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because we encountered the problem "Error: Multiple moving heads" when running "ci/circleci:test". So I checked and changed the version of this file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Indeed, previous changes introduce a split tree, how did that happen? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I saw this problem happen 6 months ago and don't know why this problem happened |
||
|
||
|
||
def upgrade(): | ||
|
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.
order number and not invoice number and line 58 too
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.
Hello @mariobehling, can you share about this idea?
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.
Every order has a relation to tickets and invoice. Each has different number.
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.
It means.
The value of "Order#" will be the value of "identifier" in the JSON above, right?
So the value of "Ticket ID" will be the same as "Order#", right?
Based on Mario's comment, "ticket ID" will be the "identifier" of the JSON you provide
#9127 (comment)