思讯商业之星V7隐藏功能开通

一、储值卡批量充值隐藏功能开通语句:

insert into t_sys_menu(menu_id,branch_flag,menu_name,menu_code,menu_type, open_type, normal_flag)
values ('5211','111111', '批量充卡','w_rm_saving_batchadd', 'EDIT', 'R', '0');
insert t_sys_oper_grant(oper_id, func_id, grant0, other)
select a.oper_id,a.menu_id, '1', ''
from (select oper_id, menu_id from t_sys_operator,t_sys_menu
where (menu_id NOT LIKE '_000') AND (menu_name <> '-')
) as a
where not exists (select * from t_sys_oper_grant b where a.oper_id = b.oper_id and a.menu_id = b.func_id);
update t_sys_oper_grant set grant0='1', grant1='1', grant2='1', grant3='1', grant4='1',grant5='1'
where oper_id='1001'
go

二、开启前台按回车键结算与付款隐藏功能开通语句:(开通此功能便和百威前台收银一样,按回车键就可结算与付款)

insert into t_sys_system(sys_var_id,sys_var_name,sys_var_value)
values('pos_press_enter_key','按回车键结算与付款','1');

以上语句自行到查询分析器执行即可。(注意选对商业之星V7的数据库 hbposv7)

三、开启条码驱动打印功能如下:
在hbtag.ini文件的[app_env]下增加一行:disp_driver=1

原文地址:
http://www.mxyge.cn/?p=2345

Related Posts