wide-wolf-99519
01/22/2021, 2:20 PMsparse-fall-78248
01/22/2021, 2:26 PMhallowed-coat-68810
01/22/2021, 2:56 PMsilly-motherboard-93855
01/25/2021, 10:40 AMcareful-morning-78883
01/25/2021, 12:34 PMsilly-motherboard-93855
01/25/2021, 1:58 PMwide-wolf-99519
01/25/2021, 4:00 PMsilly-motherboard-93855
01/26/2021, 10:18 AMspy_cms_block_storage
for specific store?
saving block doesn't put it there, running sync:data
doesn't help eithersilly-motherboard-93855
01/26/2021, 12:34 PMwide-wolf-99519
01/27/2021, 11:49 AMbulky-needle-37771
01/27/2021, 12:41 PMquiet-boots-16346
01/27/2021, 4:07 PMAbstractTable
supports it and CmsGui module is an example which uses Button groups. The problem is when I try to add the button groups extending @Gui
layout, expanding the dropdown breaks the table view as well as button has forced btn-view
style in there which breaks the style of btn-danger
. When I look to @Cms
layout file, it uses its own .css and .js files and within the huge JS there is a custom implementation of dropdown logic. Is it fixed in some newer version of CmsGui
? We are using version 3.34.4
. I will post screenshots in the thread.ancient-apartment-59274
01/27/2021, 4:12 PMastonishing-lamp-41374
01/27/2021, 9:05 PMsrc/Pyz/Zed/Process/ProcessDependencyProvider.php
and add my custom middleware plugin from src/Zed/<module>/Communication/Plugin/Configuration/<some_name>ConfugurationPlugin.php
to the profile stack...quick-account-45953
01/28/2021, 1:25 PMmammoth-painting-63509
01/28/2021, 3:12 PM26 Method
Pyz\Zed\ProductLabelStorage\Persistence\ProductLabelStorageQuery
ContainerInterface::queryProductConcreteLocalizedByIds() return
type has no value type specified in iterable type
Orm\Zed\Product\Persistence\SpyProductLocalizedAttributesQuery.
:bulb: Consider adding something like
Orm\Zed\Product\Persistence\SpyProductLocalizedAttribut
esQuery<Foo> to the PHPDoc.
You can turn off this check by setting
checkMissingIterableValueType: false in your
phpstan.neon.
Has anyone a solution to that or should I just add checkMissingIterableValueType: false
to my config?wide-wolf-99519
01/29/2021, 10:48 AMpolite-lunch-97479
01/29/2021, 5:04 PMgentle-vegetable-74963
02/01/2021, 10:57 AMfinally
hook and this worked well. For the latest version of Spryker we switch to using the KernelEvents::TERMINATE
in a EventDispatcherPlugin
. This does not work anymore as the session is now closed (in the KernelEvents::RESPONSE
event), so the Zed call does not have access to currency, locale, etc.
We have a workaround to prevent the session closing in the KernelEvents::RESPONSE
but not 100% sure if this is safe or future-proof. Has anyone got recommendations for this type of feature?crooked-house-89121
02/01/2021, 1:48 PMcomposer require filp/whoops": "^2.9
composer require spryker/mail": "4.7.0
composer require spryker/chart-gui": "^1.1
After successfully updating all of them and starting the project, my issue is that everytime the renderClass
macro from component.twig
is called it appears to return null. Therefore the class names are not set correctly in the frontend. I looked through the different versions in the compontent.twig
but couldn’t find any changes that would lead to such a behaviour. Has anyone run into similar issues, or some idea what could promt this beahviour?alert-airline-11929
02/01/2021, 4:39 PMastonishing-lamp-41374
02/01/2021, 11:46 PMbrew install php
3. pecl install xdebug
4. run php -m -c
bash
...
[Zend Modules]
Xdebug
Zend OPcache
5. setup configuration through vscode with launch,json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: <https://go.microsoft.com/fwlink/?linkid=830387>
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000,
"pathMappings": {
"/data": "${workspaceRoot}",
},
"log": true
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9000
}
]
}
ancient-arm-53696
02/02/2021, 1:44 PMsrc/Generated/Router/codeBucketDE/Pyz
? Using docker b2b shop.wide-wolf-99519
02/02/2021, 2:58 PMconsole cache:empty-all
doesn't seem to clear Zed navigation cache for me, I've had to run navigation:cache:remove
to see changes I've made to Zed nav bar,
Is this my fault, like I've misconfigured something?ancient-apartment-59274
02/03/2021, 9:05 AMcareful-country-34175
02/03/2021, 10:47 AMprice_data_checksum
?crooked-accountant-90611
02/03/2021, 2:38 PMwide-wolf-99519
02/03/2021, 3:24 PMcomposer 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 will not autoload anymore in Composer v2.0. in /usr/share/php/Composer/Autoload/ClassMapGenerator.php:201
should I be worried?purple-belgium-44879
02/03/2021, 7:28 PMCheckoutAvailabilityCest
and CheckoutControllerTest
)?polite-lunch-97479
02/04/2021, 8:00 AM/**
* @return CalculationFacadeInterface
*/
protected function createCalculationFacade(): CalculationFacadeInterface
{
/** @var CalculationFacade $calculationFacade */
$calculationFacade = $this->getLocator()->calculation()->facade();
$calculationDependencyProvider = new CalculationDependencyProvider();
$container = new Container();
$container = $calculationDependencyProvider->provideBusinessLayerDependencies($container);
$calculationBusinessFactory = new CalculationBusinessFactory();
$calculationBusinessFactory->setContainer($container);
$calculationFacade->setFactory($calculationBusinessFactory);
return $calculationFacade;
}
The actual test using these facades is working fine, but some tests (as is from the b2b demoshop) which are running after this are failing now. Has anybody seen a behavior like this before? Will I need to reset facade states or something like that?