|
對的,這個我做過,建議修改fa模組的table, 不要修改gl 模組的table, 方法如下:
"fa_book_controls 表存儲固資的帳本信息,該表的initial_period_counter,last_period_counter列和fa_deprn_periods 表中的period_counter相關聯,當固資期間名稱和總帳期間名稱不一致的時候,通過update更新fa_deprn_periods 表的 period_name 列與總帳的期間名稱一致,同時還要更新 fa_calendar_periods 表的period_name 與總帳的期間名稱一致。如update fa_deprn_periods
set period_name='OCT-05'
where book_type_code='FA_TYT'
and period_counter=24070 和 update fa_calendar_periods
set period_name=replace(period_name,'2010','10')
where calendar_type='TJ_FA_CALENDAR'
and substr(period_name,5,4)='2010'" |
|