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.

25 lines
546 B

1 year ago
if exists(select * from sysobjects where name ='p_rz_bj' and xtype='p')
drop procedure p_rz_bj
go
create procedure p_rz_bj
(
@psorgcode varchar(10),
@psbillno varchar(20),
@psparams varchar(200),
@psmsg varchar(2000) out
)
as
begin
update t_whquote_head set rzdate=convert(varchar(10),getdate(),21),
rztime=convert(varchar(8),getdate(),108)
where billno=@psbillno
if @@error <> 0
begin
set @psmsg='<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>۵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>ʧ<EFBFBD><EFBFBD>'
return(-1)
end
set @psmsg=''
return(1)
end
go