Merge pull request '2499 - Allow zero quantity' (#411) from 2499-sale_quantity_zero into dev
gitea/salix/pipeline/head This commit looks good Details

Reviewed-on: #411
Reviewed-by: Bernat Exposito <bernat@verdnatura.es>
This commit is contained in:
Bernat Exposito 2020-10-13 08:42:52 +00:00
commit f53c2b1f51
2 changed files with 4 additions and 6 deletions

View File

@ -1,11 +1,9 @@
<mg-ajax path="Entries/{{patch.params.id}}" options="vnPatch"></mg-ajax>
<vn-watcher
vn-id="watcher"
url="Entries"
id-field="id"
data="$ctrl.entry"
params="$ctrl.entry"
save="patch"
form="form">
form="form"
save="patch">
</vn-watcher>
<form name="form" ng-submit="watcher.submit()" class="vn-w-md">
<vn-card class="vn-pa-lg">

View File

@ -386,7 +386,7 @@ class Controller extends Section {
* Updates the sale quantity for existing instance
*/
changeQuantity(sale) {
if (!sale.itemFk || !sale.quantity) return;
if (!sale.itemFk || sale.quantity == null) return;
if (!sale.id)
return this.addSale(sale);