-
Notifications
You must be signed in to change notification settings - Fork 5
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
Transferrable until #106
Closed
Closed
Transferrable until #106
Changes from 6 commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
33a5867
Initial version of admin page for reports.
vidya-ram dff4c85
Update requirements.txt
vidya-ram 841825e
Merge branch 'admin-report' of github.com:hasgeek/boxoffice into admi…
shreyas-satish 958a027
rm admin_order_report, added admin_assignee_report
shreyas-satish 3867b57
Add view for admin page for report. Change route to attendee.csv
vidya-ram 2b9922f
added headers
shreyas-satish c4992c9
added ability to block transfers after a certain date
shreyas-satish 7b66866
Merge branch 'transferrable_until' of https://github.com/hasgeek/boxo…
vidya-ram 75c4da6
UI changes to block transfers after a certain date.
vidya-ram 3a59dca
Change variable names to assignee. And follow underscore convention f…
vidya-ram 85e4f79
added tickets report
shreyas-satish 594e194
CSS change. Update background to transparent.
vidya-ram 9bb41f7
Update variable name
vidya-ram d183d23
Remove bootstrap class.
vidya-ram c16c545
Pass list of recipients to mailer function.
vidya-ram 396fc11
added default param for cc_list
shreyas-satish a34783f
added tickets report, removed attendees
shreyas-satish d0215a5
using id instead of ic_id
shreyas-satish 97fc226
using unicodecsv to generate csv, removed json=True, single line inst…
shreyas-satish 84ca0e4
value is already utf-8
shreyas-satish bc59529
fixed docstring
shreyas-satish 48862dd
added unicodecsv to requirements.txt
shreyas-satish 73c9709
moved query into a method in LineItem
shreyas-satish 26a058a
convert value to unicode before returning
shreyas-satish 68b3dfe
import from StringIO if cStringIO fails
shreyas-satish 78860c0
rm unused import, rename title in report json api
shreyas-satish 5e734ed
use updated key
shreyas-satish d08faa1
Merge pull request #101 from hasgeek/admin-report
shreyas-satish 44a6682
use content_type in csv response
shreyas-satish a7997b8
split report into tickets and assignees
shreyas-satish 0416fb7
wip
shreyas-satish 41fb98a
added uglify to gulp pipeline
shreyas-satish f82e531
Merge pull request #111 from hasgeek/add_uglify
shreyas-satish 9047afa
resolved conflict
shreyas-satish a0a361a
using a single method for data export
shreyas-satish 4b35505
fixed docstring
shreyas-satish 2d34ed6
render assignee_details as a JSONField
shreyas-satish bb8bbbd
add usage_limit to discount policy for bulk coupons (#113)
shreyas-satish 655de5e
rm underscore where unnecessary
shreyas-satish 610bed3
Merge pull request #112 from hasgeek/better_report
shreyas-satish 19da2ac
Change button css in smaller screens.
vidya-ram 9698402
Add checkbox field to attendee form.
vidya-ram 3680264
add missing check constraint (#115)
shreyas-satish 8960751
Merge branch 'master' of https://github.com/hasgeek/boxoffice
vidya-ram c50ad33
Merge branch 'master' of https://github.com/hasgeek/boxoffice into ad…
vidya-ram f8097b6
Merge pull request #116 from hasgeek/add-fieldstoform
shreyas-satish 4c911c2
Change admin orders table column width in small screens.
vidya-ram 88ea86a
rm blank lines, fix import order, use relative imports, fix comments
shreyas-satish 44fba4a
Add Organization details field to siteadmin
vidya-ram 2aac6e9
fixed merge conflict
shreyas-satish 02cb4b6
updated migration
shreyas-satish File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
"""add_transferrable_until | ||
|
||
Revision ID: 6a6c0be09f | ||
Revises: 48e571c759cb | ||
Create Date: 2016-09-13 18:12:25.445124 | ||
|
||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '6a6c0be09f' | ||
down_revision = '48e571c759cb' | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
from sqlalchemy.dialects import postgresql | ||
|
||
|
||
def upgrade(): | ||
op.add_column('item', sa.Column('transferrable_until', sa.DateTime(), nullable=True)) | ||
|
||
|
||
def downgrade(): | ||
op.drop_column('item', 'transferrable_until') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I think
cc_list
should have[]
as its default parameter since it isn't mandatory.