feat: residues accounting

This commit is contained in:
2025-01-14 21:35:39 +04:00
parent 1f26f94d96
commit d609c10edb
15 changed files with 776 additions and 10 deletions

View File

@@ -105,7 +105,7 @@ class ProductService(BaseService):
is_pagination_valid = is_valid_pagination(pagination)
total_pages = 0
total_items = 0
stmt: Query = (
stmt = (
select(
Product
)