Don't prevent importing duplicate products
This commit is contained in:
parent
655da01338
commit
4ed44be7a9
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ class ProductTransformer extends BaseTransformer
|
|||
*/
|
||||
public function transform($data)
|
||||
{
|
||||
if (empty($data->product_key) || $this->hasProduct($data->product_key)) {
|
||||
if (empty($data->product_key)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue