|
@@ -19,17 +19,20 @@ class InventoryExchangeLogic extends BaseLogic
|
|
|
public static function list(array $data = []): Json
|
|
|
{
|
|
|
$db = InventoryExchangeModel::alias('a')
|
|
|
- ->leftJoin('account b', 'b.id=a.account_id AND b.is_del=' . CommonModel::$del_normal);
|
|
|
+ ->leftJoin('account b', 'b.id=a.account_id AND b.is_del=' . CommonModel::$del_normal)
|
|
|
+ ->leftJoin('good c', 'c.id=a.good_id AND c.is_del=' . CommonModel::$del_normal);
|
|
|
|
|
|
if ($data['status'] != '') $db->where('b.status', $data['status']);
|
|
|
if (($data['inventory_start'] != '') && ($data['inventory_end'] != '')) $db->whereBetween('a.inventory', [$data['inventory_start'], $data['inventory_end']]);
|
|
|
if ($data['username'] != '') $db->whereLike('a.account_username', '%' . $data['username'] . '%');
|
|
|
if ($data['name'] != '') $db->whereLike('a.account_name', '%' . $data['name'] . '%');
|
|
|
if ($data['mobile'] != '') $db->whereLike('b.mobile', '%' . $data['mobile'] . '%');
|
|
|
+ if ($data['good_name'] != '') $db->whereLike('c.good_name', '%' . $data['good_name'] . '%');
|
|
|
+ if ($data['good_code'] != '') $db->whereLike('c.good_code', '%' . $data['good_code'] . '%');
|
|
|
|
|
|
$count = $db->count('a.id');
|
|
|
|
|
|
- $list = $db->field('a.id,a.account_username,b.status,a.account_name,b.mobile,a.inventory,a.updatetime')
|
|
|
+ $list = $db->field('a.id,a.account_username,b.status,a.account_name,b.mobile,a.inventory,a.updatetime,c.good_cover_img,c.good_code,c.good_name,c.moq,c.step,c.good_remark,c.unit_id,c.type,c.price')
|
|
|
->page($data['page'], $data['size'])
|
|
|
->order(['a.id' => 'desc'])
|
|
|
->select()
|