0
1
Fork 0
hedera-web-mindshore/web/forms/ecomerce/orders/orders.js

51 lines
898 B
JavaScript
Raw Normal View History

Vn.Orders = new Class
({
Extends: Vn.Form
,activate: function ()
{
Vn.Tpv.check (this.conn);
}
2015-07-10 12:30:08 +00:00
,onBasketClick: function ()
{
2015-07-10 12:30:08 +00:00
this.hash.set ({'form': 'ecomerce/basket'});
}
2015-12-02 17:26:58 +00:00
,repeaterFunc: function (res, form)
{
2015-12-02 17:26:58 +00:00
res.$('link').href = this.hash.make ({
2015-01-31 01:05:12 +00:00
'form': 'ecomerce/ticket',
'ticket': form.get ('ticket_id')
});
}
// TPV
,balanceConditionalFunc: function (field, value)
{
if (value >= 0)
Vn.Node.removeClass (this.$('balance'), 'negative');
else
Vn.Node.addClass (this.$('balance'), 'negative');
}
,onPayButtonClick: function ()
{
2015-12-02 17:26:58 +00:00
var amount = -this.$('debt').value;
2015-02-08 15:38:38 +00:00
amount = amount <= 0 ? null : amount;
var defaultAmountStr = '';
2015-07-10 12:30:08 +00:00
if (amount !== null)
defaultAmountStr = Vn.Value.format (amount, '%.2d');
var amount = parseFloat (prompt (_('AmountToPay:'), defaultAmountStr));
Vn.Tpv.pay (this.conn, amount, null);
}
});