Print kot and print bill are working now using celery

Now also need to install RabbitMQ for clery to work
This commit is contained in:
2020-10-01 11:43:43 +05:30
parent aaac5efea2
commit 3f2a06c2cf
9 changed files with 203 additions and 82 deletions

View File

@ -205,7 +205,7 @@ def upgrade():
sa.Column("menu_category_id", postgresql.UUID(), nullable=True),
sa.Column("section_id", postgresql.UUID(), nullable=False),
sa.Column("printer_id", postgresql.UUID(), nullable=False),
sa.Column("copies", sa.Numeric(), nullable=False),
sa.Column("copies", sa.Integer(), nullable=False),
sa.ForeignKeyConstraint(
["menu_category_id"],
["menu_categories.id"],