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

38 lines
665 B
JavaScript
Raw Normal View History

2022-11-16 01:44:39 +00:00
import './style.scss';
2022-11-16 01:44:39 +00:00
export default new Class({
2022-11-15 21:26:48 +00:00
Extends: Hedera.Form,
2022-11-16 01:44:39 +00:00
Template: require('./ui.xml'),
2022-11-15 21:26:48 +00:00
open() {
2022-05-24 10:18:44 +00:00
this.close();
2015-12-10 13:48:43 +00:00
this.isOpen = true;
2022-05-30 01:30:33 +00:00
Hedera.BasketChecker.check(this.conn, this.hash,
2022-05-24 10:18:44 +00:00
this.onBasketCheck.bind(this));
2022-11-15 21:26:48 +00:00
},
2015-02-01 03:21:54 +00:00
2022-11-15 21:26:48 +00:00
onBasketCheck(isOk) {
2015-12-10 13:48:43 +00:00
if (isOk)
2022-05-24 10:18:44 +00:00
this.loadUi();
2022-11-15 21:26:48 +00:00
},
2016-07-22 20:00:27 +00:00
2022-11-15 21:26:48 +00:00
activate() {
2022-05-28 01:18:06 +00:00
this.$.items.setInfo('bi', 'myBasketItem', 'hedera');
2022-11-15 21:26:48 +00:00
},
2015-02-01 03:21:54 +00:00
2022-11-15 21:26:48 +00:00
onConfigureClick() {
2022-05-24 10:18:44 +00:00
Htk.Toast.showWarning(_('RememberReconfiguringImpact'));
2022-05-30 01:30:33 +00:00
this.hash.setAll({form: 'ecomerce/checkout'});
2022-11-15 21:26:48 +00:00
},
2022-11-15 21:26:48 +00:00
onDeleteClick(form) {
2022-05-24 10:18:44 +00:00
if (confirm(_('ReallyDelete')))
form.deleteRow();
2022-11-15 21:26:48 +00:00
},
2022-11-15 21:26:48 +00:00
subtotal(form) {
2022-05-28 15:49:46 +00:00
return form.$.amount * form.$.price;
}
});