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

56 lines
868 B
JavaScript
Raw Normal View History

2015-02-01 03:21:54 +00:00
Vn.Basket = new Class
({
Extends: Vn.Form
,open: function ()
{
2015-12-10 13:48:43 +00:00
this.close ();
this.isOpen = true;
Vn.BasketChecker.check (this.conn,
2015-07-15 13:39:07 +00:00
this.onBasketCheck.bind (this));
2015-07-10 12:30:08 +00:00
}
2015-02-01 03:21:54 +00:00
,onBasketCheck: function (isOk)
2015-02-01 03:21:54 +00:00
{
2015-12-10 13:48:43 +00:00
if (isOk)
this.loadUi ();
2015-02-01 03:21:54 +00:00
}
,onConfigureClick: function ()
2015-02-01 03:21:54 +00:00
{
2015-08-17 18:02:14 +00:00
Htk.Toast.showWarning (_('RememberReconfiguringImpact'));
2015-07-10 12:30:08 +00:00
this.hash.set ({'form': 'ecomerce/checkout'});
2015-02-01 03:21:54 +00:00
}
,onCatalogClick: function ()
{
this.hash.set ({'form': 'ecomerce/catalog'});
}
,onCheckoutClick: function ()
2015-02-01 03:21:54 +00:00
{
this.hash.set ({'form': 'ecomerce/confirm'});
}
,repeaterFunc: function (res, form)
{
res.$('subtotal').value = this.subtotal (form);
}
,onDeleteClick: function (button, form)
{
if (confirm (_('ReallyDelete')))
form.deleteRow ();
}
,subtotal: function (form)
{
return form.get ('amount') * form.get ('price');
}
});
2015-07-10 12:30:08 +00:00