Feat: Active column changed to add / delete / undelete buttons column on all table pages. \n Fix(UI): Product Permutations page preview Variations now shows when appropriate.

This commit is contained in:
2024-11-11 10:49:55 +00:00
parent 60431062f0
commit db15a7f8fc
40 changed files with 274 additions and 473 deletions

View File

@@ -119,9 +119,9 @@ class DataStore_Store_Base(DataStore_Base):
cursor.nextset()
result_set_4 = cursor.fetchall()
for row in result_set_4:
new_variation = Product_Variation.from_DB_get_many_product_catalogue(row)
new_variation_type = Product_Variation_Type.from_DB_get_many_product_catalogue(row)
try:
category_list.add_product_variation(new_variation)
category_list.add_product_variation_type(new_variation_type)
except Exception as e:
Helper_App.console_log(f'Error adding variation: {e}')