解决方案: |
1、您可以在库存使用“失效日期维护”的功能(选择显示零结存记录),点击修改,然后再点保存,系统自动将同一批次存货的失效日期改为同一天,修改完后,根据维护过后的失效日期修改相应采购销售表,然后再整理现存量即可。(请不要先删除现存量表中的记录,因为失效日期维护是在现存量的基础上进行的) 2、使用下面的语句根据实际的id号更改系统表(请将ufdata_888_2005中的888改为实际的帐套号) use ufdata_888_2005 update ufsystem..ua_identity set ifatherid=(select max(dlid) from dispatchlists ),ichildid=(select max(idlsid) from dispatchlists) where cacc_id='888' and cvouchtype='dispatch' update ufsystem..ua_identity set ifatherid=(select max(id) from rdrecords ),ichildid=(select max(autoid) from rdrecords) where cacc_id='888' and cvouchtype='rd' |