From 516264a66ba44d6ae1e9dc8736f1d0993531e8c1 Mon Sep 17 00:00:00 2001 From: Joao Pedro <88340736+JoaoPedro0000@users.noreply.github.com> Date: Mon, 22 Jul 2024 10:04:52 -0300 Subject: [PATCH] fix: Corrige reatividade do componente (#197) --- Models/Version.php | 2 +- assets/src/admin/components/Pedidos.vue | 9 +++------ melhor-envio-beta.php | 2 +- readme.md | 11 +++++++++-- 4 files changed, 14 insertions(+), 10 deletions(-) diff --git a/Models/Version.php b/Models/Version.php index 97b4308a..c2fbde39 100755 --- a/Models/Version.php +++ b/Models/Version.php @@ -4,5 +4,5 @@ class Version { - const VERSION = '2.15.4'; + const VERSION = '2.15.5'; } diff --git a/assets/src/admin/components/Pedidos.vue b/assets/src/admin/components/Pedidos.vue index bf0e6c69..c8449428 100644 --- a/assets/src/admin/components/Pedidos.vue +++ b/assets/src/admin/components/Pedidos.vue @@ -358,12 +358,9 @@ export default { ordersWithValidationProducts() { return this.orders.map((order) => { const products = Object.values(order.products); - const existInvalidProduct = products.some(product => product["type"] === 'invalid'); - return { - ...order, - existInvalidProduct, - products - }; + order.existInvalidProduct = products.some(product => product.type === 'invalid'); + + return order; }); } }, diff --git a/melhor-envio-beta.php b/melhor-envio-beta.php index 999288e3..36c53b53 100755 --- a/melhor-envio-beta.php +++ b/melhor-envio-beta.php @@ -3,7 +3,7 @@ Plugin Name: Melhor Envio Plugin URI: https://melhorenvio.com.br Description: Plugin para cotação e compra de fretes utilizando a API da Melhor Envio. -Version: 2.15.4 +Version: 2.15.5 Author: Melhor Envio Author URI: melhorenvio.com.br License: GPL2 diff --git a/readme.md b/readme.md index 6cf38d06..5f1ab1a2 100644 --- a/readme.md +++ b/readme.md @@ -1,9 +1,9 @@ === Melhor Envio === -Version: 2.15.4 +Version: 2.15.5 Tags: frete, fretes, cotação, cotações, correios, envio, jadlog, latam latam cargo, azul, azul cargo express, melhor envio Requires at least: 4.7 Tested up to: 6.5 -Stable tag: 2.15.4 +Stable tag: 2.15.5 Requires PHP: 7.2+ Requires Wordpress 4.0+ Requires WooCommerce 4.0+ @@ -68,6 +68,13 @@ Observação: Atenção com as medidas de unidades utilizadas, cuidado se você Pronto! o plugin do Melhor Envio está funcionando. == Changelog == += 2.15.5 = +* Corrige reatividade na adição dos dados de NF. + += 2.15.4 = +* Adiciona plugins requiridos pelo ME. +* Adiciona tratativas para produtos excluídos. + = 2.15.3 = * Corrige lentidão no checkout.