|
@@ -5,22 +5,19 @@
|
|
|
# All rights reserved
|
|
|
#
|
|
|
# THIS SOFTWARE IS PROVIDED AS IS WITHOUT WARRANTY
|
|
|
-import time
|
|
|
import itertools
|
|
|
import sys
|
|
|
+from sqlite3 import Cursor
|
|
|
from typing import Union
|
|
|
+
|
|
|
import urwid
|
|
|
from urwid import raw_display
|
|
|
-from app.db_utils import (
|
|
|
- QueryManager,
|
|
|
- get_insert_product_statement
|
|
|
-)
|
|
|
-from app.activities import (
|
|
|
- show_or_exit,
|
|
|
- ActivityManager,
|
|
|
-)
|
|
|
-from app.activities.TransactionEditor import TransactionEditor
|
|
|
+
|
|
|
+from app.activities import ActivityManager, show_or_exit
|
|
|
from app.activities.NewProduct import NewProduct
|
|
|
+from app.activities.TransactionEditor import TransactionEditor
|
|
|
+from app.db_utils import (QueryManager, display_mapper,
|
|
|
+ get_insert_product_statement)
|
|
|
from app.widgets import AutoCompleteEdit, AutoCompleteFloatEdit
|
|
|
|
|
|
try:
|
|
@@ -32,10 +29,11 @@ except:
|
|
|
password = ''
|
|
|
|
|
|
try:
|
|
|
- import psycopg2
|
|
|
import os
|
|
|
+
|
|
|
+ import psycopg2
|
|
|
user = os.getenv('USER')
|
|
|
- conn = psycopg2.connect(f"{host} dbname=das user={user} {password}")
|
|
|
+ conn: Cursor = psycopg2.connect(f"{host} dbname=das user={user} {password}")
|
|
|
cur = conn.cursor()
|
|
|
except:
|
|
|
print('Failed to set up db connection. Entering Mock mode')
|
|
@@ -81,14 +79,6 @@ cols = [
|
|
|
)
|
|
|
]
|
|
|
|
|
|
-display_map = {
|
|
|
- 'ts': lambda x: f"{time.strftime('%Y-%m-%d %H:%M', (x.year, x.month, x.day, x.hour, x.minute, 0, 0, 0, 0))}",
|
|
|
- 'price': lambda x: f"{x:.2f}",
|
|
|
- 'quantity': lambda x: f"{x:.2f}",
|
|
|
- 'organic': lambda x: "true" if x else "false",
|
|
|
-}
|
|
|
-display = lambda data, name: display_map[name](data) if name in display_map else data
|
|
|
-
|
|
|
def _apply_choice_callback(
|
|
|
activity_manager: ActivityManager,
|
|
|
base: str, name: str, value: str
|
|
@@ -213,7 +203,7 @@ class GroceryTransactionEditor(urwid.WidgetPlaceholder):
|
|
|
cur.execute("BEGIN")
|
|
|
|
|
|
activity_manager = ActivityManager()
|
|
|
-query_manager = QueryManager(cur, display)
|
|
|
+query_manager = QueryManager(cur, display_mapper)
|
|
|
|
|
|
activity_manager.create(TransactionEditor, 'transaction',
|
|
|
query_manager, cols, grid_layout, side_pane, bottom_pane,
|