Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test #40

Closed
wants to merge 5 commits into from
Closed

test #40

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,6 @@ Describe how to customize the “My Account” section.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="customer_account_navigation">
<block class="Magento\Customer\Block\Account\SortLinkInterface" name="customer-account-navigation-address-link">
<arguments>
<argument name="label" xsi:type="string" translate="true">Russell Special</argument>
<argument name="path" xsi:type="string">special/link</argument>
<argument name="sortOrder" xsi:type="number">165</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
```

*How would you customize the “Order History” page?*
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,6 @@ While model->load() is deprecated, your repository is the place to work with res

Example:
```xml
public function getById($blockId)
{
$block = $this->blockFactory->create();
$this->resource->load($block, $blockId);
if (!$block->getId()) {
throw new NoSuchEntityException(__('CMS Block with id "%1" does not exist.', $blockId));
}
return $block;
}
```


Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +0,0 @@
## 9.1 Demonstrate ability to customize sales operations

Describe how to modify order processing and integrate it with a third-party ERP system.

*Describe how to modify order processing flow. How would you add new states and statuses for an order?*

*How do you change the behavior of existing states and statuses?*

Described how to customize invoices.

*How would you customize invoice generation, capturing, and management?*

Describe refund functionality in Magento.

*Which refund types are available, and how are they used?*