-
Notifications
You must be signed in to change notification settings - Fork 60
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
Ces 984 customergroup product fixes #132
base: develop
Are you sure you want to change the base?
Conversation
… this change prevent the component to be processed
@@ -125,7 +125,7 @@ public function getImportRowFailures(Importer $import, $importLines) | |||
{ | |||
$failedRows = []; | |||
// Creates a validation model and runs the import data through so we can find which rows would fail | |||
$validation = $import->createImportModel(); | |||
$validation = $import->getImportModel(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this change implies we won't be backward compatible @paulpartington. Was not sure where the change came from to be honest.
if (isset($group['name'])) { | ||
$this->createCustomerGroup($group['name'], $taxClassId); | ||
} | ||
$this->validateGroupName($group); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
essentially, this change is so that when the group is not created, we can work out why without having to get into the code
…mport test we have in the configurator
No description provided.