viernes, 8 de septiembre de 2017

Get Post in iDempiere


-- set search_path to adempiere;

-- select * from fnt_getpost('Y');

create or replace function fnt_getpost(p_posted char(1))
returns varchar
as $$
begin
    return
    (
        select
            case p_posted
                when 'b' then 'NO BALANCEADO'
                when 'c' then 'NO CONVERTIBLE (SIN TASA)'
                when 'E' then 'ERROR DE CONTABILIZACION'
                when 'i' then 'CUENTA NO VALIDA'
                when 'N' then 'NO CONTABILIZADO'
                when 'p' then 'PERIODO CERRADO'
                when 'y' then 'CONTABILIDAD PREPARADA'
                when 'Y' then 'ENTRADA CONTABLE'
            end
    );
end;
$$ language plpgsql;

No hay comentarios:

Publicar un comentario