From 21c43e2308c566b4ca299f1d56b2003b395fbb2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihan=20=C5=9Eent=C3=BCrk?= <53110792+CihanSenturk@users.noreply.github.com> Date: Wed, 20 Jul 2022 11:42:02 +0300 Subject: [PATCH] item billing information checkbox issue fix --- resources/assets/js/views/common/items.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/assets/js/views/common/items.js b/resources/assets/js/views/common/items.js index f05a351b9..819a67e0e 100644 --- a/resources/assets/js/views/common/items.js +++ b/resources/assets/js/views/common/items.js @@ -106,6 +106,7 @@ const app = new Vue({ } this.sale_information = true; + this.form.sale_price = ''; } else { if (! this.form.sale_information) { this.sale_information = false; @@ -113,6 +114,7 @@ const app = new Vue({ } this.purchase_information = true; + this.form.purchase_price = ''; } } },