【转载】U8 通过后台数据库反启用各模块(转)
通過后臺數(shù)據(jù)庫反啟用用友erp各模塊
(一)固定資產(chǎn)模塊反啟用:
update accinformation set cvalue='' where csysid='FA' and ctype='ddate'
--可省 and (cid='601'or cid='05'or cid='603'OR CID='602' OR CID='03'OR CID='06')
update gl_mend set bflag_FA=0
delete ua_account_sub where (cacc_id='001') and (cSub_Id = 'FA')
(二)工資模塊反啟用:
update accinformation set cvalue='' where csysid='wa' and ctype='ddate'
--可省 and (cid='601'or cid='05'or cid='603')
update gl_mend set bflag_Wa=0
delete ua_account_sub where (cacc_id='001') and (cSub_Id = 'Wa')
(三)采購模塊反啟用:
update accinformation set cvalue='' where csysid='PU' and ctype='ddate'
--可省 and (cid='602'or cid='122'or cid='167')
update gl_mend set bflag_PU=0
delete ua_account_sub where (cacc_id='001') and (cSub_Id = 'PU')
(四)銷售模塊反啟用:
update accinformation set cvalue='' where csysid='SA' and ctype='ddate'
--可省 and (cid='602'or cid='143'or cid='215')
update gl_mend set bflag_SA=0
delete ua_account_sub where (cacc_id='001') and (cSub_Id = 'SA')
(五)庫存模塊反啟用:
update accinformation set cvalue='' where csysid='st' and ctype='ddate'
--可省 and (cid='602'or cid='143')
update gl_mend set bflag_st=0
delete ua_account_sub where (cacc_id='001') and (cSub_Id = 'st')
(六)存貨模塊反啟用:
update accinformation set cvalue=''
where csysid='IA' and ctype='ddate'
--可省 and (cid='602'or cid='104')
update gl_mend set bflag_IA=0
delete ua_account_sub where (cacc_id='001') and (cSub_Id = 'IA')
(七)應收模塊反啟用:
update accinformation set cvalue=''
where csysid='AR' and ctype='ddate'
--可省 and (cid='29'or cid='11')
update gl_mend set bflag_AR=0
delete ua_account_sub where (cacc_id='001') and (cSub_Id = 'AR')
(八)應付模塊反啟用:
update accinformation set cvalue=''
where csysid='AP' and ctype='ddate'
--可省 and (cid='24'or cid='09')
update gl_mend set bflag_AP=0
delete ua_account_sub where (cacc_id='001') and (cSub_Id = 'AP')
總結(jié)
以上是生活随笔為你收集整理的【转载】U8 通过后台数据库反启用各模块(转)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Ubuntu18.0.4查看显示器型号
- 下一篇: Python3 From Zero——{