金蝶K3实现自动核算(供应商管理单价).doc

金蝶K3实现自动核算(供应商管理单价).doc

  1. 1、本文档共3页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 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下一页 这篇文章来

文档评论(0)

ggkkppp + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档