...
|
...
|
@@ -24,7 +24,7 @@ module.exports = async() => { |
|
|
|
|
|
const relations = ufoProducts.map(product => {
|
|
|
const duFind = duProducts.find(dp => {
|
|
|
return _.toUpper(dp.articleNumber) === _.toUpper(product.product_code);
|
|
|
return _.toUpper(_.trim(dp.articleNumber)) === _.toUpper(_.trim(product.product_code));
|
|
|
});
|
|
|
const sjFinds = sjProduct.filter(dp => dp.model === product.product_code);
|
|
|
|
...
|
...
|
|