修改了SupplierController和SupplierLogic、MerchantLogic、IndexController、RetailOrderController、PaymentLogic的相关代码,增加了修改密码功能,修复了购物车商品数量限制,优化了支付宝收付款条码的验证规则。
This commit is contained in:
parent
1027436c93
commit
5be146b0a2
@ -99,7 +99,8 @@ class SupplierController extends BaseAdminController
|
|||||||
/**
|
/**
|
||||||
* @notes 设置余额
|
* @notes 设置余额
|
||||||
*/
|
*/
|
||||||
public function set_money(){
|
public function set_money()
|
||||||
|
{
|
||||||
$set_money = $this->request->post('set_money', 0);
|
$set_money = $this->request->post('set_money', 0);
|
||||||
$id = $this->request->post('id', 0);
|
$id = $this->request->post('id', 0);
|
||||||
$type = $this->request->post('type', 1);
|
$type = $this->request->post('type', 1);
|
||||||
@ -163,4 +164,17 @@ class SupplierController extends BaseAdminController
|
|||||||
}
|
}
|
||||||
return $this->fail(SupplierLogic::getError());
|
return $this->fail(SupplierLogic::getError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @notes 修改密码
|
||||||
|
*/
|
||||||
|
function edit_password()
|
||||||
|
{
|
||||||
|
$params = $this->request->post();
|
||||||
|
$result = SupplierLogic::editPassword($params);
|
||||||
|
if (true === $result) {
|
||||||
|
return $this->success('修改成功', [], 1, 1);
|
||||||
|
}
|
||||||
|
return $this->fail(SupplierLogic::getError());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@ use app\common\model\user\User;
|
|||||||
use app\common\service\ThinkApi;
|
use app\common\service\ThinkApi;
|
||||||
use think\facade\Db;
|
use think\facade\Db;
|
||||||
use support\exception\BusinessException;
|
use support\exception\BusinessException;
|
||||||
|
use Webman\Config;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 商户列表逻辑
|
* 商户列表逻辑
|
||||||
@ -200,6 +200,27 @@ class MerchantLogic extends BaseLogic
|
|||||||
self::setError($e->getMessage());
|
self::setError($e->getMessage());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @notes 修改密码
|
||||||
|
*/
|
||||||
|
public static function editPassword($params)
|
||||||
|
{
|
||||||
|
Db::startTrans();
|
||||||
|
try {
|
||||||
|
// $admin_id=Db::name('user_auth_shop')->where(['type'=>2,'pid'=>$params['id']])->value('admin_id');
|
||||||
|
// if($admin_id){
|
||||||
|
// $passwordSalt = Config::get('project.unique_identification');
|
||||||
|
// $password=create_password($params['password'], $passwordSalt);
|
||||||
|
// Admin::where('id',$admin_id)->update(['password'=>$password]);
|
||||||
|
// }
|
||||||
|
Db::commit();
|
||||||
|
return true;
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
Db::rollback();
|
||||||
|
self::setError($e->getMessage());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @notes 设置余额
|
* @notes 设置余额
|
||||||
|
@ -10,10 +10,11 @@ use app\common\model\goods\GoodsLabel;
|
|||||||
use app\common\model\merchant\MerchantBank;
|
use app\common\model\merchant\MerchantBank;
|
||||||
use app\common\model\supplier\Supplier;
|
use app\common\model\supplier\Supplier;
|
||||||
use app\common\logic\BaseLogic;
|
use app\common\logic\BaseLogic;
|
||||||
|
use app\common\model\auth\Admin;
|
||||||
use app\common\model\financial\FinancialRecord;
|
use app\common\model\financial\FinancialRecord;
|
||||||
use think\facade\Db;
|
use think\facade\Db;
|
||||||
use support\exception\BusinessException;
|
use support\exception\BusinessException;
|
||||||
|
use Webman\Config;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 供应商管理逻辑
|
* 供应商管理逻辑
|
||||||
@ -275,7 +276,27 @@ class SupplierLogic extends BaseLogic
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* @notes 修改密码
|
||||||
|
*/
|
||||||
|
public static function editPassword($params)
|
||||||
|
{
|
||||||
|
Db::startTrans();
|
||||||
|
try {
|
||||||
|
$admin_id=Db::name('user_auth_shop')->where(['type'=>2,'pid'=>$params['id']])->value('admin_id');
|
||||||
|
if($admin_id){
|
||||||
|
$passwordSalt = Config::get('project.unique_identification');
|
||||||
|
$password=create_password($params['password'], $passwordSalt);
|
||||||
|
Admin::where('id',$admin_id)->update(['password'=>$password]);
|
||||||
|
}
|
||||||
|
Db::commit();
|
||||||
|
return true;
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
Db::rollback();
|
||||||
|
self::setError($e->getMessage());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* @notes 删除供应商管理
|
* @notes 删除供应商管理
|
||||||
* @param array $params
|
* @param array $params
|
||||||
|
@ -29,20 +29,7 @@ class IndexController extends BaseApiController
|
|||||||
|
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
Redis::send('push-platform-print', ['order_id' => 39],5);
|
|
||||||
|
|
||||||
// $auth_code=$this->request->get('auth_code');
|
|
||||||
// $config = Config::get('payment');
|
|
||||||
// Pay::config($config);
|
|
||||||
|
|
||||||
// $result = Pay::alipay()->pos([
|
|
||||||
// 'out_trade_no' => time(),
|
|
||||||
// 'auth_code' => $auth_code,
|
|
||||||
// 'total_amount' => '0.01',
|
|
||||||
// 'subject' => 'yansongda 测试 - 01',
|
|
||||||
// 'extend_params'=>['attach'=>'cashierclass']
|
|
||||||
// ]);
|
|
||||||
d(1);
|
|
||||||
// $arr = [];
|
// $arr = [];
|
||||||
// foreach ($a as $k => $v) {
|
// foreach ($a as $k => $v) {
|
||||||
// $pid = Goodsclass::where('id', $v)->value('pid');
|
// $pid = Goodsclass::where('id', $v)->value('pid');
|
||||||
|
@ -131,7 +131,7 @@ class RetailOrderController extends BaseApiController
|
|||||||
return $this->fail('购物车商品不能超过100个');
|
return $this->fail('购物车商品不能超过100个');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($pay_type == 9 || $pay_type == 17) {
|
if ($pay_type == 9 || $pay_type == 17 ||$pay_type==13) {
|
||||||
if (empty($this->request->userInfo['merchant'])) {
|
if (empty($this->request->userInfo['merchant'])) {
|
||||||
return $this->fail('请先绑定商户');
|
return $this->fail('请先绑定商户');
|
||||||
}
|
}
|
||||||
|
@ -109,7 +109,7 @@ class PaymentLogic extends BaseLogic
|
|||||||
*/
|
*/
|
||||||
public static function ali_auth_code($auth_code, $order)
|
public static function ali_auth_code($auth_code, $order)
|
||||||
{
|
{
|
||||||
$pattern = '/^([25-30]{2})(\d{14,22})$/';
|
$pattern = '/^(25|26|27|28|29|30)[0-9A-Za-z]{14,23}$/';
|
||||||
|
|
||||||
if (!preg_match($pattern, (string)$auth_code)) {
|
if (!preg_match($pattern, (string)$auth_code)) {
|
||||||
self::$error = '请使用正确的支付宝收付款条码';
|
self::$error = '请使用正确的支付宝收付款条码';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user