hedera-web/forms/ecomerce/ticket/ticket.js

43 lines
776 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);
}
2017-10-20 17:09:06 +00:00
,repeaterFunc: function (scope, form)
{
2017-10-20 17:09:06 +00:00
scope.$.subtotal.value = this.subtotal (form);
}
,subtotal: function (form)
{
2017-10-22 00:25:57 +00:00
var row = form.$;
2017-10-22 00:25:57 +00:00
if (row.price && row.fixed)
return row.amount * row.price * ((100 - row.discount) / 100);
else
return null;
}
});