Vehicle.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. namespace catchAdmin\yunying\model;
  3. use catchAdmin\permissions\controller\User;
  4. use catcher\base\CatchModel as Model;
  5. use catchAdmin\permissions\model\DataRangScopeTrait;
  6. use catchAdmin\permissions\model\Department;
  7. use catchAdmin\permissions\model\Users;
  8. use catchAdmin\yunying\model\VehicleBrand;
  9. use catchAdmin\yunying\model\VehicleColor;
  10. use catchAdmin\yunying\model\StolenVehicle;
  11. class Vehicle extends Model
  12. {
  13. use DataRangScopeTrait;
  14. // 表名
  15. public $name = 'vehicles';
  16. // 数据库字段映射
  17. public $field = array(
  18. 'id',
  19. // 车牌号码
  20. 'license_plate',
  21. // 所属部门
  22. 'department_id',
  23. // 用户id
  24. 'user_id',
  25. // 上牌时间
  26. 'license_time',
  27. // 车架号
  28. 'frame_number',
  29. // 电机号
  30. 'motor_number',
  31. // 车辆品牌
  32. 'brand_id',
  33. // 车辆颜色
  34. 'color_id',
  35. 'car_type',
  36. 'rfid_sn',
  37. 'installer',
  38. // 备注
  39. 'remark',
  40. // 购车日期
  41. 'buydate',
  42. // 上牌员工
  43. 'open_user_id',
  44. // 创建人ID
  45. 'creator_id',
  46. // 创建时间
  47. 'created_at',
  48. // 更新时间
  49. 'updated_at',
  50. // 软删除
  51. 'deleted_at',
  52. );
  53. /**
  54. * 获取车辆列表
  55. */
  56. public function getVehicleList($field, $order)
  57. {
  58. $res = $this->dataRange()
  59. ->catchSearch()
  60. ->append(['depart_name', 'vehicle_state', 'owner', 'brand_name', 'color_name', 'open_user_name'])
  61. ->order($this->aliasField($field), $order)
  62. ->paginate();
  63. return $res;
  64. }
  65. /**
  66. * 获取车辆导出列表
  67. */
  68. public function getVehiclesExportList()
  69. {
  70. $res = $this->dataRange()
  71. ->catchSearch()
  72. ->append(['depart_name', 'vehicle_state', 'owner', 'brand_name', 'color_name', 'open_user_name'])
  73. ->order($this->aliasField('id'), 'desc')
  74. ->select();
  75. return $res;
  76. }
  77. //根据部门搜索
  78. public function searchDepartmentIdAttr($query, $value, $data)
  79. {
  80. if (count($value)) {
  81. $value = $value[count($value) - 1];
  82. return $query->where('department_id', $value);
  83. } else {
  84. return $query;
  85. }
  86. }
  87. //根据车牌搜索
  88. public function searchLicensePlateAttr($query, $value, $data)
  89. {
  90. return $query->where('license_plate', 'like', '%' . $value . '%');
  91. }
  92. //根据车架号搜索
  93. public function searchFrameNumberAttr($query, $value, $data)
  94. {
  95. return $query->where('frame_number', 'like', '%' . $value . '%');
  96. }
  97. //根据电机号搜索
  98. public function searchMotorNumberAttr($query, $value, $data)
  99. {
  100. return $query->where('motor_number', 'like', '%' . $value . '%');
  101. }
  102. //根据上牌时间搜索
  103. public function searchLicenseTimeAttr($query, $value, $data)
  104. {
  105. if (empty($value)) {
  106. return $query;
  107. }
  108. return $query->where('license_time', 'between', $value);
  109. }
  110. //获取部门名称
  111. public function getDepartNameAttr($value)
  112. {
  113. $depart_id = $this->getData('department_id');
  114. return (new Department)->where('id', $depart_id)->value('department_name');
  115. }
  116. //获取车主名称
  117. public function getOwnerAttr($value)
  118. {
  119. $uid = $this->getData('user_id');
  120. return (new Users)->where('id', $uid)->value('realname');
  121. }
  122. //获取开户员工账号
  123. public function getOpenUserNameAttr($value)
  124. {
  125. $uid = $this->getData('open_user_id');
  126. return (new Users)->where('id', $uid)->value('username');
  127. }
  128. //获取车辆品牌名称
  129. public function getBrandNameAttr($value)
  130. {
  131. $bid = $this->getData('brand_id');
  132. return (new VehicleBrand())->where('id', $bid)->value('name');
  133. }
  134. //获取车辆颜色名称
  135. public function getColorNameAttr($value)
  136. {
  137. $cid = $this->getData('color_id');
  138. return (new VehicleColor())->where('id', $cid)->value('name');
  139. }
  140. //获取车辆状态名称
  141. public function getVehicleStateAttr($value)
  142. {
  143. $id = $this->getData('id');
  144. $stolen_info = (new StolenVehicle())->where('vehicle_id', $id)->find();
  145. if (!$stolen_info || in_array($stolen_info['result'], [2, 4])) { //0-待处理 1-已受理 2-已找回 3-已理赔 4-误报
  146. $value = 0;
  147. } else {
  148. $value = 1;
  149. }
  150. return $value;
  151. }
  152. }