86 lines
4.1 KiB
Python
86 lines
4.1 KiB
Python
"""
|
|
Project: PARTS Website
|
|
Author: Edward Middleton-Smith
|
|
Precision And Research Technology Systems Limited
|
|
|
|
Technology: View Models
|
|
Feature: Store Permutations View Model
|
|
|
|
Description:
|
|
Data model for store permutations view
|
|
"""
|
|
|
|
# internal
|
|
from models.model_view_store import Model_View_Store
|
|
from datastores.datastore_store_product_permutation import DataStore_Store_Product_Permutation
|
|
from business_objects.store.product_category import Product_Category_Container
|
|
from forms.store.product_permutation import Filters_Product_Permutation
|
|
# from routes import bp_home
|
|
from business_objects.store.product import Product, Parameters_Product, Product_Permutation
|
|
from helpers.helper_app import Helper_App
|
|
import lib.argument_validation as av
|
|
|
|
# external
|
|
from pydantic import BaseModel
|
|
from typing import ClassVar
|
|
|
|
class Model_View_Store_Product_Permutation(Model_View_Store):
|
|
category_list: Product_Category_Container = None
|
|
category_list_filters: Product_Category_Container = None
|
|
currencies: list = None
|
|
currency_options: list = None
|
|
# filters_product: Parameters_Product = None
|
|
form_filters: Filters_Product_Permutation = None
|
|
form_filters_old: Filters_Product_Permutation
|
|
list_options_product: list = None
|
|
units_measurement: list = None
|
|
units_measurement_time: list = None
|
|
variations: list = None
|
|
variation_types: list = None
|
|
|
|
@property
|
|
def title(self):
|
|
return 'Product Permutations'
|
|
|
|
def __init__(self, form_filters_old, hash_page_current=Model_View_Store.HASH_PAGE_STORE_PRODUCT_PERMUTATIONS):
|
|
_m = 'Model_View_Store_Permutation.__init__'
|
|
Helper_App.console_log(f'{_m}\nstarting...')
|
|
super().__init__(hash_page_current=hash_page_current, form_filters_old=form_filters_old)
|
|
self.form_filters = form_filters_old
|
|
# self.form_filters = Filters_Product_Permutation()
|
|
filters_product = Parameters_Product.from_form_filters_product_permutation(self.form_filters)
|
|
datastore_store = DataStore_Store_Product_Permutation()
|
|
self.category_list, errors = datastore_store.get_many_product(filters_product)
|
|
self.category_list_filters, errors_filters = datastore_store.get_many_product(
|
|
Parameters_Product(
|
|
get_all_product_category = True,
|
|
get_inactive_product_category = False,
|
|
ids_product_category = '',
|
|
get_all_product = True,
|
|
get_inactive_product = False,
|
|
ids_product = '',
|
|
get_all_permutation = True,
|
|
get_inactive_permutation = False,
|
|
ids_permutation = '',
|
|
get_all_image = False,
|
|
get_inactive_image = False,
|
|
ids_image = '',
|
|
get_products_quantity_stock_below_min = filters_product.get_products_quantity_stock_below_min
|
|
)
|
|
)
|
|
Helper_App.console_log(f'category filters: {self.category_list_filters.categories}')
|
|
self.form_filters.id_category.choices += [(str(category.id_category), category.name) for category in self.category_list_filters.categories]
|
|
Helper_App.console_log(f'category options: {self.form_filters.id_category.choices}')
|
|
self.list_options_product = self.category_list_filters.to_product_option_list()
|
|
Helper_App.console_log(f'product options: {self.list_options_product}')
|
|
self.form_filters.id_product.choices += [(str(product['value']), product['text']) for product in self.list_options_product]
|
|
self.variation_types, self.variations, errors = self.get_many_product_variation()
|
|
self.units_measurement = self.get_many_unit_measurement()
|
|
self.units_measurement_time = [unit_measurement for unit_measurement in self.units_measurement if unit_measurement.is_unit_of_time]
|
|
self.currencies = self.get_many_currency()
|
|
self.currency_options = [currency.to_json_option() for currency in self.currencies]
|
|
|
|
@staticmethod
|
|
def save_permutations(comment, list_permutations):
|
|
_m = 'Model_View_Store_Permutation.save_permutations'
|
|
DataStore_Store_Product_Permutation.save_permutations(comment, list_permutations) |