T1-单据打印表头显示部门

需求描述:

T1(V12.1)单据打印,希望在表头上显示经手人所属部门


解决办法:

借助触发器来实现,单据保存自动将经手人所属部门写入表头的自定义1

(以下两个触发器需要单独执行)


--增加/修改

Create Trigger [tr_Dept_name] on [MasterBilldft]

for insert,update

as

Declare @VouchID int, @Dept_name nvarchar(100)

set @VouchID=(Select s_ID from inserted)

set @Dept_name=(select u_name from department where s_id=(select dept_id from employee where s_id=(select emp_id from inserted )))

if exists(select * from billtitlecustomitemsdft where billid=@VouchID) 

begin

update billtitlecustomitemsdft set item1=@dept_name where billid=@VouchID

end

else

begin

insert into billtitlecustomitemsdft (billid,item1) values (@VouchID,@Dept_name)

end


--删除

Create Trigger [tr_Del_Dept_name] on [MasterBilldft]

for delete

as

Declare @VouchID int

set @VouchID=(Select s_ID from deleted)

delete  from billtitlecustomitemsdft where billid=@VouchID


执行完毕后,在单据设计中,将部门的公式设置为:部门:[主项数据."自定义1"] 

然后打印预览查看效果:

T1-单据打印表头显示部门 - 似水无痕 - 用友软件


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值