服务热线:022-26677809 , 13821206318
坚守“用户之友”的初心,做“专业的奋斗者”,始终坚持“持续创新”
首页 > 知识库 > 正文

发货单号能否带到出库单

- 浏览:1086 - 发布时间:2005-12-26 14:07:00.0
问题版本: 12-通2005plus1 问题模块: 9-购销存
所属行业: 0-通用 问题状态: 1-UU通注册用户
关 键 字: 销售 适用产品: 通2005、通10.0
补 丁 号: 开放状态: 0-UU通注册用户
原问题号: 提交时间: 2005-12-26 14:07:00
问题名称: 发货单号能否带到出库单
问题现象: 发货单生成出库单时,由于是系统自动生成出库单的,所以单据号无法修改,能否让客户可以改动;即销售出库单的单号可以修改?
原因分析: 运行下列脚本 --修改单据列表中业务单号为发货单,并且隐藏原来的发货单号,发货单号作为查询条件 Update VouchList Set bArea=1,bShowon=1, bCanset=1,bCondition=1,citemname='发货单号码' where cvouchcode='0303' and cqryfield='cBusCode' Update VouchList Set bArea=1,bShowon=0, bCanset=0,bCondition=0 where cvouchcode='0303' and cqryfield='cDLCode' --修改单据卡片中业务单号为发货单,并且隐藏原来的发货单号 Update invoiceitem_ Set carditemname='发货单号', CardFormula1='发货单号',CardFormula2='发货单号',ShowIt=1,cannotselect=0 where cardnum='0303' and fieldname='cbuscode' Update invoiceitem_ Set ShowIt=0,cannotselect=1 where cardnum='0303' and fieldname='cdlcode' --修改单据卡片中业务单号为发货单,并且隐藏原来的发货单号 Update invoiceitem_ Set carditemname='发货单号', CardFormula1='发货单号',CardFormula2='发货单号',ShowIt=1,cannotselect=0 where cardnum='0303' and fieldname='cbuscode' Update invoiceitem_ Set ShowIt=0,cannotselect=1 where cardnum='0303' and fieldname='cdlcode'
解决方案: 运行下列脚本 --修改单据列表中业务单号为发货单,并且隐藏原来的发货单号,发货单号作为查询条件 Update VouchList Set bArea=1,bShowon=1, bCanset=1,bCondition=1,citemname='发货单号码' where cvouchcode='0303' and cqryfield='cBusCode' Update VouchList Set bArea=1,bShowon=0, bCanset=0,bCondition=0 where cvouchcode='0303' and cqryfield='cDLCode' --修改单据卡片中业务单号为发货单,并且隐藏原来的发货单号 Update invoiceitem_ Set carditemname='发货单号', CardFormula1='发货单号',CardFormula2='发货单号',ShowIt=1,cannotselect=0 where cardnum='0303' and fieldname='cbuscode' Update invoiceitem_ Set ShowIt=0,cannotselect=1 where cardnum='0303' and fieldname='cdlcode' --修改单据卡片中业务单号为发货单,并且隐藏原来的发货单号 Update invoiceitem_ Set carditemname='发货单号', CardFormula1='发货单号',CardFormula2='发货单号',ShowIt=1,cannotselect=0 where cardnum='0303' and fieldname='cbuscode' Update invoiceitem_ Set ShowIt=0,cannotselect=1 where cardnum='0303' and fieldname='cdlcode'