| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | public function getDepartTypeCn() |
||
| 39 | { |
||
| 40 | $departType = $this->depart_type; |
||
| 41 | $departType = explode(',', $departType); |
||
| 42 | $departTypeCn = [ |
||
| 43 | 1 => '在线', |
||
| 44 | 2 => '呼叫', |
||
| 45 | 3 => '电销', |
||
| 46 | 4 => '工单' |
||
| 47 | ]; |
||
| 48 | foreach ($departType as &$type) { |
||
| 49 | $type = $departTypeCn[$type] ?? '未知'; |
||
| 50 | } |
||
| 51 | return implode(',', $departType); |
||
| 52 | } |
||
| 53 | } |