Fix: 1. Save proc architecture update for records saved with subrecords / linked records, such as Order has Items. \n 2. Style improvements for Product Category, Product, Product Permutation pages.

This commit is contained in:
2024-11-15 08:58:37 +00:00
parent feac2a9c13
commit 6d3f2d2ee7
44 changed files with 2171 additions and 708 deletions

View File

@@ -363,6 +363,7 @@ VALUES
# Product Permutations
INSERT INTO Shop_Product_Permutation (
-- display_order,
id_permutation_temp,
id_product,
description,
cost_local_VAT_excl,
@@ -387,7 +388,8 @@ INSERT INTO Shop_Product_Permutation (
)
VALUES
(
-- 1,
-- 1,
-1,
1,
'Good Red',
5,
@@ -412,6 +414,7 @@ VALUES
),
(
-- 2,
-2,
1,
'Good Blue',
6,
@@ -436,6 +439,7 @@ VALUES
),
(
-- 3,
-3,
2,
'Test product describes good',
10,
@@ -460,6 +464,7 @@ VALUES
),
(
-- 4,
-4,
3,
'Phone describes good',
10,
@@ -484,6 +489,7 @@ VALUES
),
(
-- 5,
-5,
4,
'Laptop describes good',
10,
@@ -508,6 +514,7 @@ VALUES
),
(
-- 6,
-6,
5,
'Smart watch describes good',
10,
@@ -548,6 +555,9 @@ INSERT INTO Shop_Variation (
VALUES
(1, 1, 'RED', 'Red', NULL, NULL)
, (2, 1, 'BLUE', 'Blue', NULL, NULL)
, (3, 1, 'GREEN', 'Green', NULL, NULL)
, (4, 1, 'White', 'White', NULL, NULL)
, (5, 1, 'BLACK', 'Black', NULL, NULL)
, (1, 2, '400ml', '400 millilitres', 6, 400)
, (2, 2, '400g', '400 grams', 4, 400)
, (3, 2, '410g', '410 grams', 4, 410)