Compare commits

..

No commits in common. "f1c8ffedda2b88bd9b68faf3ec2161ede67ee972" and "7171c7fb06fa634a0688f525202a4b898868a8d7" have entirely different histories.

3 changed files with 2 additions and 10 deletions

View file

@ -5,13 +5,6 @@ All notable changes to Tailbone will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## v0.22.4 (2024-11-22)
### Fix
- avoid error in product search for duplicated key
- use vmodel for confirm password widget input
## v0.22.3 (2024-11-19)
### Fix

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project]
name = "Tailbone"
version = "0.22.4"
version = "0.22.3"
description = "Backoffice Web Application for Rattail"
readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]

View file

@ -1857,8 +1857,7 @@ class ProductView(MasterView):
lookup_fields.append('alt_code')
if lookup_fields:
product = self.products_handler.locate_product_for_entry(
session, term, lookup_fields=lookup_fields,
first_if_multiple=True)
session, term, lookup_fields=lookup_fields)
if product:
final_results.append(self.search_normalize_result(product))