Skip to content

Commit 64f8f86

Browse files
committed
MAGNIMEX-283: Customers generation fix
1 parent 64e4d0a commit 64f8f86

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

app/code/Magento/ImportExport/Model/Import/AbstractEntity.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,13 @@ abstract class AbstractEntity
153153
*/
154154
protected $_processedRowsCount = 0;
155155

156+
/**
157+
* Need to log in import history
158+
*
159+
* @var bool
160+
*/
161+
protected $logInHistory = false;
162+
156163
/**
157164
* Rows which will be skipped during import
158165
*
@@ -670,6 +677,16 @@ public function isRowAllowedToImport(array $rowData, $rowNumber)
670677
return $this->validateRow($rowData, $rowNumber) && !isset($this->_skippedRows[$rowNumber]);
671678
}
672679

680+
/*
681+
* Is import need to log in history.
682+
*
683+
* @return bool
684+
*/
685+
public function isNeedToLogInHistory()
686+
{
687+
return $this->logInHistory;
688+
}
689+
673690
/**
674691
* Validate data row
675692
*

0 commit comments

Comments
 (0)