Search found 14 matches

by switch-cheehau
30 Jun 2021, 08:22
Forum: Help
Topic: Negates in JsonAdm does not work in order/base/service
Replies: 2
Views: 6150

Negates in JsonAdm does not work in order/base/service

Hi Aimeos, Here's what i find out when i'm using jsonadm Working: localhost/admin/jsonadm/order?filter[&&][][==][order.statuspayment]=6 localhost/admin/jsonadm/order?filter[!][][==][order.statuspayment]=6 localhost/admin/jsonadm/order?filter[&&][][==][order.base.service.code]=dhl Not...
by switch-cheehau
30 Jun 2021, 02:02
Forum: Help
Topic: Generate sitemap and store on S3
Replies: 2
Views: 6161

Generate sitemap and store on S3

Hi Aimeos,

I would like to generate sitemap and store on AWS S3, anyway to configure the storing method?

I'm trying to use serverless architecture, hence the local storage is readonly file-system.
by switch-cheehau
29 Jun 2021, 08:29
Forum: Help
Topic: Look for proper way to add additional field in checkout/address page
Replies: 2
Views: 4721

Re: Look for proper way to add additional field in checkout/address page

Hi Aimeos, Thanks for the help. able to make it works. Here's the things i've done. added new column in users table: lib/custom/setup/default/schema/customer.php $table->addColumn( 'passport', 'string', array( 'length' => 32, 'default' => '' ) ); added new field: client/html/templates/checkout/stand...
by switch-cheehau
23 Jun 2021, 03:00
Forum: Help
Topic: Look for proper way to add additional field in checkout/address page
Replies: 2
Views: 4721

Look for proper way to add additional field in checkout/address page

Hi Aimeos, Hope you can guide me on this: I'm trying to add new field passport no. in the checkout process. So in order to make the checkout process seamlessly: Extend the table users and mshop_order_base_address with new column passport adding in users table is to set a default passport number. ada...