K3后台修改采购模块(采购订单、收料送检单、外购入库单)供应商信息

来源:互联网 发布:android 仿淘宝分类 编辑:程序博客网 时间:2024/04/29 17:43
select fitemid,fname,* from t_Supplier where fname like '%赛格%'--找到正确的供应商内码select finterid,* from poorder where Fbillno='poord017392'--找到采购订单内码update poorder set FSupplyID=158411 where Fbillno='poord017392'--更新采购订单供应商内码select finterid,* from POInStock where fbillno='DD037746'--找到收料送检单内码update POInStock set FSupplyID=158411 where Fbillno='DD037746'--更新收料送检单供应商内码select finterid,* from icstockbill where fbillno='WIN032261'--找到外购入库单内码update icstockbill set FSupplyID=158411 where Fbillno='WIN032261'--更新外购入库单供应商内码

阅读全文
0 0
原创粉丝点击