Search found 41 matches

by BrianMecler
29 Jul 2023, 12:16
Forum: Help
Topic: Getting physical properties in decorator
Replies: 5
Views: 16424

Re: Getting physical properties in decorator

Thank you, that fixed the issue with the PropertyAdd config value.
by BrianMecler
28 Jul 2023, 20:28
Forum: Help
Topic: Getting physical properties in decorator
Replies: 5
Views: 16424

Re: Getting physical properties in decorator

Maybe the issue with the value input field not showing is a 'me' problem with my install? For different decorator that I have, I tried to switch my beConfig to a 'select' and the select drop down never appears: private array $beConfig = array( 'servicetype' => array( 'code' => 'servicetype', 'intern...
by BrianMecler
28 Jul 2023, 13:18
Forum: Help
Topic: Getting physical properties in decorator
Replies: 5
Views: 16424

Re: Getting physical properties in decorator

Thank you, In Admin > Setup > Plugins I didnt see an existing entry for the PropertyAdd plugin listed. I clicked the button to add a new entry and selected 'PropertyAdd' as the provider. The 'types' option automatically appears, but I am not able to insert a value. Initially the input box does not e...
by BrianMecler
28 Jul 2023, 12:39
Forum: Help
Topic: Frequency of delivery service decorator being called
Replies: 5
Views: 16412

Re: Frequency of delivery service decorator being called

Hello Again, I must have problems in my thought process or logic here.. My code consists of this in my decorator: public function calcPrice( \Aimeos\MShop\Order\Item\Iface $basket, array $options = [] ) : \Aimeos\MShop\Price\Item\Iface { // do something before $price = $this->getProvider()->calcPric...
by BrianMecler
27 Jul 2023, 13:14
Forum: Help
Topic: Getting physical properties in decorator
Replies: 5
Views: 16424

Getting physical properties in decorator

Hello, Laravel Framework 10.13.1, php8.1-fpm, aimeos/aimeos-laravel 2023.04.2 In the Admin I setup physical properties for length, width, height, weight on each product. I want to use these in my FedEx decorators calcPrice() method to generate an accurate shipping quote. Below is how I am currently ...
by BrianMecler
26 Jul 2023, 14:22
Forum: Help
Topic: Frequency of delivery service decorator being called
Replies: 5
Views: 16412

Frequency of delivery service decorator being called

Hello, Laravel Framework 10.13.1, php8.1-fpm, aimeos/aimeos-laravel 2023.04.2 I created 3 delivery services from the Admin: FedEx Ground, FedEx 2 Day, FedEx Overnight I created a single Decorator called FedEx and applied it to each of these services. The service has a beConfig called 'serviceType' w...
by BrianMecler
22 Jul 2023, 11:46
Forum: Help
Topic: Single Delivery Provider with multiple prices?
Replies: 4
Views: 17091

Re: Single Delivery Provider with multiple prices?

I created a new decorator and added it to the new service. I only did the following in the new decorator: public function calcPrice( \Aimeos\MShop\Order\Item\Iface $basket, array $options = [] ) : \Aimeos\MShop\Price\Item\Iface { // do something before $price = $this->getProvider()->calcPrice( $bask...
by BrianMecler
22 Jul 2023, 11:01
Forum: Help
Topic: Single Delivery Provider with multiple prices?
Replies: 4
Views: 17091

Re: Single Delivery Provider with multiple prices?

Could we expand on this topic? I am looking to have the same functionality described here. Is the suggested approach to: - Login to the Admin panel and go to 'Setup' > 'Services' - Add 3 new services, ex: UPS 1 Day, UPS 2 Day , UPS 3 Day - The provider for the 3 new services is 'Standard' Typically ...
by BrianMecler
20 Jul 2023, 11:25
Forum: Help
Topic: Config for checkout standard address states
Replies: 9
Views: 21370

Re: Config for checkout standard address states

Thank you, That was my problem.. I kept trying to add the states and countries under the 'common' key that I found under client/html. I added a 'common' key at the root level and the fields showed up as you said! Prior to that change, I did update 'aimeos/aimeos-laravel' to 2023.07.1 and 'aimeos/ai-...
by BrianMecler
20 Jul 2023, 10:25
Forum: Help
Topic: Config for checkout standard address states
Replies: 9
Views: 21370

Re: Config for checkout standard address states

Thank you for your reply! I did attempt to use the following in 'common' several times: 'common' => [ 'cache' => [ 'force' => false // enforce caching for logged in users ], 'states' => [ 'US' => [ 'CA' => 'California', 'NY' => 'New York', ], ], 'countries' => [ 'US', ], ], Does that appear correctl...