Hola a todos, tengo un problema y nose cual es verdaderamete el problema, el problema es este: cuando hago el llamando a una funcion dentro del script solo me ingresa un dato pero el segundo ya no:
script:
<SqlMethod name="insertFactAct" type="preparedStatement" connection="true" return="rowcount">
<SqlMethodComment><\SqlMethodComment>
<sql>
<![CDATA[
Select c_insert_factacct(to_number(?),to_number(?),to_num er(?))
]]>
</sql>
<Paramenter name="mfact_fact_acct_id"/>
<Paramenter name="m_tip_fact"/>
<Paramenter name="m_doc_fact"/>
</SqlMethod >
Funcion c_insert_factacct: en PostGres
retorn numeric;
pro numeric:=0;
det numeric:=0;
begin
select pre_pro, des_pro into pro, det
from producto
where cod_pro=producot;
insert into fact_acct (cod_fac, tip_fact, dos_dact) values(mfact_fact_acct_id,
m_tip_fact*pre_pro,m_doc_fact*det);
return null;
la funcion si funcion, pero es posible q el retorno tenga q ver con el script , ayudanme porfavor