You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
495 B

1 year ago
if exists(select * from sysobjects where name='p_rz_yh' and xtype='p')
drop procedure p_rz_yh
go
create procedure p_rz_yh
(
@psorgcode varchar(10),
@psbillno varchar(20),
@psparams varchar(200),
@psmsg varchar(2000) out
)
as
begin
update t_ask_head set rzdate=convert(varchar(10),getdate(),21),
rztime=convert(varchar(8),getdate(),108),
state='0'
where billno=@psbillno
set @psmsg=''
return(1)
end
go