Task
The 1C CommerceML export still contains products with ПометкаУдаления=true. They should not enter the new catalog.
Short answer
Add an export condition to the Товар node: the simple option is ПометкаУдаления equals false or is not equal to true. Use ^(false|0|Нет)$ only if the export contains several “do not delete” notations.
How to do it in Eofferix
In the XML/YML snapshot, select the repeated
Товарnode.Open the node settings.

The animation shows opening settings for the repeated product node. Method 1: set
ПометкаУдаленияEqualsfalse.
This is one condition variant; the other variants do not need to be added. Method 2: you can keep all products where
ПометкаУдаленияisNot equaltotrue.
This is one condition variant; the other variants do not need to be added. Method 3: use regular expression
^(false|0|Нет)$(matches “do not delete” values:false,0, orНет) if notations are mixed.
This is one condition variant; the other variants do not need to be added.
Before / after
Before
source data<КоммерческаяИнформация ВерсияСхемы="2.10">
<Каталог>
<Товары>
<Товар>
<Ид>SKU-8001</Ид>
<Наименование>Hudson lamp</Наименование>
<ПометкаУдаления>false</ПометкаУдаления>
</Товар>
<Товар>
<Ид>SKU-8002</Ид>
<Наименование>Parker chair</Наименование>
<ПометкаУдаления>true</ПометкаУдаления>
</Товар>
<Товар>
<Ид>SKU-8003</Ид>
<Наименование>Harbor shelf</Наименование>
<ПометкаУдаления>Нет</ПометкаУдаления>
</Товар>
</Товары>
</Каталог>
</КоммерческаяИнформация>After
result<КоммерческаяИнформация ВерсияСхемы="2.10">
<Каталог>
<Товары>
<Товар>
<Ид>SKU-8001</Ид>
<Наименование>Hudson lamp</Наименование>
<ПометкаУдаления>false</ПометкаУдаления>
</Товар>
<Товар>
<Ид>SKU-8003</Ид>
<Наименование>Harbor shelf</Наименование>
<ПометкаУдаления>Нет</ПометкаУдаления>
</Товар>
</Товары>
</Каталог>
</КоммерческаяИнформация>