Search found 20 matches

by MattWoodward
01 Apr 2022, 04:05
Forum: Laravel package
Topic: Hidden Attributes - Showing as Catalog Filters
Replies: 1
Views: 517

Hidden Attributes - Showing as Catalog Filters

I created some hidden attributes recently for a couple of products that required extra information when the were being processed, but that shouldn't even be shown on the front end. During testing I noticed that the hidden attributes are shown under the filters for products on the catalogue pages? Su...
by MattWoodward
01 Apr 2022, 04:00
Forum: Laravel package
Topic: Setting Delivery Status on Error during Processing
Replies: 3
Views: 826

Re: Setting Delivery Status on Error during Processing

Thank you! I have tested that and can see it working as I'd expected now.

I'd have no objection using STAT_UNFINISHED if it would allow me to re-process, but at this point it doesn't sadly. It feels like it should though?

What are the disadvantages you mentioned?
by MattWoodward
30 Mar 2022, 02:35
Forum: Laravel package
Topic: Setting Delivery Status on Error during Processing
Replies: 3
Views: 826

Setting Delivery Status on Error during Processing

I have implemented a custom Delivery Provider. When the process() routine is called, and an error occurs, I want to be able to set the delivery status to a value that will ensure the order is re-processed when the cron job runs next (so it is not missed). In the docs it says to use a value of: STAT_...
by MattWoodward
23 Mar 2022, 01:13
Forum: Laravel package
Topic: updateSync Function Route Address
Replies: 18
Views: 11141

Re: updateSync Function Route Address

Thanks for confirming. I've added a PR for the docs at: https://github.com/aimeos/aimeos-docs/pull/43
by MattWoodward
23 Mar 2022, 00:43
Forum: Laravel package
Topic: Removing Address Section from Checkout
Replies: 4
Views: 994

Re: Removing Address Section from Checkout

Ahh perfect, I've removed that from the config and all is working fine now.

I've also submitted a PR for a change to the docs on this - https://github.com/aimeos/aimeos-docs/pull/42
by MattWoodward
22 Mar 2022, 05:47
Forum: Laravel package
Topic: updateSync Function Route Address
Replies: 18
Views: 11141

Re: updateSync Function Route Address

Ok so another step closer - if I pass "code" to the url with the Code of the service provider this seems to be accepted? Is this the only variable required beyond any other data our provider requires?
by MattWoodward
22 Mar 2022, 05:41
Forum: Laravel package
Topic: updateSync Function Route Address
Replies: 18
Views: 11141

Re: updateSync Function Route Address

Further to that, I'm looking at the incoming updatePush routine - so an external system passing orderId along with a status etc to Aimeos. So I'm trying to ascertain if the above error is becuase of the way the provider is currently configured or because Aimeos expects certain data to be passed when...
by MattWoodward
22 Mar 2022, 04:08
Forum: Laravel package
Topic: Removing Address Section from Checkout
Replies: 4
Views: 994

Re: Removing Address Section from Checkout

Thanks for responding. The following config is in place for this:

Code: Select all

	'client' => [
		'html' => [
			'checkout' => [
				'subparts' => ['delivery', 'payment', 'summary', 'order', 'process'],
by MattWoodward
22 Mar 2022, 04:07
Forum: Laravel package
Topic: updateSync Function Route Address
Replies: 18
Views: 11141

Re: updateSync Function Route Address

Thanks for the response! I've tried sending a few requests to that route address. I'm receiving the following response: No item found for conditions: Array ( [service.code] => ) Does this talk to something I need to include in the service provider / config, or the HTTP request that gets sent to this...
by MattWoodward
18 Mar 2022, 05:51
Forum: Laravel package
Topic: Removing Address Section from Checkout
Replies: 4
Views: 994

Removing Address Section from Checkout

Hi there, Today I have identified how to remove the Address section ( but keep all others incl. Delivery where custom providers will be used ) from the Checkout process ( and submitted a PR for the docs, as the subparts listed for the configuration was incorrect - https://github.com/aimeos/aimeos-do...