|
|
@@ -63,6 +63,7 @@ def coi_view(request):
|
|
63
|
63
|
if request.method == "POST":
|
|
64
|
64
|
if 'search_lot' in request.POST:
|
|
65
|
65
|
lot_no = request.POST.get('lot_no', None)
|
|
|
66
|
+ lot_no = lot_no.strip()
|
|
66
|
67
|
if lot_no:
|
|
67
|
68
|
results = queryFromMaster(lot_no)
|
|
68
|
69
|
first_result = results[0] if results else None
|