|
@@ -52,8 +52,17 @@ class QualityGroup extends Base
|
|
|
|
|
|
public function getListByType($type,$orgId){
|
|
|
$ll = [];
|
|
|
- if(in_array($type,[1,2,3,4])){
|
|
|
- $lists = (new \app\common\model\Address())->getListByType($type+2,$orgId);
|
|
|
+
|
|
|
+ if(in_array($type,[1,2,3,4,5])){
|
|
|
+ $ctype = $type;
|
|
|
+ if(in_array($type,[1,2,3,4])){
|
|
|
+ $ctype = $type+2;
|
|
|
+ }
|
|
|
+ if($type == 5){
|
|
|
+ $ctype = 10;
|
|
|
+ }
|
|
|
+
|
|
|
+ $lists = (new \app\common\model\Address())->getListByType($ctype,$orgId);
|
|
|
foreach ($lists as $k=>$v){
|
|
|
$ll[] = [
|
|
|
'id' => $v['id'],
|
|
@@ -62,23 +71,25 @@ class QualityGroup extends Base
|
|
|
'qrcode' => get_qrcode_str('address',$v['id'])
|
|
|
];
|
|
|
}
|
|
|
- }else if($type == 5){ // 日常工作
|
|
|
- $lists = Db::name('daily')
|
|
|
- ->where('del',0)
|
|
|
- ->where('enable',1)
|
|
|
- ->where('org_id',$orgId)
|
|
|
- ->field('id,title')
|
|
|
- ->select();
|
|
|
- $lists = $lists?$lists:[];
|
|
|
- foreach ($lists as $k=>$v){
|
|
|
- $ll[] = [
|
|
|
- 'id' => $v['id'],
|
|
|
- 'title' => $v['title'],
|
|
|
- 'sn' => '',
|
|
|
- 'qrcode' => get_qrcode_str('daily',$v['id'])
|
|
|
- ];
|
|
|
- }
|
|
|
- }else if($type == 6){ // 设备台账
|
|
|
+ }
|
|
|
+// else if($type == 5){ // 日常工作
|
|
|
+// $lists = Db::name('daily')
|
|
|
+// ->where('del',0)
|
|
|
+// ->where('enable',1)
|
|
|
+// ->where('org_id',$orgId)
|
|
|
+// ->field('id,title')
|
|
|
+// ->select();
|
|
|
+// $lists = $lists?$lists:[];
|
|
|
+// foreach ($lists as $k=>$v){
|
|
|
+// $ll[] = [
|
|
|
+// 'id' => $v['id'],
|
|
|
+// 'title' => $v['title'],
|
|
|
+// 'sn' => '',
|
|
|
+// 'qrcode' => get_qrcode_str('daily',$v['id'])
|
|
|
+// ];
|
|
|
+// }
|
|
|
+// }
|
|
|
+ else if($type == 6){ // 设备台账
|
|
|
$lists = Db::name('device')
|
|
|
->where('del',0)
|
|
|
->where('enable',1)
|