金蝶 更新价格分录表触发器

Posted 唐尧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了金蝶 更新价格分录表触发器相关的知识,希望对你有一定的参考价值。

 1 create trigger [dbo].[xzz_t] on [dbo].[ICSale] for 
 2 update as begin
 3 if update(FStatus)  
 4 begin   
 5 if isnull((select FStatus from inserted ),0)=1 
 6 and isnull((select FStatus from deleted ),0)=0  
 7 
 8 declare @fin int  set @fin=(select finterid from inserted)
 9 update c set FEndDate=dateadd(dd,-1,GETDATE())
10 from ICSale a inner join ICSaleEntry b on a.FInterID=b.finterid 
11 inner join ICPrcPlyEntry c on 
12 a.FCustID=c.FRelatedID and b.FItemID=c.FItemID and b.FtaxPrice<>c.FPrice
13 where a.finterid=@fin
14 
15 update c set FEndDate=2100-10-1
16 from ICSale a inner join ICSaleEntry b on a.FInterID=b.finterid 
17 inner join ICPrcPlyEntry c on 
18 a.FCustID=c.FRelatedID and b.FItemID=c.FItemID and b.FtaxPrice=c.FPrice
19 where a.finterid=@fin
20 
21 INSERT INTO [dbo].[ICPrcPlyEntry]
22            ([FInterID],[FItemID],[FRelatedID],[FModel]
23            ,[FAuxPropID],[FUnitID],[FBegQty]
24            ,[FEndQty],[FCuryID],[FPriceType],[FPrice],[FBegDate]
25            ,[FEndDate],[FLeadTime],[FNote],[FChecked]
26            ,[FIndex],[FTime],[FID],[FBase],[FBase1]
27            ,[FBegQty_Base],[FEndQty_Base],[FInteger],[FClassTypeID],[FBCust]
28            ,[FB2CustCls],[FB2Emp],[FB2EmpCls],[FB2VipGrp]
29            ,[FB2Cust],[FB2ItemID],[FB2Item],[FFlagSave]
30            ,[FCreator],[FOperator])
31 select distinct 2,b.fitemid,a.FCustID,0,0,b.FUnitID,0,0,1,0,b.FTaxPrice,a.FDate,2100-01-01,0,‘‘,
32 1,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,‘‘,0,0
33 from ICSale a inner join ICSaleEntry b on a.FInterID=b.finterid 
34 left join ICPrcPlyEntry c on a.FCustID=c.FRelatedID and b.FItemID=c.FItemID 
35 and c.FPrice=b.FtaxPrice 
36 where a.FROB=1 and c.FItemID is null and a.finterid=@fin 
37 
38 update b set FConsignPrice=c.ftaxprice,FConsignAmount=c.FTaxPrice*fqty
39 from icstockbill a inner join icstockbillentry b on a.FInterID=b.finterid 
40 inner join (select distinct a.fdate,a.FCustID,b.FItemID,b.ftaxprice 
41 from ICSale a inner join ICSaleEntry b on a.FInterID=b.finterid 
42 where a.FROB=1  and a.finterid=@fin ) c on c.FCustID=a.FSupplyID and c.FItemID=b.FItemID
43 and YEAR(c.fdate)=YEAR(a.fdate) and MONTH(c.fdate)=MONTH(a.fdate)
44 
45 end end

 

以上是关于金蝶 更新价格分录表触发器的主要内容,如果未能解决你的问题,请参考以下文章

金蝶云星空拆分录二次开发

SQL Server - 使用表触发器记录表插入,更新,删除行数

金蝶handler中 collection 代码片段理解

销售单怎么快速入金蝶软件里

金蝶采购标志

金蝶KIS专业版,有遇到客户调整物料价格,需要批量性导入新单价替换旧单价,该如何操作?盼指教,谢谢!