|
@@ -146,11 +146,8 @@ Class Manage
|
|
|
|
|
|
$branch_id = Dever::param('branch_id',$data);
|
|
|
if ($branch_id) {
|
|
|
- $temp = explode(',', $branch_id);
|
|
|
- if (isset($temp[1])) {
|
|
|
- $w['group'] = $temp[0];
|
|
|
- $w['appoint_id'] = $temp[1];
|
|
|
- }
|
|
|
+ $w['group'] = $branch_id[0];
|
|
|
+ $w['appoint_id'] = $branch_id[1];
|
|
|
}
|
|
|
|
|
|
if ($w) {
|