ticket total decimals

This commit is contained in:
Joan Sanchez 2018-08-30 09:49:29 +02:00
parent aa4f0fef5c
commit 30b3d389c7
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ module.exports = Self => {
am.name AS agencyMode,
st.name AS state,
wk.name AS salesPerson,
0 AS total
CAST(0 AS DECIMAL(10, 2)) AS total
FROM ticket t
LEFT JOIN address a ON a.id = t.addressFk
LEFT JOIN province p ON p.id = a.provinceFk