- 1、本文档共3页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
金蝶K3实现自动核算(供应商管理单价).doc
金蝶K3实现自动核算(供应商管理单价)教育资源库
原金蝶K3的存货核算都是手动核算,比较麻烦!HOHO!现编写SQL语句搞定自动核算!因金蝶K3实现自动核算(物料单价)一文只对物料里面的采购单价获取价格,对于一个物料有多个供应商后有多个采购价格,上文不能实现,因此重新编写SQL语句。 (想尽办法偷懒,HOHO!)
if exists (select * from sysobjects e = #39;icstockbill_jade01#39;) drop trigger icstockbill_jade01
go
create trigger icstockbill_jade01 on icstockbill
for insert,update
as
declare frob int,finterid int,ftrantype int,fstatus int
select frob = frob,finterid = finterid,ftrantype = ftrantype,fstatus = fstatus from inserted
--更新蓝字,未审核状态的 #39;销售出库单#39;,#39;领料单#39;,#39;委外出库单#39;,#39;其他出库单#39;的单价和金额
--更新步骤:供应商供货信息,以前月份的期末单价,以前月份的发出单价
--供应商供货信息只取RMB的平均单价
if frob = 1 and fstatus = 0 and (ftrantype = 21 or ftrantype = 24 or ftrantype = 28 or ftrantype = 29)
begin
--更新供应商供货信息平均单价
update a set fprice = isnull(b.fprice,0),famount = isnull(b.fprice,0) * fqty,fauxprice = isnull(b.fprice,0)
from icstockbillentry a ,(select fitemid,convert(decimal(18,2),avg(fprice)) as fprice from t_supplyentry id) b
id = b.fitemid and a.finterid = finterid
if ftrantype = 24
--更新以前月的平均单价
update x set fprice = y.fprice,famount = y.fprice * fqty,fauxprice = y.fprice
from icstockbillentry x,
(select fstockid,fitemid,fyear * 100 + fperiod as fperiods,
convert(decimal(18,2),avg(case icinvbal
id,fyear * 100 + fperiod) y,
(select fstockid,fitemid,max(fyear * 100 + fperiod) as fperiods from icinvbal
id) z
id = z.fitemid and y.fperiods = z.fperiods
and x.fscstockid = y.fstockid and x.fitemid = y.fitemid and x.finterid = finterid
else
--更新以前月的平均单价
update x set fprice = y.fprice,famount = y.fprice * fqty,fauxprice = y.fprice
from icstockbillentry x,
(select fstockid,fitemid,fyear * 100 + fperiod as fperiods,
convert(decimal(18,2),avg(case icinvbal
id,fyear * 100 + fperiod) y,
(select fstockid,fitemid,max(fyear * 100 + fperiod) as fperiods from icinvbal
id) z
id = z.fitemid and y.fperiods = z.fperiods
and x.fdcstockid = y.fstockid
12下一页 这篇文章来
您可能关注的文档
- 迎国庆暨庆祝第27个教师节文艺晚主持词.doc
- 迎新年职工拔河比赛上的讲话.doc
- 迎新晚会主持.doc
- 迎新晚会主持人词.doc
- 迎新晚会主持台词.doc
- 迎新生师生乒乓球比赛方案.doc
- 迎新联欢晚会主持词.doc
- 迎春联谊会上致辞.doc
- 运动配合中药及艾灸对慢性疲劳综合症大鼠行为及外周血淋巴细胞凋亡的影响.doc
- 运用多种活动形式,满足幼儿发展需要.doc
- 2021-2022学年湖南省常德市安乡县四年级上学期期中语文真题及答案.pdf
- 2023-2024学年河南省南阳市社旗县四年级上学期期中数学真题及答案.pdf
- 2022-2023学年云南省曲靖市四年级下学期期末数学真题及答案.pdf
- 2021-2022学年河南省周口市鹿邑县二年级下册月考语文真题及答案.pdf
- 2018年河南焦作解放区教师招聘考试真题及答案.pdf
- 2019年江西公务员行测考试真题及答案-乡镇.pdf
- 2019中国石油报社应届高校毕业生招聘试题及答案解析.pdf
- 光大银行招聘应届毕业生能力素质测试笔试真题及答案.pdf
- 2024年广西百色教师招聘考试模拟题及答案.pdf
- 2021-2022学年浙江绍兴诸暨市五年级上册语文期末试卷及答案.pdf
文档评论(0)