commerce new product type with two diffrent variation type

This commit is contained in:
2022-03-15 11:57:04 +01:00
parent 3be2a932c7
commit 53beb7b00a
18 changed files with 540 additions and 20 deletions

17
commerce-graph.dot Normal file
View File

@@ -0,0 +1,17 @@
digraph commerce {
materio_checkout_flow
materio_order_type
materio_order_item_type
materio_product_licence_variatio[label=<materio_product_licence_variatio<br/><b>no subscription</b>>]
materio_product_variation_type[label=<materio_product_variation_type<br/><b>recurring</b>>]
materio_product_type
materio_product_license_type
materio_order_type -> materio_checkout_flow
materio_order_item_type -> materio_order_type
materio_product_licence_variatio -> materio_order_item_type
materio_product_variation_type -> materio_order_item_type
materio_product_type -> materio_product_variation_type
materio_product_license_type -> materio_product_licence_variatio
}