金蝶K3系统19年度增值税率调整(16改13,10改9)操作步骤 (转载)

金蝶K3系统19年度增值税率调整(16改13,10改9)操作步骤 (转载)

涉税基础资料变更: 
1、物料
--step1--修改历史物料税率
--update t_ICItemMaterial set FTaxRate=13 where FTaxRate=16
--update t_ICItemMaterial set FTaxRate=9 where FTaxRate=10
--step2--前台对新增物料默认税率进行调整
 
2、客户
--step3--修改客户历史资料默认增值税率
--update t_Organization set FValueAddRate=13 where FValueAddRate=16--修改客户历史资料默认增值税率
--update t_Organization set FValueAddRate=9 where FValueAddRate=10--修改客户历史资料默认增值税率
--step4--前台对新增客户默认税率进行调整
 
3、供应商
--step5--修改默认供应商增值税率
--update t_Supplier set FValueAddRate=13 where FValueAddRate=16--修改默认供应商增值税率
--update t_Supplier set FValueAddRate=9 where FValueAddRate=10--修改默认供应商增值税率
--step6--前台对新增供应商默认税率进q行调整


 价格信息:
1、采购价格
--step7--前台导出采购价格资料
--step8--对所有采购价格数据进行批量反审核和修改价格截止日期
--update t_supplyentry set FDisableDate='2019-03-31 00:00:00.000',fcheckdate=null,FCheckerID=0,fused=0
--step9--前台导入调整后的采购价格
--step10--对新导入的采购价格数据进行批量审批
--update t_supplyentry set fcheckdate='2019-04-01 00:00:00.000',FCheckerID=1,fused=1 where FQuoteTime ='2019-04-01 00:00:00.000'
--在途单价不变的话,可以使用如下语句批量刷新;
--step11--已下单未开完票的采购订单,将税率改为16,手工行业务关闭的订单不考虑  
--update POOrderEntry set FCESS=13 where FQtyInvoice<FQty and FCESS=16 and FMrpClosed=0  
--update POOrderEntry set FCESS=9 where FQtyInvoice<FQty and FCESS=10 and FMrpClosed=0
--在途单价有变化的话,可以走订单变更后再下推发票、也可以在发票环节手动调整。

2、销售价格
--step12--前台导出销售价格资料(客户+物料;客户组+物料)
--step13--对所有销售价格数据进行批量反审核和修改价格截止日期
--update ICPrcPlyEntry set FEndDate='2019-03-31 00:00:00.000',FCheckdate=null,FChecked=0,FCheckerID=0
--step14--前台导入调整后的销售价格
--step15--对新导入的销售价格数据进行批量审批
--update ICPrcPlyEntry set fcheckdate='2019-04-01 00:00:00.000',FCheckerID=1,fused=1 where FMaintDateTime ='2019-04-01 00:00:00.000'
--update ICPrcPlyEntrySpec set FLPriceCtrl=1  where FLPriceCtrl=0--审核销售底价
--未出库单价不变的话,可以使用如下语句批量刷新;
--step16--已下单未开完票的销售订单,将税率改为16,手工行业务关闭的订单不考虑  
--update SEOrderEntry set FCESS=13 where FQtyInvoice<FQty and FCESS=16 and FMrpClosed=0
--update SEOrderEntry set FCESS=9 where FQtyInvoice<FQty and FCESS=10 and FMrpClosed=0
--单价有变化的话,可以走订单变更后再下推发票、也可以在发票环节手动调整。


————————————————
版权声明:本文为CSDN博主「hzfw2008」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/hzfw2008/article/details/88933583

原文地址:https://www.cnblogs.com/sunnywam/p/12272393.html