Wednesday, May 15, 2024
1 change · master
Resolved issues and error corrections
The Chilean electronic invoicing point-of-sale setup now skips an unnecessary database lookup when there are no records to load. This reduces wasted processing during POS data loading and helps keep startup behavior efficient without changing user-facing workflows.
Original PR description
Previously, to avoid loading records when loading data into point_of_sale we used a domain with a falsy value `[('id', '=', False)]` but this required a query to the database.
Now we return False for the domain and if the domain is false we don't search for records. no record search.