|
@@ -6,7 +6,7 @@
|
6
|
6
|
<![CDATA[
|
7
|
7
|
this.windowTitle = "Typica - Invoice List";
|
8
|
8
|
var table = findChildObject(this, 'table');
|
9
|
|
- table.setQuery("SELECT id, time, invoice, vendor FROM invoices ORDER BY time DESC");
|
|
9
|
+ table.setQuery("SELECT id, time, invoice, vendor, (SELECT sum(cost) FROM invoice_items WHERE invoice_id = id) AS cost FROM invoices ORDER BY time DESC");
|
10
|
10
|
table.openEntry.connect(function(arg) {
|
11
|
11
|
var info = createWindow("invoiceinfo");
|
12
|
12
|
info.setInvoiceID(arg);
|