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.
|
|
|
if exists(select * from sysobjects where name='p_rz_cg' and xtype='p')
|
|
|
|
drop procedure p_rz_cg
|
|
|
|
go
|
|
|
|
create procedure p_rz_cg
|
|
|
|
(
|
|
|
|
@psorgcode varchar(10),
|
|
|
|
@psbillno varchar(20),
|
|
|
|
@psparams varchar(200),
|
|
|
|
@psmsg varchar(2000) out
|
|
|
|
)
|
|
|
|
as
|
|
|
|
begin
|
|
|
|
update t_order_head set rzdate=convert(varchar(10),getdate(),21),
|
|
|
|
rztime=convert(varchar(8),getdate(),108),
|
|
|
|
state='1',
|
|
|
|
statedate=convert(varchar(10),getdate(),21),
|
|
|
|
statetime=convert(varchar(8),getdate(),108)
|
|
|
|
where billno=@psbillno
|
|
|
|
|
|
|
|
set @psmsg=''
|
|
|
|
return(1)
|
|
|
|
end
|
|
|
|
go
|