Procházet zdrojové kódy

Add annotation field to batch history view.

Neal Wilson před 11 roky
rodič
revize
3bc83bd2ef
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      config/Windows/history.xml

+ 1
- 1
config/Windows/history.xml Zobrazit soubor

@@ -4,7 +4,7 @@
4 4
     </layout>
5 5
     <program>
6 6
         <![CDATA[
7
-			var q = "SELECT time, machine, (SELECT name FROM items WHERE id = roasted_id) AS name, unroasted_total_quantity AS green, roasted_quantity AS roasted, ((unroasted_total_quantity - roasted_quantity) / unroasted_total_quantity * 100::numeric)::numeric(12,2) AS weight_loss, duration FROM roasting_log ORDER BY time DESC";
7
+			var q = "SELECT time, machine, (SELECT name FROM items WHERE id = roasted_id) AS name, unroasted_total_quantity AS green, roasted_quantity AS roasted, ((unroasted_total_quantity - roasted_quantity) / unroasted_total_quantity * 100::numeric)::numeric(12,2) AS weight_loss, duration, annotation FROM roasting_log ORDER BY time DESC";
8 8
 			var table = findChildObject(this, 'table');
9 9
 			table.setQuery(q);
10 10
 			table.hideColumn(1);

Loading…
Zrušit
Uložit