From 63132aaad988f8693fea739f28cf2d1490b0d601 Mon Sep 17 00:00:00 2001 From: Grzegorz Sadowski Date: Mon, 4 Nov 2024 14:42:14 +0100 Subject: [PATCH] Add missing entities to 1.14 --- config/packages/_sylius.yaml | 9 +++++++++ src/Entity/Channel/ShopBillingData.php | 18 ++++++++++++++++++ src/Entity/Shipping/ShippingMethodRule.php | 18 ++++++++++++++++++ src/Entity/User/AvatarImage.php | 18 ++++++++++++++++++ 4 files changed, 63 insertions(+) create mode 100644 src/Entity/Channel/ShopBillingData.php create mode 100644 src/Entity/Shipping/ShippingMethodRule.php create mode 100644 src/Entity/User/AvatarImage.php diff --git a/config/packages/_sylius.yaml b/config/packages/_sylius.yaml index 2a6978677b..b1f7394abb 100644 --- a/config/packages/_sylius.yaml +++ b/config/packages/_sylius.yaml @@ -54,6 +54,9 @@ sylius_channel: model: App\Entity\Channel\Channel sylius_core: resources: + avatar_image: + classes: + model: App\Entity\User\AvatarImage product_image: classes: model: App\Entity\Product\ProductImage @@ -72,6 +75,9 @@ sylius_core: channel_pricing_log_entry: classes: model: App\Entity\Channel\ChannelPricingLogEntry + shop_billing_data: + classes: + model: App\Entity\Channel\ShopBillingData sylius_currency: resources: @@ -214,6 +220,9 @@ sylius_shipping: translation: classes: model: App\Entity\Shipping\ShippingMethodTranslation + shipping_method_rule: + classes: + model: App\Entity\Shipping\ShippingMethodRule shipping_category: classes: model: App\Entity\Shipping\ShippingCategory diff --git a/src/Entity/Channel/ShopBillingData.php b/src/Entity/Channel/ShopBillingData.php new file mode 100644 index 0000000000..402da88584 --- /dev/null +++ b/src/Entity/Channel/ShopBillingData.php @@ -0,0 +1,18 @@ +