truncate the descriptor on guidance logic
This commit is contained in:
parent
fb462fbcb1
commit
59b616c2b7
@ -49,7 +49,8 @@ BEGIN
|
||||
|
||||
IF _last_price IS NOT NULL AND _last_date IS NOT NULL THEN
|
||||
_reason := format(
|
||||
'Last price ignored (too old: %s), using target price',
|
||||
-- 'Last price ignored (too old: %s), using target price',
|
||||
'Last price ignored, using target price',
|
||||
to_char(_last_date, 'YYYY-MM-DD')
|
||||
);
|
||||
ELSE
|
||||
@ -61,7 +62,8 @@ BEGIN
|
||||
|
||||
IF _last_price IS NOT NULL AND _last_date IS NOT NULL THEN
|
||||
_reason := format(
|
||||
'Last price ignored (too old: %s), no pricing available',
|
||||
-- 'Last price ignored (too old: %s), no pricing available',
|
||||
'Last price too old, no pricing available',
|
||||
to_char(_last_date, 'YYYY-MM-DD')
|
||||
);
|
||||
ELSE
|
||||
|
Loading…
Reference in New Issue
Block a user