Browse Source

Add cost to invoice list

Neal Wilson 9 years ago
parent
commit
37e71b4a6f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      config/Windows/invoicelist.xml

+ 1
- 1
config/Windows/invoicelist.xml View File

6
 		<![CDATA[
6
 		<![CDATA[
7
 			this.windowTitle = "Typica - Invoice List";
7
 			this.windowTitle = "Typica - Invoice List";
8
 			var table = findChildObject(this, 'table');
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
 			table.openEntry.connect(function(arg) {
10
 			table.openEntry.connect(function(arg) {
11
 				var info = createWindow("invoiceinfo");
11
 				var info = createWindow("invoiceinfo");
12
 				info.setInvoiceID(arg);
12
 				info.setInvoiceID(arg);

Loading…
Cancel
Save