Tweak the "create" screen for purchase batches, for more customization

Also add some fields to the batch row fieldset
This commit is contained in:
Lance Edgar 2016-12-30 07:52:56 -06:00
parent 01ed68a3fe
commit e9dd44fa39
2 changed files with 5 additions and 2 deletions

View file

@ -48,7 +48,7 @@
alert(data.error);
} else {
$.each(data.purchases, function(i, purchase) {
purchases.append($('<option value="' + purchase.uuid + '">' + purchase.display + '</option>'));
purchases.append($('<option value="' + purchase.key + '">' + purchase.display + '</option>'));
});
}
});