smartstore / Smartstore

A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 7
http://www.smartstore.com/
GNU Affero General Public License v3.0
1.2k stars 447 forks source link

Rule Builder: Has discounts applied for Cart #277

Open pineportal opened 3 years ago

pineportal commented 3 years ago

I want to create a discount code. For example, $ 10 discount on shopping carts over $ 100. But I do not want to apply to discounted products.

There are three discount models in the store

1. Discounts

image


2. Old price

image


3. Special price

image

I want to specify which discount model should not be applied.

mgesing commented 3 years ago

Special prices and discounts on products are included in the subtotal. I would therefore simply select subtotal > $100 as a rule condition.

pineportal commented 3 years ago

Special prices and discounts on products are included in the subtotal. I would therefore simply select subtotal > $100 as a rule condition.

can not add Product Scope into Cart Scope.

I need to use the cart and product rules at the same time

pineportal commented 3 years ago

I am create product discounts rule image

and create subtotal > $100 image

But can not add product rule into cart rule. image

I do not want a double discount on a product

mgesing commented 3 years ago

I need to use the cart and product rules at the same time

Product rules are intended to automatically assign products to categories. For discount requirements you must use cart rules. Both together cannot work because it makes no sense.

pineportal commented 3 years ago

how to add plugin custom rules? Rule Builder is a powerful tool.We need personalization.We can do this from the plugin?

mgesing commented 3 years ago

You can implement your own ICartRuleProvider or inherit from existing one. Dependency registration is key based. Core rules can be found here.

stefanmuellerdo commented 3 years ago

(for a more general introduction to Rule Builder, please see our new blogpost with four tutorial videos at https://smartstore.com/en/tipps-tricks-rule-builder-und-kunden-spezifische-versand-zahlraten-und-rabatte-in-smartstore-4)