Commit 03910376 authored by Frank Bergmann's avatar Frank Bergmann

- fixed integer overflow

parent 94c31a26
......@@ -319,7 +319,7 @@ select
p.*,
c.project_project_id as project_id,
to_char(c.effective_date, :date_format) as effective_date_formatted,
to_char(c.effective_date, 'YYMM')::integer * customer_id as effective_month,
to_char(c.effective_date, 'YYMM')::numeric * customer_id as effective_month,
c.creation_user as sales_rep_id,
im_name_from_user_id(c.creation_user) as sales_rep_name,
cust.company_path as customer_nr,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment