用友u8軟件生成銷售出庫單報(bào)錯(cuò)
2018-07-02 09:57 來源:用友
生成銷售出庫單報(bào)錯(cuò)原因分析:經(jīng)檢查出庫單單據(jù)號(hào)帶有特殊符號(hào)‘-’和‘.’所致,請(qǐng)?jiān)诓樵兎治銎骼镞x擇對(duì)應(yīng)帳套執(zhí)行下列語句(注意備份啊!) update rdrecord set ccode=replace(ccode,'-','0') where brdflag=0 and cvouchtype='32' update rdrecord set ccode=replace(ccode,'.','0') where brdflag=0 and cvouchtype='32' 上述兩條語句將出庫單單據(jù)號(hào)中的‘-’和‘.’全該成了0,用戶可以根據(jù)實(shí)際情況進(jìn)行修改。問題解答:經(jīng)檢查出庫單單據(jù)號(hào)帶有特殊符號(hào)‘-’和‘.’所致,請(qǐng)?jiān)诓樵兎治銎骼镞x擇對(duì)應(yīng)帳套執(zhí)行下列語句(注意備份!) update rdrecord set ccode=replace(ccode,'-','0') where brdflag=0 and cvouchtype='32' update rdrecord set ccode=replace(ccode,'.','0') where brdflag=0 and cvouchtype='32' 上述兩條語句將出庫單單據(jù)號(hào)中的‘-’和‘.’全該成了0,用戶可以根據(jù)實(shí)際情況進(jìn)行修改。