|
@@ -5,6 +5,7 @@ namespace app\admin\logic;
|
|
|
use app\model\AccountModel;
|
|
|
use app\model\CommonModel;
|
|
|
use app\model\GoodModel;
|
|
|
+use app\model\GroupModel;
|
|
|
use app\model\InventoryExchangeModel;
|
|
|
use think\Exception;
|
|
|
use think\exception\ValidateException;
|
|
@@ -43,55 +44,63 @@ class InventoryExchangeLogic extends BaseLogic
|
|
|
Db::startTrans();
|
|
|
try {
|
|
|
|
|
|
- $rs = InventoryExchangeModel::field('id')
|
|
|
- ->where([
|
|
|
- 'account_id' => $data['account_id'],
|
|
|
- 'good_id' => $data['good_id']
|
|
|
- ])
|
|
|
+ $group = GroupModel::field('id,company_id,card_id')
|
|
|
+ ->where(['id' => $data['group_id'], 'is_del' => CommonModel::$del_normal])
|
|
|
->findOrEmpty()
|
|
|
- ->isEmpty();
|
|
|
- if (!$rs) throw new Exception('该账号下的兑换商品库存已存在,不能重复添加');
|
|
|
+ ->toArray();
|
|
|
+ if (empty($group)) throw new Exception('该分组不存在');
|
|
|
|
|
|
- $account = AccountModel::field('id,username,name')
|
|
|
- ->where(['id' => $data['account_id'], 'is_del' => CommonModel::$del_normal])
|
|
|
- ->findOrEmpty();
|
|
|
- if ($account->isEmpty()) throw new Exception('该账号不存在');
|
|
|
+ $good_list = GoodModel::where(['is_del' => CommonModel::$del_normal, 'type' => GoodModel::$type_exchange])
|
|
|
+ ->whereIn('id', array_column($data['list'], 'good_id'))
|
|
|
+ ->column('id,good_code,good_name', 'id');
|
|
|
|
|
|
- $good = GoodModel::field('id,good_code,good_name')
|
|
|
- ->where(['id' => $data['good_id'], 'is_del' => CommonModel::$del_normal])
|
|
|
- ->findOrEmpty();
|
|
|
- if ($good->isEmpty()) throw new Exception('该商品不存在');
|
|
|
+ if (empty($good_list)) throw new Exception('该商品不存在');
|
|
|
|
|
|
- $date = date('Y-m-d H:i:s');
|
|
|
+ $account_list = AccountModel::field('id,username,name')
|
|
|
+ ->where(['is_del' => CommonModel::$del_normal, 'company_id' => $group['company_id'], 'card_id' => $group['card_id']])
|
|
|
+ ->select()
|
|
|
+ ->toArray();
|
|
|
|
|
|
- $inventory_exchange_id = Db::name('inventory_exchange')->insertGetId([
|
|
|
- 'account_id' => $data['account_id'],
|
|
|
- 'account_username' => $account->username,
|
|
|
- 'account_name' => $account->name,
|
|
|
- 'good_id' => $data['good_id'],
|
|
|
- 'good_code' => $good->good_code,
|
|
|
- 'good_name' => $good->good_name,
|
|
|
- 'inventory' => $data['inventory'],
|
|
|
- 'createrid' => self::$uid,
|
|
|
- 'creater' => self::$uname,
|
|
|
- 'addtime' => $date,
|
|
|
- 'updaterid' => self::$uid,
|
|
|
- 'updater' => self::$uname,
|
|
|
- 'updatetime' => $date,
|
|
|
- ]);
|
|
|
-
|
|
|
- Db::name('inventory_exchange_log')->insert([
|
|
|
- 'inventory_exchange_id' => $inventory_exchange_id,
|
|
|
- 'before_inventory' => 0,
|
|
|
- 'after_inventory' => $data['inventory'],
|
|
|
- 'good_id' => $data['good_id'],
|
|
|
- 'good_code' => $good->good_code,
|
|
|
- 'good_name' => $good->good_name,
|
|
|
- 'source' => CommonModel::$source_admin,
|
|
|
- 'createrid' => self::$uid,
|
|
|
- 'creater' => self::$uname,
|
|
|
- 'addtime' => $date,
|
|
|
- ]);
|
|
|
+ $temp = InventoryExchangeModel::field('id,account_username,good_name')
|
|
|
+ ->whereIn('account_id', array_column($account_list, 'id'))
|
|
|
+ ->whereIn('good_id', array_column($good_list, 'id'))
|
|
|
+ ->findOrEmpty()
|
|
|
+ ->toArray();
|
|
|
+ if (!empty($temp)) throw new Exception('【' . $temp['account_username'] . '】账户的【' . $temp['good_name'] . '】商品库存记录已存在');
|
|
|
+
|
|
|
+ $date = date('Y-m-d H:i:s');
|
|
|
+ $inventory = array_column($data['list'], 'inventory', 'good_id');
|
|
|
+ foreach ($account_list as $account) {
|
|
|
+ foreach ($good_list as $good) {
|
|
|
+ $inventory_exchange_id = Db::name('inventory_exchange')->insertGetId([
|
|
|
+ 'account_id' => $account['id'],
|
|
|
+ 'account_username' => $account['username'],
|
|
|
+ 'account_name' => $account['name'],
|
|
|
+ 'good_id' => $good['id'],
|
|
|
+ 'good_code' => $good['good_code'],
|
|
|
+ 'good_name' => $good['good_name'],
|
|
|
+ 'inventory' => $inventory[$good['id']] ?? 0,
|
|
|
+ 'createrid' => self::$uid,
|
|
|
+ 'creater' => self::$uname,
|
|
|
+ 'addtime' => $date,
|
|
|
+ 'updaterid' => self::$uid,
|
|
|
+ 'updater' => self::$uname,
|
|
|
+ 'updatetime' => $date,
|
|
|
+ ]);
|
|
|
+ Db::name('inventory_exchange_log')->insert([
|
|
|
+ 'inventory_exchange_id' => $inventory_exchange_id,
|
|
|
+ 'before_inventory' => 0,
|
|
|
+ 'after_inventory' => $inventory[$good['id']] ?? 0,
|
|
|
+ 'good_id' => $good['id'],
|
|
|
+ 'good_code' => $good['good_code'],
|
|
|
+ 'good_name' => $good['good_name'],
|
|
|
+ 'source' => CommonModel::$source_admin,
|
|
|
+ 'createrid' => self::$uid,
|
|
|
+ 'creater' => self::$uname,
|
|
|
+ 'addtime' => $date,
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
Db::commit();
|
|
|
|