Merge pull request #1752 from YJSoft/fix/admingroup

포인트 그룹 연동 설정에 연동 불가능한 관리그룹은 노출시키지 않음
This commit is contained in:
Kijin Sung 2021-07-22 01:45:57 +09:00 committed by GitHub
commit a3bda2ccd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -162,11 +162,13 @@
</select>
</div>
</div>
<div class="x_control-group" loop="$group_list => $key,$val">
<div class="x_control-group" loop="$group_list => $key,$val" cond="$val->is_admin != 'Y'">
<label class="x_control-label" for="point_group_{$key}">{$val->title}</label>
<div class="x_controls">
<input cond="$val->is_default != 'Y'" type="number" min="0" max="1000" value="{$config->point_group[$key]}" name="point_group_{$key}" id="point_group_{$key}" style="width:50px" />
<!--@if($val->is_default != 'Y')-->
<input type="number" min="0" max="1000" value="{$config->point_group[$key]}" name="point_group_{$key}" id="point_group_{$key}" style="width:50px" />
&nbsp;{$lang->level}
<!--@end-->
<span cond="$val->is_default == 'Y'" style="display:inline-block;padding-top:3px">{$lang->default_group}</span>
</div>
</div>