1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Fix for qty when field is hidden

This commit is contained in:
Hillel Coren 2018-02-01 09:13:45 +02:00
parent 8f4cba1ed8
commit 18d140baf5

View File

@ -820,7 +820,7 @@ function ItemModel(data) {
self.product_key = ko.observable('');
self.notes = ko.observable('');
self.cost = ko.observable(0);
self.qty = ko.observable(0);
self.qty = ko.observable({{ $account->hasInvoiceField('product', 'product.quantity') ? 0 : 1 }});
self.discount = ko.observable();
self.custom_value1 = ko.observable('');
self.custom_value2 = ko.observable('');
@ -922,7 +922,7 @@ function ItemModel(data) {
}
this.isEmpty = function() {
return !self.product_key() && !self.notes() && !self.cost() && !self.qty();
return !self.product_key() && !self.notes() && !self.cost();
}
this.onSelect = function() {}