Compare commits

..
2 Commits
Author SHA1 Message Date
tanshu a1ccf973cd Version Bump v11.1.1 2023-03-14 00:15:50 +05:30
tanshu 65700d2760 Fix: Date was not updated when the bill was printed. 2023-03-14 00:15:35 +05:30
7 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -1 +1 @@
__version__ = "11.1.0"
__version__ = "11.1.1"
+2
View File
@@ -71,6 +71,8 @@ def update_route(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Internal error, reprints should not reach here",
)
if item.voucher_type == VoucherType.KOT and voucher_type != VoucherType.KOT:
item.date = now
item.voucher_type = voucher_type
item.user_id = user.id_
item.last_edit_date = now
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "barker"
version = "11.1.0"
version = "11.1.1"
description = "Point of Sale for a restaurant"
authors = ["tanshu <git@tanshu.com>"]
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "bookie",
"version": "11.1.0",
"version": "11.1.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
+1 -1
View File
@@ -1,5 +1,5 @@
export const environment = {
production: true,
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '11.1.0',
version: '11.1.1',
};
+1 -1
View File
@@ -5,7 +5,7 @@
export const environment = {
production: false,
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '11.1.0',
version: '11.1.1',
};
/*
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "frank"
version = "11.1.0"
version = "11.1.1"
description = "Point of Sale for a restaurant"
authors = ["tanshu <git@tanshu.com>"]