We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33b401a commit 7558a98Copy full SHA for 7558a98
1 file changed
functions/lib/integration/parsers/order-to-tiny/index.js
@@ -95,7 +95,7 @@ module.exports = (order, appData, storeId) => {
95
tinyOrder.itens.push({
96
item: {
97
codigo: itemRef,
98
- descricao: item.name ? item.name.substring(0, 120) : itemRef,
+ descricao: item.name ? item.name.substring(0, 120).replaceAll('&', 'e') : itemRef,
99
unidade: 'UN',
100
quantidade: item.quantity,
101
valor_unitario: ecomUtils.price(item)
0 commit comments