You've already forked guangan
更改为巡检异常上报
This commit is contained in:
@ -27,9 +27,7 @@ class Ticket extends Auth
|
|||||||
$ticket_region = $this->request->post('ticket_region');
|
$ticket_region = $this->request->post('ticket_region');
|
||||||
$ticket_address = $this->request->post('ticket_address');
|
$ticket_address = $this->request->post('ticket_address');
|
||||||
$imgs = $this->request->post('imgs');
|
$imgs = $this->request->post('imgs');
|
||||||
$ticket_project_use = $this->request->post('ticket_project_use');
|
|
||||||
$ticket_work_use = $this->request->post('ticket_work_use');
|
$ticket_work_use = $this->request->post('ticket_work_use');
|
||||||
$ticket_price =$this->request->post('ticket_price');
|
|
||||||
$data = [
|
$data = [
|
||||||
'uid' => $this->staff->id,
|
'uid' => $this->staff->id,
|
||||||
'utype' => $this->staff->id,
|
'utype' => $this->staff->id,
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
namespace plugin\inspection\model;
|
namespace plugin\inspection\model;
|
||||||
|
|
||||||
use Cassandra\Date;
|
use Cassandra\Date;
|
||||||
|
use plugin\ticket\model\TicketInspectionShare;
|
||||||
use plugin\ticket\model\TicketTicket;
|
use plugin\ticket\model\TicketTicket;
|
||||||
use think\admin\Model;
|
use think\admin\Model;
|
||||||
|
|
||||||
@ -73,7 +74,7 @@ class InspectionRecord extends Model
|
|||||||
|
|
||||||
public function ticket()
|
public function ticket()
|
||||||
{
|
{
|
||||||
return $this->morphMany(TicketTicket::class, 'source');
|
return $this->hasMany(TicketInspectionShare::class, 'record_id', 'id');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
35
plugs/think-plugs-ticket/src/model/TicketInspectionShare.php
Normal file
35
plugs/think-plugs-ticket/src/model/TicketInspectionShare.php
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace plugin\ticket\model;
|
||||||
|
|
||||||
|
use think\admin\Model;
|
||||||
|
|
||||||
|
class TicketInspectionShare extends Model
|
||||||
|
{
|
||||||
|
protected $append = ['type_name', 'imgs_arr'];
|
||||||
|
public function getImgsArrAttr($value, $data)
|
||||||
|
{
|
||||||
|
return str2arr($data['imgs'] ?: '', '|');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function type()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(TicketType::class, 'type_id', 'id');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getTypeNameAttr($value, $data)
|
||||||
|
{
|
||||||
|
$type = $this->type()->find();
|
||||||
|
if (!empty($type)) {
|
||||||
|
return $type['name'];
|
||||||
|
} else {
|
||||||
|
return '未知';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function linkedTicket()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(TicketTicket::class, 'linked_ticket_id', 'id');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user