Merge pull request #2542 from CihanSenturk/master

Item billing information checkbox issue fix
This commit is contained in:
Cüneyt Şentürk 2022-07-20 13:51:33 +03:00 committed by GitHub
commit 76a613c9f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,6 +106,7 @@ const app = new Vue({
} }
this.sale_information = true; this.sale_information = true;
this.form.sale_price = '';
} else { } else {
if (! this.form.sale_information) { if (! this.form.sale_information) {
this.sale_information = false; this.sale_information = false;
@ -113,6 +114,7 @@ const app = new Vue({
} }
this.purchase_information = true; this.purchase_information = true;
this.form.purchase_price = '';
} }
} }
}, },