日期:2014-05-16 浏览次数:20605 次
--------------------------------------
--报案三者车信息
--------------------------------------
create or replace procedure reportAuto()
is
begin
?????? insert into TBL_REPORT_AUTO
?????? (N_RPTAUTO_ID,N_RPT_ID,N_CLAIM_ID,C_CASE_NO)
?????? select S_RPTAUTO_ID.Nextval,
?????? from clmsys.tbl_clm a;
?????? --commit;
end;
------------------------------------------------------
--立案*TBL_REGISTERED
------------------------------------------------------
create or replace procedure registered(p_dptCde clmsys.tbl_clm.c_dpt_cde%type)
as
?????? cursor cur_registered(c_dptCde clmsys.tbl_clm.c_dpt_cde%type) is
?????? select a.c_clm_no
?????? from clmsys.TBL_CLMRGST a,clmsys.tbl_clm b
?????? where a.c_clm_no = b.c_clm_no
?????? and b.c_end_typ='1' and b.c_clm_mrk = 'I'
?????? and b.c_dpt_cde = c_dptCde;
begin
?????? open cur_registered();
?????? loop
??????????? fetch cur_registered into ;
??????????? if cur_registered%notfound then
?????????????? dbms_output.put_line('未发现数据。。。');
?????????????? exit;
??????????? else
?????????????? --立案主档表
?????????????? insert into TBL_REGISTERED
?????????????? ()
?????????????? values
?????????????? ();
??????????????
?????????????? --立案保单费用表
?????????????? insert into TBL_REGISTERED_FEE
?????????????? ()
?????????????? values
?????????????? ();
??????????? end if;
?????? end loop;
?????? close cur_registered;
?????? commit;
end;
?
----------------------------------------
--查勘定损主档表
----------------------------------------
create or replace procedure surevy(p_dptCde clmsys.tbl_clm.c_dpt_cde%type)
as
?????? v_dispatchId tbl_dispatch.n_dispatch_id%type;
?????? v_caseNo tbl_claim.c_case_no%type;
?????? v_surveyTm tbl_survey.t_survey_tm%type;
?????? v_surveyAddr tbl_survey.c_survey_addr%type;
?????? v_remark tbl_survey.c_remark%type;
?????? v_surveyFee tbl_survey.n_survey_fee%type;
?????? v_verifyFee tbl_survey.n_verify_fee%type;
?????? v_agentFee tbl_survey.n_agent_fee%type;
?????? v_otherFee tbl_survey.n_other_fee%type;
?????? v_tms tbl_survey.n_tms%type;
?????? v_operEmpCde tbl_survey.c_operate_emp_cde%type;
?????? v_operEmpNme tbl_survey.c_operate_emp_nme%type;
?????? v_operDptCde tbl_survey.c_operate_dpt_cde%type;
?????? v_operDptNme tbl_survey.c_operate_dpt_nme%type;
?????? v_state tbl_survey.c_state%type;
?????? cursor cur_surevy(c_dptCde clmsys.tbl_clm.c_dpt_cde%type) is
?????? select c.n_dispatch_id,a.c_clm_no,a.c_srvy_addr,d.c_srvy_remark,a.n_sry_fee,a.n_chk_fee,
?????? a.n_agt_fee,a.n_oth_fee,a.n_srvy_tms,d.c_srvy_cde,e.c_emp_nme,d.c_srvydpt_cde,f.c_dpt_nme,
?????? decode(d.c_wrk_mrk,'0','3460001','1','3460001','2','3460002','3','3460002','4','3460003',
????????????? '5','3460004','6','3460006')
?????? from clmsys.TBL_SRVY_BASE a,clmsys.tbl_clm b,tbl_dispatch c,
?????? clmsys.tbl_srvy_task d,tbl_emp e,tbl_dpt f
?????? where a.c_clm_no = b.c_clm_no(+)
?????? and a.c_clm_no = c.c_case_no
?????? and a.c_clm_no = d.c_clm_no(+)
?????? and d.c_srvy_cde = e.c_emp_cde
?????? and d.c_srvydpt_cde = f.c_dpt_cde
?????? and b.c_end_typ='1' and b.c_clm_mrk = 'I'
?????? and b.c_dpt_cde = c_dptCde;
begin
?????? open cur_survey(p_dptCde);
?????? loop
??????????? fetch cur_survey into v_dispatchId,v_caseNo,v_surveyTm,v_surveyAddr,v_remark,v_surveyFee,
??????????? v_verifyFee,v_agentFee,v_otherFee,v_tms,v_operEmpCde,v_operEmpNme,v_operDptCde,v_operDptNme,
??????????? v_state;
???????????
??????????? if cur_survey%NOTFOUND then
????????????? dbms_output.put_line('未发现数据。。。');
????????????? EXIT;
??????????? else
????????????? insert into tbl_survey
????????????? (N_DISPATCH_ID,c_case_no,T_SURVEY_TM,C_SURVEY_ADDR,C_REMARK,N_SURVEY_FEE,N_VERIFY_FEE,
????????????? N_AGENT_FEE,N_OTHER_FEE,N_TMS,C_OPERATE_EMP_CDE,C_OP