gifted-processor-93179
01/17/2023, 8:38 AMrough-agency-88294
01/17/2023, 9:06 AMrough-agency-88294
01/17/2023, 2:40 PMURL/security-merchant-portal-gui/login
any pointers what config I'm missing?gentle-art-90358
01/17/2023, 3:20 PMDevelopmentBusinnessFactory
or more specifically, the BundleFinder
class? I'm trying to add a directoryGlobPattern
to it. Reference:elegant-agent-58713
01/18/2023, 7:36 AMastonishing-pencil-74826
01/18/2023, 7:41 AMglamorous-rocket-21546
01/18/2023, 12:21 PMmillions-river-67963
01/18/2023, 3:28 PMclass HelpsReader implements HelpsInterface
{
protected RestResourceBuilderInterface $restResourceBuilder;
/**
* @param RestResourceBuilderInterface $restResourceBuilder
*/
public function __construct(RestResourceBuilderInterface $restResourceBuilder)
{
$this->restResourceBuilder = $restResourceBuilder;
}
public function getHelps(RestRequestInterface $restRequest): RestResponseInterface
{
// TODO: Implement getHelps() method.
}
}
elegant-cartoon-61249
01/19/2023, 7:49 AMcreamy-wire-93149
01/19/2023, 10:40 AMhallowed-apartment-29399
01/20/2023, 4:49 PMincalculable-telephone-58618
01/21/2023, 7:31 AMelegant-cartoon-61249
01/21/2023, 9:28 AMpurple-coat-90835
01/23/2023, 11:02 AMPyz/Zed/Mail/Presentation/Mail/the_template.html.twig
Depending on the current store, we want to extend this template, so we add template files at Pyz/Zed/MailDE/Presentation/Mail/the_template.html.twig
and Pyz/Zed/MailAT/Presentation/Mail/the_template.html.twig
To not have duplicate code, we now want our store-specific templates to extend our main template like this
{% extends "@Pyz:Mail/Mail/the_template.html.twig" %}
{% block custom_block %}store specific content{% endblock %}
Unfortunately this leads to a timeout when rendering the template. I assume (debugging is not that easy at this point :-)) this is because Spryker & Twig resolve the extended Mail
module to the store-specific module (e.g. MailDE
) which then leads to an endless loop.
Is there a way to supress this behavior?boundless-controller-44328
01/23/2023, 1:19 PMError - Exception: Class "Spryker\Zed\TaxStorage\Communication\Plugin\Publisher\TaxSetPublisherTriggerPlugin" not found
during docker/sdk up. I tried removing the respective plugin but this only causes the import to fail and not setting up products even with unlimited execution time. Any ideas on that?miniature-scientist-44880
01/23/2023, 1:35 PMcalm-toddler-60539
01/23/2023, 3:09 PMfresh-belgium-62598
01/23/2023, 3:38 PMdocker/sdk boot deploy.dev.yml
docker/sdk up
and it's running as expected 🙂
Next thing is to run the tests together with coverage. I found documentation here: https://docs.spryker.com/docs/scos/dev/the-docker-sdk/202009.0/running-tests-with-the-docker-sdk.html#what-is-a-testing-mode
So I did:
docker/sdk up -t
docker/sdk testing
codecept run
but I got some errors I currently do know how to solve (please help me here):fresh-belgium-62598
01/23/2023, 3:41 PMbland-car-16279
01/24/2023, 11:44 AM/Spryker/Client/PersistentCart/Zed/PersistentCartStub.php
) I can see that Client returns Quote and completely
ignores returned QuoteErrorTransfer
in QuoteResponseTransfer
. That causes that there is no error message on Yves and nothing happens.
Temporary I solve it by add
<property name="errors" type="QuoteError[]" singular="error"/>
to Quote transfer and update src/Zed/Yves/CartPage/Controller/CartController.php
from:
$this->getFactory()
->getCartClient()
->addItem($itemTransfer, $request->request->all());
$messageTransfers = $this->getFactory()
->getZedRequestClient()
->getLastResponseErrorMessages();
to:
$quoteTransfer = $this->getFactory()
->getCartClient()
->addItem($itemTransfer, $request->request->all());
$messageTransfers = [];
foreach ($quoteTransfer->getErrors() as $error) {
$messageTransfers[] = (new MessageTransfer())->setValue($error->getMessage());
}
$messageTransfers = array_merge(
$messageTransfers,
$this->getFactory()
->getZedRequestClient()
->getLastResponseErrorMessages()
);
It's the most simple solution, but not the best.calm-toddler-60539
01/25/2023, 8:22 AM$config[SalesConstants::PAYMENT_METHOD_STATEMACHINE_MAPPING] = [
PaymentConfig::PAYMENT_FOREIGN_PROVIDER => 'ForeignPaymentB2CStateMachine01',
UnipayPaymentConfig::PROVIDER_NAME => 'UnipayPayment01'
];
Can someone please tell me what might be the problem?billions-carpet-85832
01/25/2023, 12:07 PMglamorous-rocket-21546
01/25/2023, 12:13 PMthousands-postman-15049
01/25/2023, 2:29 PMnutritious-advantage-64480
01/26/2023, 10:02 AMwitty-engineer-68746
01/26/2023, 10:20 AMnarrow-holiday-67394
01/26/2023, 11:35 AMbland-yacht-60252
01/26/2023, 2:11 PMbland-yacht-60252
01/26/2023, 2:38 PMlate-tiger-76201
01/26/2023, 3:10 PM