location containers part 1. Mostly broken.

pull/3/head
Marek Baczynski 6 years ago
parent e592f300bb
commit 7c1fd24cb0

@ -47,7 +47,7 @@ def serveImage(img):
@app.route('/parts')
def index():
query = "select id, name from locations order by left(map, strpos(map, '.')-1), UPPER(name);"
query = "select id, name from locations order by UPPER(name);"
r = db_engine.execute(text(query))
locations = []
for row in r:
@ -120,7 +120,7 @@ def query(filter_dummy, query):
for i in range(len(keywords)):
kw_dict["kw" + str(i)] = keywords[i]
s = 'select p.id,partno,description,l.name as location_descriptor from parts as p inner join locations as l on p.location_id = l.id where '
s = 'select p.id,partno,description, c.name || l.name as location_descriptor from parts as p inner join locations as l on p.location_id = l.id inner join containers as c on l.container_id = c.id where '
if filter['l']:
s += '('
for i in range(len(keywords)):

Loading…
Cancel
Save