-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9374 from adobe-commerce-tier-4/PR-11-19-2024
[Support Tier-4 chittima] 11-19-2024 Regular delivery of bugfixes and improvements
Showing
13 changed files
with
908 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 4 additions & 5 deletions
9
app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldCsv.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 4 additions & 5 deletions
9
app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldExcel.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...agento/Reports/Test/Integration/Controller/Adminhtml/Report/Product/ExportSoldCsvTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
/** | ||
* Copyright 2024 Adobe | ||
* All Rights Reserved. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\Reports\Test\Integration\Controller\Adminhtml\Report\Product; | ||
|
||
use Magento\TestFramework\TestCase\AbstractBackendController; | ||
|
||
/** | ||
* @magentoAppArea adminhtml | ||
*/ | ||
class ExportSoldCsvTest extends AbstractBackendController | ||
{ | ||
public function testExecute() : void | ||
{ | ||
$this->dispatch('backend/reports/report_product/exportSoldCsv'); | ||
$this->assertEquals(302, $this->getResponse()->getHttpResponseCode()); | ||
} | ||
} |
Oops, something went wrong.