|
@@ -172,41 +172,21 @@ class Manage extends Auth
|
|
|
Dever::error('未分配渠道');
|
|
|
}
|
|
|
if ($channel['type'] == 2) {
|
|
|
- # 获取卡密并占用
|
|
|
- $param['seller_id'] = array('in', '-1,' . $info['seller_id']);
|
|
|
- $param['channel_id'] = $channel['id'];
|
|
|
- $param['goods_id'] = $info['goods_id'];
|
|
|
- $param['sku_id'] = $info['sku_id'];
|
|
|
+ # 审核通过
|
|
|
+ $param['order_id'] = $info['id'];
|
|
|
$param['status'] = 1;
|
|
|
- $param['use_status'] = 1;
|
|
|
- $card = Dever::db('card', 'channel')->select($param, array('order' => 'seller_id desc','limit' => '0, ' . $info['num']), true);
|
|
|
- $total = count($card);
|
|
|
- if ($total < $info['num']) {
|
|
|
- Dever::error('卡密剩余数量不足');
|
|
|
- }
|
|
|
- foreach ($card as $k1 => $v1) {
|
|
|
- Dever::db('card', 'channel')->update($v1['id'], array('use_status' => 2, 'order_id' => $info['id']));
|
|
|
- }
|
|
|
- $result['status'] = 1;
|
|
|
-
|
|
|
- $update = array();
|
|
|
- $update['channel_id'] = $channel['id'];
|
|
|
- $update['channel_order_date'] = time();
|
|
|
- if (isset($channel['goods']['id'])) {
|
|
|
- $update['channel_goods_id'] = $channel['goods']['id'];
|
|
|
- }
|
|
|
- $update['channel_goods_discount'] = $channel['discount'];
|
|
|
- if (isset($channel['goods']['discount']) && $channel['goods']['discount']) {
|
|
|
- $update['channel_goods_discount'] = $channel['goods']['discount'];
|
|
|
- }
|
|
|
- if (!$update['channel_goods_discount']) {
|
|
|
- $update['channel_goods_discount'] = 1;
|
|
|
- }
|
|
|
- $update['buy_price'] = round($info['cash'] * $update['channel_goods_discount'], 2) * $info['num'];
|
|
|
- Dever::db('order', 'seller')->update($info['id'], $update);
|
|
|
+ $param['use_status'] = 3;
|
|
|
+ Dever::db('card', 'channel')->update($param, array('use_status' => 2));
|
|
|
}
|
|
|
}
|
|
|
if ($info['status'] == 11) {
|
|
|
+ if ($channel['type'] == 2) {
|
|
|
+ # 审核失败
|
|
|
+ $param['order_id'] = $info['id'];
|
|
|
+ $param['status'] = 1;
|
|
|
+ $param['use_status'] = 3;
|
|
|
+ Dever::db('card', 'channel')->update($param, array('use_status' => 1));
|
|
|
+ }
|
|
|
# 失败,余额加回来
|
|
|
Dever::load('info', 'seller')->inc($info['seller_id'], $info['price']);
|
|
|
Dever::load('info', 'seller')->log($info['seller_id'], $info['id'], $info['price'], 4);
|
|
@@ -428,6 +408,13 @@ class Manage extends Auth
|
|
|
'content' => array
|
|
|
(
|
|
|
array('提取密码', '<font style="color:red">' . $code . '</font>'),
|
|
|
+ array('提取邮箱', array
|
|
|
+ (
|
|
|
+ 'input' => '请输入邮箱',
|
|
|
+ 'value' => $seller['email'],
|
|
|
+ 'button' => '提取',
|
|
|
+ 'remote' => Dever::url('seller/manage.tqKmManage', array('order_id' => $data['id'])),
|
|
|
+ )),
|
|
|
),
|
|
|
);
|
|
|
}
|