首页 > 其他分享 >修改U8启用模块日期以下以库存为例

修改U8启用模块日期以下以库存为例

时间:2023-03-22 18:56:36浏览次数:42  
标签:01 U8 为例 -- 启用 st 模块 where id

注意:以下方法仅适用于你所调整区间没有对应的表单业务发生,如确实要调整,需要删除调整区间内的业务表单,以下场景仅适用于初始化工作未完成需要重新初始化及业务单据不多情况:

--修改库存启用日期 表1 UFDATA下表:  AccInformation
select * from AccInformation  where   csysid='st'  and ctype='Ddate'

--更新表日期为新启用时间

update AccInformation  set cvalue='2023-01-01'  where   csysid='st'  and ctype='Ddate'

--修改库存启用日期 表2:UFSystem下表
select * from UA_Account_sub  where cacc_id='930'  and iyear='9999'  and csub_id='st'
--更新UFSystem下表单日期
update UA_Account_sub  set dSubSysUsed='2023-01-01',dSubOriDate='2023-01-01'  where cacc_id='930'  and iyear='9999'  and csub_id='st'

--UFdata 下结账表GL_mend表,ST表示库存结账:
更新结账区间,对应你更新的启用时间为截止时间。
select * from  GL_mend  where iyear='2022'

update  GL_mend  set bflag_st=1 where iyear='2022'

 

标签:01,U8,为例,--,启用,st,模块,where,id
From: https://www.cnblogs.com/ccnlc/p/17245088.html

相关文章