post date has no space for collateral

This commit is contained in:
Paul Trowbridge 2018-05-30 13:38:27 -04:00
parent 02e6b761b4
commit ee6746d830
3 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@ COPY
(
SELECT
r."Schedule#"
,to_char(r."PostDate",'mm/dd/yyyy') "Post Date"
,to_char(r."PostDate",'mm/dd/yyyy') "PostDate"
,r."Assn#"
,r."Coll#"
,COALESCE(r."AdvanceRate",0) "AdvanceRate"

View File

@ -15,8 +15,8 @@
},
{
"type": "date",
"column_name": "Post Date",
"path": "{Post Date}"
"column_name": "PostDate",
"path": "{PostDate}"
},
{
"type": "text",

View File

@ -4,7 +4,7 @@ SELECT
WHEN '02IN Raw Material' THEN 13097563.42
WHEN '03IN Finished Goods' THEN 35790696.52
ELSE 0
END + SUM("Sales"+"Credits & Adjustments"-"Gross Collections") OVER (PARTITION BY "Schedule#" ORDER BY "Schedule#" ASC, "Post Date" ASC) running_bal
END + SUM("Sales"+"Credits & Adjustments"-"Gross Collections") OVER (PARTITION BY "Schedule#" ORDER BY "Schedule#" ASC, "PostDate" ASC) running_bal
,(LEAST("CollateralBalance" - "Ineligible Amount","MaxEligible")*("AdvanceRate"/100))::NUMERIC(20,2) qualified_collateral
,(("CollateralBalance" - "Ineligible Amount")*("AdvanceRate"/100))::NUMERIC(20,2) qualified_collateral_nl
FROM
@ -16,4 +16,4 @@ WHERE
ORDER BY
"Schedule#" asc
,r."Post Date" asc
,r."PostDate" asc