电脑故障

位置:IT落伍者 >> 电脑故障 >> 浏览文章

进销存管理系统权限管理功能的实现(二)[2]


发布日期:2019/2/27
 
——此文章摘自《Delphi 数据库开发经典案例解析》定价特价购买>>http://tracklinktechcn/?m_id=dangdang&a_id=A&l=&l_type= width= height= border= nosave>

//检查checkbox状态判断是否给该用户客户资料维护权限

if checkboxChecked then

begin

order:=strtoint(MaxNumber)+;

str:=inttostr(order);

adocommandCommandText:=insert into 权限清单([权限序号][用户编号][权限名称])

values(+str+++UserNumber+++checkboxCaption++);

adocommandExecute;

end;

//检查checkbox状态判断是否给该用户进货单访问权限

if checkboxChecked then

begin

order:=strtoint(MaxNumber)+;

str:=inttostr(order);

adocommandCommandText:=insert into 权限清单([权限序号][用户编号][权限名称])

values(+str+++UserNumber+++checkboxCaption++);

adocommandExecute;

end;

//检查checkbox状态判断是否给该用户销售单访问权限

if checkboxChecked then

begin

order:=strtoint(MaxNumber)+;

str:=inttostr(order);

adocommandCommandText:=insert into 权限清单([权限序号][用户编号][权限名称])

values(+str+++UserNumber+++checkboxCaption++);

adocommandExecute;

end;

//检查checkbox状态判断是否给该用户库存查询权限

if checkboxChecked then

begin

order:=strtoint(MaxNumber)+;

str:=inttostr(order);

adocommandCommandText:=insert into 权限清单([权限序号][用户编号][权限名称])

values(+str+++UserNumber+++checkboxCaption++);

adocommandExecute;

end;

//检查checkbox状态判断是否给该权限管理权限

if checkboxChecked then

begin

order:=strtoint(MaxNumber)+;

str:=inttostr(order);

right>[http://developcsaicn/delphi/htm>] [] [http://developcsaicn/delphi/htm>] [http://developcsaicn/delphi/htm>] [http://developcsaicn/delphi/htm>]

上一篇:进销存管理系统权限管理功能的实现(二)[3]

下一篇:进销存管理系统权限管理功能的实现(二)[1]