diff --git a/README.md b/README.md index 8253912..fbd932d 100644 --- a/README.md +++ b/README.md @@ -45,4 +45,9 @@ Walk Issues * canceled orders * changed orders * short ships -* exchange rates \ No newline at end of file +* exchange rates + +Things to Demo +* product swap out +* pivot re-org +* don't use filters \ No newline at end of file diff --git a/route_sql/list_changes.sql b/route_sql/list_changes.sql index 7e6e8f1..4b5e69e 100644 --- a/route_sql/list_changes.sql +++ b/route_sql/list_changes.sql @@ -6,7 +6,7 @@ SELECT ,ol.doc->>'stamp' stamp ,ol.doc->>'tag' tag ,ol.doc->>'message' "comment" - ,ol.doc + ,jsonb_pretty(ol.doc) doc ,ol.id ,to_char(round(sum(value_usd),2),'$999,999,999D00') sales from @@ -22,7 +22,7 @@ group BY ,ol.doc->>'stamp' ,ol.doc->>'tag' ,ol.doc->>'comment' - ,ol.doc + ,jsonb_pretty(ol.doc) ,ol.id ) SELECT