:发货单生成出库单时,由于是系统自动生成出库单的,所以单据号无法修改,能否让客户可以改动;即销售出库单的单号可以修改?
:运行下列脚本 –修改单据列表中业务单号为发货单,并且隐藏原来的发货单号,发货单号作为查询条件 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’ 。上海企通数字科技有限公司,成立于2003年1月,企通成立20年来始终专注国内企业数字化服务,是一家以管理软件和互联网应用的开发、咨询、营销、培训、实施、服务于一体的管理数字化服务公司。以“推动客户实现行业领先”为己任,以帮助客户“增加收入、提升效率、降低成本、控制风险”为目标,为国内企业提供数字化建设...
