Search found 13 matches

by agatqapp
02 Aug 2022, 08:16
Forum: Laravel package
Topic: change currency in payment process
Replies: 1
Views: 439

change currency in payment process

Hello I used laravel aimeos aimeos/aimeos-core 2021.07.* php ~7.1||~8.0 Can i change currency in payment process like for example I add USD/IRR both currency in my aimeos laravel website and add product with both currency price User come and add to cart item with currency IRR and place order But her...
by agatqapp
14 Jul 2022, 11:26
Forum: Laravel package
Topic: product filter jsonapi
Replies: 1
Views: 462

product filter jsonapi

Hello sir I used laravel aimeos aimeos/aimeos-core 2021.07.* php ~7.1||~8.0 In my product list some product has Texts => name/description in en/ar/fr three languages some has 2 en/ar, and some has only one language en when i go in fronted with en in url like domain.com/en/usd/shop/.... then its disp...
by agatqapp
08 Jul 2022, 09:04
Forum: Laravel package
Topic: price number format
Replies: 3
Views: 1083

Re: price number format

Hello I changed a code line in a file vendor\aimeos\aimeos-core\lib\mshoplib\src\MShop\Price\Manager\Standard.php $this->precision = $context->getConfig()->get( 'mshop/price/precision', 2 ); to $locale = $this->getContext()->getLocale(); if($locale->getCurrencyId() !== null && $locale->getCu...
by agatqapp
07 Jul 2022, 08:21
Forum: Laravel package
Topic: price number format
Replies: 3
Views: 1083

price number format

Hello sir I use laravel aimeos version aimeos/aimeos-core 2021.07.* php ~7.1||~8.0 I want to show product price for all currencies with 2 digit decimal like rigtnow but for IRR currency without decimal number only integer like if price is 100.65 USD which are equal to 4262527.50 IRR so in usd it sho...
by agatqapp
08 Feb 2022, 15:05
Forum: Laravel package
Topic: Stripe
Replies: 5
Views: 1146

Re: Stripe

here generate error

Code: Select all

catch( \Aimeos\Controller\Frontend\Exception $e )
		{
			$error = array( $context->getI18n()->dt( 'controller/frontend', $e->getMessage() ) );
			$view->standardErrorList = array_merge( $view->get( 'standardErrorList', [] ), $error );
		}
by agatqapp
06 Feb 2022, 10:45
Forum: Laravel package
Topic: Stripe
Replies: 5
Views: 1146

Re: Stripe

ok, attached payment-body-standard.php and stripe.php
Stripe.php.zip
(6.9 KiB) Downloaded 70 times
by agatqapp
04 Feb 2022, 11:26
Forum: Laravel package
Topic: Stripe
Replies: 5
Views: 1146

Stripe

Hello sir I want to display stripe card detail fields on checkout page I added stripe form on checkout page payment-body-standard.php by stripe js its display card detail form , on submit i create a token and set in input field name "paymenttoken" and create a stripe.php class under aimeos...
by agatqapp
02 Feb 2022, 10:37
Forum: Laravel package
Topic: Review
Replies: 7
Views: 1587

Re: Review

Yes but in this case customer id null, and its show Duplicate entry '1.--product-252570' for key 'mshop_review.unq_msrev_sid_cid_dom_rid' duplicate error for unq_msrev_sid_cid_dom_rid column, i want to add multiple review with a single product according to your change its create 1.--product-252570 f...
by agatqapp
01 Feb 2022, 06:22
Forum: Laravel package
Topic: Review
Replies: 7
Views: 1587

Re: Review

Hello sir I want to add review by api without customer id and order product id. but in review database table add a unique column "unq_msrev_sid_cid_dom_rid" which are duplicate because there are not customer id and i want to create 2 review with a single product like 1.--product-252570 1.-...
by agatqapp
23 Jan 2022, 13:50
Forum: Laravel package
Topic: Review
Replies: 7
Views: 1587

Re: Review

Hello sir I try to create its working fine i create with these data $data = array(); $data['review.domain'] = 'product'; $data['review.refid'] = '252570'; $data['review.name'] = 'Pratik Sharma'; $data['review.comment'] = 'Good Product'; $data['review.rating'] = '5'; $data['review.status'] = '1'; wit...