|
@@ -8,12 +8,13 @@ use app\model\CompanyGoodModel;
|
|
|
use app\model\GoodModel;
|
|
|
use app\model\GroupModel;
|
|
|
use app\model\InventoryExchangeModel;
|
|
|
+use app\model\InventoryShoppingModel;
|
|
|
use app\model\OrderModel;
|
|
|
use think\Exception;
|
|
|
use think\facade\Db;
|
|
|
use think\response\Json;
|
|
|
|
|
|
-class ExchangeLogic extends BaseLogic
|
|
|
+class GoodLogic extends BaseLogic
|
|
|
{
|
|
|
|
|
|
//商品列表
|
|
@@ -21,19 +22,18 @@ class ExchangeLogic extends BaseLogic
|
|
|
{
|
|
|
$db = CompanyGoodModel::alias('a')
|
|
|
->leftJoin('good b', 'b.id=a.good_id AND b.is_del=' . CommonModel::$del_normal)
|
|
|
- ->leftJoin('inventory_exchange c', 'c.account_id=' . self::$aid . ' AND c.good_id=a.good_id')
|
|
|
- ->where(['a.is_del' => CommonModel::$del_normal, 'a.group_id' => self::$group_id, 'b.type' => GoodModel::$type_exchange]);
|
|
|
+ ->where(['a.is_del' => CommonModel::$del_normal, 'a.group_id' => self::$group_id]);
|
|
|
|
|
|
$count = $db->count('a.id');
|
|
|
|
|
|
$list = $db
|
|
|
- ->field('a.id,a.code,a.good_id,b.good_cover_img,b.good_name,b.moq,b.step,c.inventory')
|
|
|
+ ->field('a.id,a.code,a.good_id,b.good_cover_img,b.good_name,b.moq,b.step,b.price,b.type')
|
|
|
->page($data['page'], $data['size'])
|
|
|
->order(['a.is_top' => 'desc', 'a.weight' => 'desc', 'a.id' => 'desc'])
|
|
|
->select()
|
|
|
->toArray();
|
|
|
|
|
|
- return json_show(CommonModel::$success, '获取兑换商品列表成功', ['count' => $count, 'list' => $list]);
|
|
|
+ return json_show(CommonModel::$success, '获取商品列表成功', ['count' => $count, 'list' => $list]);
|
|
|
|
|
|
}
|
|
|
|
|
@@ -41,9 +41,9 @@ class ExchangeLogic extends BaseLogic
|
|
|
public static function goodInfo(string $code = ''): Json
|
|
|
{
|
|
|
$rs = CompanyGoodModel::alias('a')
|
|
|
- ->field('a.id,a.code,a.good_id,b.good_cover_img,b.good_code,b.good_name,b.moq,b.step,b.good_banner_img,b.good_img,b.good_param,b.status,c.inventory,d.unit')
|
|
|
+ ->field('a.id,a.code,a.good_id,b.good_cover_img,b.good_code,b.good_name,b.moq,b.step,b.good_banner_img,b.good_img,b.good_param,b.status, 0 inventory,d.unit,b.price,b.type')
|
|
|
->leftJoin('good b', 'b.id=a.good_id AND b.is_del=' . CommonModel::$del_normal)
|
|
|
- ->leftJoin('inventory_exchange c', 'c.account_id=' . self::$aid . ' AND c.good_id=a.good_id')
|
|
|
+// ->leftJoin('inventory_shopping c', 'c.good_id=a.good_id')
|
|
|
->leftJoin('unit d', 'd.id=b.unit_id AND d.is_del=' . CommonModel::$del_normal)
|
|
|
->where(['a.is_del' => CommonModel::$del_normal, 'a.code' => $code])
|
|
|
->withAttr('good_param', function ($val) {
|
|
@@ -53,14 +53,16 @@ class ExchangeLogic extends BaseLogic
|
|
|
return explode(',', $val);
|
|
|
})->withAttr('good_banner_img', function ($val) {
|
|
|
return explode(',', $val);
|
|
|
+ })->withAttr('inventory', function ($val, $da) {
|
|
|
+ if ($da['type'] == GoodModel::$type_shopping) return InventoryExchangeModel::where(['account_id' => self::$aid, 'good_id' => $da['good_id']])->value('inventory');
|
|
|
+ else return InventoryShoppingModel::where(['good_id' => $da['good_id']])->value('inventory');
|
|
|
})
|
|
|
->findOrEmpty()
|
|
|
->toArray();
|
|
|
|
|
|
- return json_show(CommonModel::$success, '获取兑换商品详情成功', $rs);
|
|
|
+ return json_show(CommonModel::$success, '获取商品详情成功', $rs);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
}
|