-
Hi,
I have an issue with breadcrumbs on PDP, the main category and the sub category is swapped.
Act
Hi, I have an issue with breadcrumbs on PDP, the main category and the sub category is swapped. Actually the categories are stored in wrong order in the storage. Does anyone have the same issue? I have spryker/product-category-storage v1.8.0 The latest is 2.0.0 but I have not seen any hint for fixing in the repository (if…
-
When i am using the b2c shop suddenly the frontend and backend get error with "Connection refused [
When i am using the b2c shop suddenly the frontend and backend get error with "Connection refused [<tcp://127.0.0.1:10009>] " i don't know why., can anyone help to resolve this issue.,
-
in spryker/category there was getNodeById (depracated) facade method, and since it seems to be gone
in spryker/category there was getNodeById (depracated) facade method, and since it seems to be gone in category 5.0, is there any replacement method or do I have to reimplement it by myself?
-
Hello again 🙂,
in spryker i noticed several times, that instead of giving null
Hello again 🙂, in spryker i noticed several times, that instead of giving null or an exception, the implementation gives back an empty transfer object anyway. For example the method getCustomerOrderByOrderReference() in SalesFacadeInterface will always return an OrderTransfer even it is has not found a corresponding entity…
-
is there a place in documentation which describes good practices when it comes to error handling and
is there a place in documentation which describes good practices when it comes to error handling and reporting inside event listeners? I'm asking this question because I have event listener which sends requests to an external API and would like to know what to do if API returns error response
-
Hi @all,
does anyone have a running solution to add a time range to spryker zed gui tables? The act
Hi @all, does anyone have a running solution to add a time range to spryker zed gui tables? The actually search solution is terrible slow . The timeframe should be selected via zed gui and working the search aswell.
-
Is there a known issue that the measurement unit fields in spy_sales_order_item aren't populated? De
Is there a known issue that the measurement unit fields in spy_sales_order_item aren't populated? Debugged a little, item transfers inside quote transfer do have it, but it doesn't arrive in the db when the order is finally saved. Any ideas?
-
Could somebody please explain the value in field spy_sales_order_item.price_to_pay_aggregation? Is i
Could somebody please explain the value in field spy_sales_order_item.price_to_pay_aggregation? Is it just net price + tax per single quantity? Or will it be the sum of all quantities?
-
Hi!
We are currently updating spryker features from release version 202001 to version 202009.
We use
Hi! We are currently updating spryker features from release version 202001 to version 202009. We use this approach to do the update, because we have quite a lot of changes in the Pyz namespace https://sprykercommunity.slack.com/archives/CKJRJM5FG/p1601987134066100?thread_ts=1601901286.060500&cid=CKJRJM5FG We also use our…
-
Hi guys, I need to export orders via a Middleware as a CSV. We need one file per order and one line
Hi guys, I need to export orders via a Middleware as a CSV. We need one file per order and one line per orderitem. I need something like this in the end: order_nr,position,article_numer123,1,article1123,2,article2123,3,article3 What's the best way to solve this?
-
Okay, there is a port option in filesystem config. Set it to 22 and still no success. After a minute
Okay, there is a port option in filesystem config. Set it to 22 and still no success. After a minute or two I'm getting: Could not connect to host: [foo.host.com](http://foo.host.com), port:22 Does the filesystem support SFTP at all? Or is it always FTPS?
-
Hi there, is it possible to use a fixed value in the
Hi there, is it possible to use a fixed value in the Mapper?
-
Hi guys, I've been trying to install the b2c-demo-shop. For the most parts I've been following the i
Hi guys, I've been trying to install the b2c-demo-shop. For the most parts I've been following the installation guide (without devvm). But I got this error message after the whole setup process and I'm stuck on it. Anyone experienced the same error/behaviour and could help me out? I'm guessing it has something to do with…
-
Hey guys i would like to know something, its regarding a single user having multiple companies assoc
Hey guys i would like to know something, its regarding a single user having multiple companies associated to him, i would like to know if spryker has standard modules or ways of handling this, of a single user having multiple companies and other cases like for example: • One user having multiple business units per company;…
-
Is it possible to draw a subprocess (statemachine) somehow?
I'm able to draw the main process with
Is it possible to draw a subprocess (statemachine) somehow? I'm able to draw the main process with http://spryker.local/oms/index/draw?process=bigprocess&format=svg&font=14&state= But when trying to draw the subprocess subprocess it fails: http://spryker.local/oms/index/draw?process=subprocess&format=svg&font=14&state=…
-
could someone enlighten me what could the array returned by `Spryker\Zed\Oms\Dependency\Plugin\Comma
could someone enlighten me what could the array returned by Spryker\Zed\Oms\Dependency\Plugin\Command\CommandByOOrder contain? Docs and docblock seem to omit that piece of information https://documentation.spryker.com/docs/t-oms-and-state-machines-spryker-commerce-os
-
Hey! Does anybody know, how to define if a cronjob should run on a certain environment? I see there
Hey! Does anybody know, how to define if a cronjob should run on a certain environment? I see there was a possibility to set run_on_non_production in cronjob definitions. But this does not work anymore with scheduler module shipped by spryker. vendor/spryker/setup/src/Spryker/Zed/Setup/Business/Model/Cronjobs.php is marked…
-
And besides this, we wanted to know how to call a business model from Facade (for Zed), is there any
And besides this, we wanted to know how to call a business model from Facade (for Zed), is there any resource where I can refer to?
-
Hi, I've set up demo and found Spryker runs cron in a very funny way: jenkins run every minute to ru
Hi, I've set up demo and found Spryker runs cron in a very funny way: jenkins run every minute to run spryker.sh which only task is to run curl <http://cli:9000/console> just to run cli.sh as far as I understand just to run queue:worker:start. What's the reason for such cumbersome approach?
-
Hello everyone,
What is the best/recommended solution to handle the translations for Zed/Backoffice
Hello everyone, What is the best/recommended solution to handle the translations for Zed/Backoffice (Spryker B2B)? I am right now using the following solution in my custom module. Is this right way? or any others? $config[TranslatorConstants::TRANSLATION_ZED_FILE_PATH_PATTERNS] = [ APPLICATION_ROOT_DIR .…
-
Hi,
I'm trying to update an order
```$order = new OrderTransfer();
$order->setEmail('
Hi, I'm trying to update an order $order = new OrderTransfer();$order->setEmail('<mailto:steve.rogers@example.org|steve.rogers@example.org>');/** @var SalesFacadeInterface $salesFacade **/$salesFacade->updateOrder($order, $orderId); and I get Call to a member function getTaxTotal() on null because during this update…
-
Hello guys! My xdebug suddenly stopped working! I've already tried rebooting, reinstalling the proje
Hello guys! My xdebug suddenly stopped working! I've already tried rebooting, reinstalling the project, purging the docker machines, using different browsers and IDEs. Does anyone have any idea on what I can try to resolve this? These are my debug configs:
-
Hello guys, we would like to use filters of the type 'range' for some attributes. It works so far, o
Hello guys, we would like to use filters of the type 'range' for some attributes. It works so far, only we noticed that the empty 'range filters' are always displayed in the Yves frontend. Unused 'single-select' and 'multi-select' filters are hidden in the product list, but the 'range' filters are not. Has anyone seen this…
-
wha is the shape of a response transfer object? is there an example in the codebase somewhere? an xm
wha is the shape of a response transfer object? is there an example in the codebase somewhere? an xml example?
-
Hi there, I've just set up demo, where I can find backend password? Looks like it's not in `deploy.y
Hi there, I've just set up demo, where I can find backend password? Looks like it's not in deploy.yml. Also, how can I get to Jenkins? Thank you.
-
I'm having a business test using several facades to place an order. In the business tester, I'm crea
I'm having a business test using several facades to place an order. In the business tester, I'm creating these facades like this: /** * @return CalculationFacadeInterface */ protected function createCalculationFacade(): CalculationFacadeInterface { /** @var CalculationFacade $calculationFacade */ $calculationFacade =…
-
Hello, I'm trying to run hello world
• running command docker/sdk console code:generate:module:yves
Hello, I'm trying to run hello world • running command docker/sdk console code:generate:module:yves HelloWorld • having 404 on http://yves.de.spryker.local/hello-world cleaning cache and restarting docker doesn't help, any ideas?
-
```> node ./node_modules/@spryker/oryx-for-zed/build
♈ @spryker/oryx 1.4.0
♈ @spryker/oryx-for-
does anyone has the idea what might have been missing ?
-
I've got a lot of deprecation notices while running `composer dump-autoload --optimize` like
```Dep
I've got a lot of deprecation notices while running composer dump-autoload --optimize like Deprecation Notice: Class PyzTest\Zed\ProductRelation\ProductRelationPresentationTester located in ./tests/PyzTest/Zed/ProductRelation/_support/ProductRelationPresentationTester.php does not comply with psr-4 autoloading standard. It…
-
Hello together, has any of you seen this kind of behaviour? There are several prices per store for t
Hello together, has any of you seen this kind of behaviour? There are several prices per store for the same product. Is the unique check done by price_data_checksum?