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

44 lines
835 B
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
Hedera.Ticket = new Class
({
2016-09-26 09:28:47 +00:00
Extends: Hedera.Form
2016-10-27 11:22:04 +00:00
,onTicketChange: function (ticket)
{
if (!ticket.value)
return;
var batch = new Sql.Batch ();
batch.addValue ('ticket', ticket.value);
2017-03-17 12:42:10 +00:00
this.conn.execQuery ('CALL clientTicketLog (#ticket)', null, batch);
2016-10-27 11:22:04 +00:00
}
2017-03-17 12:42:10 +00:00
,onPrintClick: function ()
{
2017-04-08 11:42:27 +00:00
var params = {ticket: this.hash.get ('ticket')};
2017-03-23 16:20:51 +00:00
this.gui.openReport ('delivery-note', params);
}
,subtotalRenderer: function (column, form)
{
column.value = this.subtotal (form);
}
,repeaterFunc: function (res, form)
{
res.$('subtotal').value = this.subtotal (form);
}
,subtotal: function (form)
{
var price = form.get ('price');
var discount = form.get ('discount');
if (price && form.get ('fixed'))
return form.get ('amount') * price * ((100 - discount) / 100);
else
return null;
}
});