Exemplo n.º 1
0
def run_categories_insert():
    """Inserts the categories added by the user into the table."""
    categories = categories_to_list('categories')
    conn = get_db_connection()
    cur = conn.cursor()
    for category in categories:
        cur.execute('INSERT INTO categories (category) VALUES (%s);',
                    (category, ))
    conn.commit()
    cur.close()
    conn.close()
    return redirect(url_for('confirm_categories'))
Exemplo n.º 2
0
def add_item(id, page, category=None):
    conn = get_db_connection()
    cur = conn.cursor()
    cur.execute(
        """UPDATE items 
           SET Quantity = Quantity + 1 
           WHERE item_id = %s""", (id, ))
    conn.commit()
    cur.close()
    conn.close()
    if category:
        return redirect(url_for('single_category', category_id=category))
    return redirect(url_for(page))
Exemplo n.º 3
0
def category_view():
    """ Lets the user view and select all available categories.
    """
    conn = get_db_connection()
    cur = conn.cursor()
    cur.execute("""SELECT 
                DISTINCT ON (category) category,
                category_id 
           FROM categories 
           ORDER BY category;""")
    items = cur.fetchall()
    cur.close()
    conn.close()
    return render_template('categoryview.html', categories=items)
Exemplo n.º 4
0
def run_bulk_update():
    """ Write new content to the database from uploaded CSV file.

    Takes the uploaded file, writes each row as a list within the final
    list, then writes each of these lists to the database.

    The function does not use the CSV module because of decoding issues.
    """
    converted_file = csv_converter('file')
    categories = get_categories()
    conn = get_db_connection()
    c = conn.cursor()
    omitted = []
    updated = []
    for row in converted_file:
        if row[0] in categories:
            if already_in_storage(row):
                item_id = get_item_id(row)
                c.execute(
                    'UPDATE items '
                    'SET Quantity = Quantity + %s '
                    'WHERE item_id = (%s) ', (
                        row[2],
                        item_id,
                    ))
                updated.append([row])
            else:
                c.execute(
                    """INSERT INTO items 
                                    (category_id, 
                                    article, 
                                    quantity, 
                                    expiry_date) 
                        VALUES (%s, %s, %s, %s) """,
                    [assign_category_id(row[0]), row[1], row[2], row[3]])

        else:
            omitted.append([row])
    conn.commit()
    conn.close()
    return render_template('updatecompleted.html',
                           omitted=omitted,
                           updated=updated)
Exemplo n.º 5
0
def export_view():
    """ Views the export page that allows copy-pasting all DB content"""
    conn = get_db_connection()
    cur = conn.cursor()
    cur.execute("""SELECT 
            item_id, 
            categories.category, 
            article, 
            quantity, 
            expiry_date 
           FROM items 
           INNER JOIN categories 
           ON items.category_id=categories.category_id 
           ORDER BY category""")
    items = cur.fetchall()
    cur.close()
    conn.close()
    num_articles = len(items)
    return render_template('export_view.html',
                           storage=items,
                           num_articles=num_articles)
Exemplo n.º 6
0
def run_db_setup():
    """Runs the DB setup process.

    The setup process is intended to be run only at the initial setup
    of the app - running this process when the tables already exist
    will result in an error. """
    conn = get_db_connection()
    cur = conn.cursor()
    cur.execute("""CREATE TABLE IF NOT EXISTS items 
                    (item_id SERIAL PRIMARY KEY,
                     category_id INTEGER NOT NULL,
                     article TEXT NOT NULL,
                     quantity INTEGER NOT NULL,
                     expiry_date INTEGER NOT NULL );""")
    cur.execute("""CREATE TABLE IF NOT EXISTS categories 
                    (category_id SERIAL PRIMARY KEY,
                     category TEXT NOT NULL );""")
    conn.commit()
    cur.close()
    conn.close()
    return redirect(url_for('create_categories'))
Exemplo n.º 7
0
def single_category(category_id):
    """ Views items of a single category.
    """
    conn = get_db_connection()
    cur = conn.cursor()
    cur.execute(
        """SELECT 
                item_id, 
                categories.category, 
                article, 
                quantity,
                expiry_date, 
                categories.category_id 
           FROM items 
           INNER JOIN categories 
           ON items.category_id=categories.category_id 
           WHERE categories.category_id = %s
           ORDER BY article""", (category_id, ))
    items = cur.fetchall()
    cur.close()
    conn.close()
    return render_template('singlecategory.html', category=items)
Exemplo n.º 8
0
def index():
    """ Views the front page.
    """
    conn = get_db_connection()
    cur = conn.cursor()
    cur.execute("""SELECT 
            item_id, 
            categories.category, 
            article, 
            quantity, 
            expiry_date 
        FROM items 
        INNER JOIN categories 
        ON items.category_id = categories.category_id 
        ORDER BY 
            category,
            article""")
    items = cur.fetchall()
    cur.close()
    conn.close()
    num_articles = len(items)
    return render_template('frontpage.html',
                           storage=items,
                           num_articles=num_articles)