| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917 |
- <?php
- namespace common\models\forms;
- use common\helpers\Cache;
- use common\helpers\Date;
- use common\components\Model;
- use common\helpers\Form;
- use common\helpers\PayStack;
- use common\helpers\user\Balance;
- use common\helpers\user\Cash;
- use common\helpers\user\Info;
- use common\libs\logging\operate\AdminOperate;
- use common\models\DealType;
- use common\models\Order;
- use common\models\OrderGoods;
- use common\models\Period;
- use common\models\ReceiveAddress;
- use common\models\Region;
- use common\models\ShopGoods;
- use common\models\User;
- use common\models\UserNetwork;
- use yii\base\Exception;
- /**
- * Login form
- */
- class OrderForm extends Model
- {
- public $sn;
- public $expressCompany;
- public $orderTrackNo;
- public $status;
- public $remark;
- public $type;
- public $addressId;
- public $payType;
- public $goodsId;
- public $goodsNum;
- public $payPassword;
- public $email;
- public $userName;
- public $consignee;
- public $acceptMobile;
- public $province;
- public $city;
- public $county;
- public $detailaddress;
- private $_address;
- private $_decAmount;
- private $_decPv;
- private $_freight;
- private $_payAmount;
- private $_orderGoods;
- private $_standardAmount;
- private $_decAmountStandard;
- private $_exchangeRate;
- /**
- * @var Order
- */
- private $_model;
- public function init() {
- parent::init();
- $this->adminOperateLogger = new AdminOperate([
- 'fetchClass' => Order::class,
- ]);
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['sn', 'expressCompany', 'orderTrackNo', 'status', 'remark','type','addressId','payType','goodsId','goodsNum', 'payPassword','userName','consignee','acceptMobile','province'/*,'city','county'*/,'cityName','lgaName','detailaddress','email'], 'trim'],
- [['sn', 'expressCompany', 'orderTrackNo', 'status', 'remark','type','addressId','payType','goodsId','goodsNum', 'payPassword','userName','consignee','acceptMobile','province','city','county','detailaddress'/*,'email'*/], 'required'],
- [['status'], 'isStatus'],
- [['addressId'], 'isAddress'],
- [['payType'], 'isPayType'],
- [['payPassword'], 'validatePassword'],
- ];
- }
- public function attributeLabels()
- {
- return [
- 'sn' => '订单号',
- 'expressCompany' => '快递公司',
- 'orderTrackNo' => '快递单号',
- 'status' => '状态',
- 'remark' => '备注',
- 'type' => '订单类型',
- 'addressId' => '收货地址',
- 'payType' => '支付方式',
- 'goodsId' => 'product ID',//商品ID
- 'goodsNum' => 'Product quantity',//商品数量
- 'userName' => 'Repeat sales Member No. does not exist',//复消会员编号
- 'consignee' => '收货人',
- 'acceptMobile' => '收货电话',
- 'province' => '省',
- 'city' => '市',
- 'county' => '区',
- 'lgaName' => 'lga name',
- 'cityName' => 'city name',
- 'detailaddress' => '收货详细地址',
- 'email' => 'Email',
- ];
- }
- /**
- * 指定校验场景
- * @return array
- */
- public function scenarios()
- {
- $parentScenarios = parent::scenarios();
- $customScenarios = [
- // 管理员发货
- 'adminDelivery' => ['sn', 'expressCompany', 'orderTrackNo'],
- // 会员确认收货
- 'userConfirm' => ['sn', 'expressCompany', 'orderTrackNo'],
- // 管理员修改订单状态
- 'adminStatus' => ['sn', 'status'],
- // 管理员修改备注
- 'adminRemark' => ['sn', 'remark'],
- // 会员下单
- 'userOrder' => ['type','addressId', 'payType','goodsId','goodsNum', 'remark', 'payPassword'],
- // 帮会员复消下单
- 'reconsumeOrder' => ['type','userName', 'payType','goodsId','goodsNum', 'remark', 'payPassword','consignee','acceptMobile','province',/*'city','county',*/'detailaddress'],
- // 管理员退款
- 'adminRefund' => ['sn'],
- ];
- return array_merge($parentScenarios, $customScenarios);
- }
- /**
- * 校验之前
- * @return bool
- */
- public function beforeValidate()
- {
- $parentValidate = parent::beforeValidate();
- if ($this->sn) {
- $this->_model = Order::findOne(['SN'=>$this->sn]);
- if (!$this->_model){
- $this->addError('sn', '订单不存在');
- return false;
- }
- }
- if ($this->scenario == 'adminDelivery'){
- if($this->_model['STATUS'] == \Yii::$app->params['orderStatus']['cancel']) {
- $this->addError('sn', '订单已取消不能发货');
- return false;
- }
- if($this->_model['STATUS'] == \Yii::$app->params['orderStatus']['del']) {
- $this->addError('sn', '订单已删除不能发货');
- return false;
- }
- }
- if ($this->scenario == 'adminRefund'){
- if ($this->_model['STATUS'] != \Yii::$app->params['orderStatus']['paid']['value']) {
- $this->addError('sn', '订单状态支付状态不支持退款');
- return false;
- }
- if ($this->_model['DELIVERY_STATUS'] != \Yii::$app->params['deliveryStatus']['notDelivery']['value']) {
- $this->addError('sn', '订单物流状态不支持退款');
- return false;
- }
- if ($this->_model['PAY_TYPE'] != 'pay_stack') {
- $this->addError('sn', '订单支付方式不支持退款');
- return false;
- }
- if (!$this->_model['REMARK']) {
- $this->addError('sn', '订单支付信息不存在');
- return false;
- }
- }
- return $parentValidate;
- }
- /**
- * 校验支付密码
- * @param $attribute
- * @param $params
- */
- public function validatePassword($attribute, $params) {
- if (!User::validatePayPassword(\Yii::$app->user->id, $this->payPassword)) {
- $this->addError($attribute, 'The payment password is incorrect');//支付密码不正确
- }
- }
- /**
- * 判断收货地址是否存在
- * @param $attribute
- */
- public function isAddress($attribute){
- if (!$receiveAddress = ReceiveAddress::find()->where(' ID=:ID', [':ID' => $this->addressId])->asArray()->one()) {
- $this->addError($attribute, '收货地址不存在');
- } else {
- $this->_address = $receiveAddress;
- }
- }
- /**
- * 判断支付方式
- * @param $attribute
- */
- public function isPayType($attribute){
- if(!array_key_exists($this->payType, ShopGoods::payTypes())){
- $this->addError($attribute, '支付方式错误1');
- return;
- }
- // 一个订单只能包含一类商品
- $goods = ShopGoods::find()->select('ID,CATEGORY_TYPE')->where(['in', 'ID', $this->goodsId])->andWhere(['STATUS' => 1])->asArray()->all();
- $goodsCategoryType = array_unique(array_column($goods, 'CATEGORY_TYPE'));
- if (count($goodsCategoryType) != 1) {
- $this->addError($attribute, '订单不能包含多种商品分类');
- return;
- }
- // 购买方式
- $sellTypeLabelMap = array_column(ShopGoods::SALE_TYPE, NULL, 'label');
- if (!array_key_exists($this->payType, $sellTypeLabelMap)) {
- $this->addError($attribute, '支付方式错误2');
- return;
- }
- // 所选支付方式必须是商品分类支持的类型
- $categoryType = array_column(ShopGoods::CATEGORY_TYPE, NULL, 'id');
- // 商品类型
- $currCategoryType = $goodsCategoryType[0];
- if (!array_key_exists($currCategoryType, $categoryType)) {
- $this->addError($attribute, '商品分类错误');
- return;
- }
- $sellType = $categoryType[$currCategoryType]['sell_type'] ?? [];
- if (!$sellType || !in_array($this->payType, array_column($sellType, 'label'))) {
- $this->addError($attribute, '支付方式错误3');
- return;
- }
- }
- /**
- * 校验类型
- * @param $attribute
- */
- public function isStatus($attribute){
- if(!in_array($this->type, \Yii::$app->params['orderStatus'])){
- $this->addError($attribute, '类型错误');
- return ;
- }
- if ($this->scenario == 'adminStatus'){
- if ($this->status == $this->_model['STATUS']) {
- $this->addError($attribute, '订单状态没有改变');
- return ;
- }
- if($this->status == \Yii::$app->params['orderStatus']['notPaid'] && $this->_model['STATUS'] >= \Yii::$app->params['orderStatus']['delivery']) {
- $this->addError($attribute, '订单已经进入物流状态不能改为未支付');
- return ;
- }
- elseif($this->status == \Yii::$app->params['orderStatus']['paid'] && $this->_model['STATUS'] >= \Yii::$app->params['orderStatus']['cancel']) {
- $this->addError($attribute, '订单已失效不能处理');
- return ;
- }
- elseif($this->status == \Yii::$app->params['orderStatus']['delivery']) {
- $this->addError($attribute, '订单不能单独处理为物流状态');
- return ;
- }
- elseif($this->status == \Yii::$app->params['orderStatus']['complete'] && $this->_model['STATUS'] > \Yii::$app->params['orderStatus']['cancel']) {
- $this->addError($attribute, '订单已失效不能处理');
- return ;
- }
- elseif($this->status == \Yii::$app->params['orderStatus']['cancel']) {
- if($this->_model['STATUS'] == \Yii::$app->params['orderStatus']['complete']) {
- $this->addError($attribute, '订单已完成不能取消');
- return ;
- }
- if($this->_model['STATUS'] == \Yii::$app->params['orderStatus']['del']) {
- $this->addError($attribute, '订单已删除不能取消');
- return ;
- }
- }
- elseif($this->status == \Yii::$app->params['orderStatus']['del']) {
- if($this->_model['STATUS'] == \Yii::$app->params['orderStatus']['complete']) {
- $this->addError($attribute, '订单已完成不能删除');
- return ;
- }
- }
- }
- }
- /**
- * 管理员发货
- * @return Order|null
- * @throws \yii\db\Exception
- */
- public function adminDelivery(){
- if(!$this->validate()){
- return null;
- }
- $db = \Yii::$app->db;
- $transaction = $db->beginTransaction();
- try {
- $period = Period::instance();
- $this->_model->DELIVERY_STATUS = \Yii::$app->params['deliveryStatus']['delivered']['value'];
- $this->_model->DELIVERY_PERIOD = $period->getNowPeriodNum();
- $this->_model->DELIVERY_AT = Date::nowTime();
- $this->_model->EXPRESS_COMPANY = $this->expressCompany;
- $this->_model->ORDER_TRACK_NO = $this->orderTrackNo;
- $this->_model->STATUS = \Yii::$app->params['orderStatus']['delivery']['value'];
- if(!$this->_model->save()){
- throw new Exception(Form::formatErrorsForApi($this->_model->getErrors()));
- }
- $transaction->commit();
- } catch (Exception $e) {
- $transaction->rollBack();
- $this->addError('edit', $e->getMessage());
- return null;
- }
- return $this->_model;
- }
- /**
- * 校验支付
- * @return Order|null
- * @throws Exception
- */
- public function verifyPayStack(): ?Order
- {
- if(!$this->validate()){
- return null;
- }
- // 调用PayStack支付校验
- $payload = PayStack::transactionVerify($this->remark['reference']);
- if ($payload['status'] !== true) {
- throw new Exception(Form::formatErrorsForApi($payload['message']));
- }
- if ($payload['data']['amount'] != $this->_model->PAY_AMOUNT * 100) {
- throw new Exception(Form::formatErrorsForApi('支付金额与订单金额不符'));
- }
- $db = \Yii::$app->db;
- $transaction = $db->beginTransaction();
- try {
- $this->_model->STATUS = \Yii::$app->params['orderStatus']['paid']['value'];
- $this->_model->REMARK = json_encode($this->remark);
- $this->_model->PAY_AT = Date::nowTime();
- if (!$this->_model->save()) {
- throw new Exception(Form::formatErrorsForApi($this->_model->getErrors()));
- }
- $transaction->commit();
- } catch (Exception $e) {
- $transaction->rollBack();
- $this->addError('edit', $e->getMessage());
- return null;
- }
- return $this->_model;
- }
- /**
- * 订单退款
- * @return Order|null
- * @throws Exception
- */
- public function adminRefund()
- {
- if(!$this->validate()){
- return null;
- }
- // 支付信息存在于remark中
- $remark = $this->_model->REMARK ? json_decode($this->_model->REMARK, true) : [];
- $reference = $remark['reference'] ?? '';
- if (!$reference) {
- throw new Exception(Form::formatErrorsForApi('支付信息不存在'));
- }
- // 退款金额. 订单支付金额 * 100
- $amount = $this->_model->PAY_AMOUNT * 100;
- // 调用PayStack支付校验
- $payload = PayStack::transactionRefund($reference, $amount);
- if ($payload['status'] !== true) {
- throw new Exception(Form::formatErrorsForApi($payload['message']));
- }
- $db = \Yii::$app->db;
- $transaction = $db->beginTransaction();
- try {
- $this->_model->STATUS = \Yii::$app->params['orderStatus']['refund']['value'];
- $this->_model->REMARK = json_encode([
- 'payment' => $remark,
- 'refund' => $payload['data']
- ]
- );
- if (!$this->_model->save()) {
- throw new Exception(Form::formatErrorsForApi($this->_model->getErrors()));
- }
- $transaction->commit();
- } catch (Exception $e) {
- $transaction->rollBack();
- $this->addError('edit', $e->getMessage());
- return null;
- }
- return $this->_model;
- }
- /**
- * 复销
- * @throws Exception
- * @throws \yii\db\Exception
- */
- public function add(){
- if(!$this->validate()){
- return null;
- }
- $ids = $this->goodsId;
- $totalAmount = 0;
- $totalPv = 0;
- $totalAmountStandard = 0;
- $goodsType = ShopGoods::GOODS_TYPE;
- $exchangeRate = floatval(Cache::getSystemConfig()['exchangeRate']['VALUE'] ?? 0); // 汇率
- foreach ($this->goodsNum as $k => $v) {
- if ($v) {
- $goods = ShopGoods::findOneAsArray('ID=:ID AND STATUS=1',[':ID'=> $ids[$k]]);
- if($goods['STORE_NUMS']>0){
- if ($goods['TYPE'] == 1 || $goods['TYPE'] == 2) {
- $discount = $goodsType[$goods['TYPE']]['discount'];
- $realPrice = $goods['SELL_PRICE'] * $discount/100;
- $realPv = $goods['PRICE_PV'] * $discount/100;
- $realPriceStandard = $goods['SELL_PRICE_STANDARD'] * $discount/100;
- } else {
- $discount = $goods['SELL_DISCOUNT'];
- $realPrice = $goods['SELL_PRICE'] * $discount;
- $realPv = $goods['PRICE_PV'] * $discount;
- $realPriceStandard = $goods['SELL_PRICE_STANDARD'] * $discount;
- }
- $totalAmount += $realPrice * intval($v);
- $totalPv += $realPv * intval($v);
- $totalAmountStandard += $realPriceStandard * intval($v);
- // if($this->payType=='cash') {
- // $discount = $goodsType[$goods['TYPE']]['discount'];
- // $realPrice = $goods['SELL_PRICE'] * $discount/100;
- // $realPv = $goods['PRICE_PV'] * $discount/100;
- // $totalAmount += $realPrice * intval($v);
- // $totalPv += $realPv * intval($v);
- // }else{
- // $realPrice = $goods['SELL_PRICE'];
- // $realPv = $goods['PRICE_PV'];
- // $totalAmount += $realPrice * intval($v);
- // $totalPv += $realPv * intval($v);
- // }
- $this->_orderGoods[] = [
- 'GOODS_ID' => $goods['ID'],
- 'PRICE' => $goods['SELL_PRICE'],
- 'PV' => $goods['PRICE_PV'],
- 'REAL_PRICE' => $realPrice,
- 'REAL_PV' => $realPv,
- 'POINT' => $goods['POINT'],
- 'BUY_NUMS' => intval($v),
- 'SKU_CODE' => $goods['GOODS_NO'],
- 'GOODS_TITLE' => $goods['GOODS_NAME'],
- 'CATEGORY_TYPE' => $goods['CATEGORY_TYPE'],
- 'PAY_TYPE' => $this->payType,
- 'EMAIL' => $this->email,
- 'STANDARD_PRICE' => $goods['SELL_PRICE_STANDARD'],
- 'REAL_STANDARD_PRICE' => $realPriceStandard,
- 'EXCHANGE_RATE' => $exchangeRate,
- 'TAX_RATE' => $goods['TAX_RATE'],
- ];
- }
- }
- }
- // 汇率
- $exchangeRate = floatval(Cache::getSystemConfig()['exchangeRate']['VALUE'] ?? 0);
- // 运费.美元转奈拉
- $freight = floatval(Cache::getSystemConfig()['freight']['VALUE'] ?? 0);
- // 普通商品免运费阈值.美元转奈拉
- $freeShipping = floatval(Cache::getSystemConfig()['freeShipping']['VALUE'] ?? 0);
- $this->_decAmount = $totalAmount;
- $this->_decPv = $totalPv;
- $this->_freight = ($totalAmount >= $freeShipping) ? 0 : $freight;
- if($this->_address['PROVINCE']==1){
- $this->_freight = 0;
- }
- $this->_payAmount = $this->_decAmount + $this->_freight;
- $this->_decAmountStandard = $totalAmountStandard;
- $this->_standardAmount = $this->_decAmountStandard + $this->_freight;
- $db = \Yii::$app->db;
- $transaction = $db->beginTransaction();
- try {
- //判断用户余额是否充足
- $result = $this->getBalanceAdequate($this->payType, $this->_payAmount);
- if ($result['code'] !== 200) {
- throw new Exception($result['message']);
- }
-
-
-
- /**
- * 2022-04-28
- * York
- * 支付后减少库存
- */
- foreach ($this->goodsNum as $k => $v){
- if ($v){
- $goods = ShopGoods::findOneAsArray('ID=:ID AND STATUS=1',[':ID'=> $ids[$k]]);
- if ($goods['STORE_NUMS'] >= $this->goodsNum[$k]){
- $data = ShopGoods::find()->where(['ID' => $ids[$k]])->one();
- $goods_store_nums = $data->STORE_NUMS - $this->goodsNum[$k];
- $data->STORE_NUMS = $goods_store_nums;
- $data->update();
- //下单后库存小于等于0 商品下架
- if($goods_store_nums <= 0){
- $data->STATUS = 0;
- $data->UPDATED_AT = Date::nowTime();
- $data->update();
-
- }
- }else{
- throw new Exception($goods['GOODS_NAME'].'库存不足,无法购买商品');
-
- }
-
-
- }
- }
- // exit();
- //写入订单
- if (!$orderResult = $this->addOrder()) {
- throw new Exception(Form::formatErrorsForApi($orderResult->getErrors()));
- }
- $transaction->commit();
- return $orderResult;
- }catch (\Exception $e){
- $transaction->rollBack();
- $this->addError('add', $e->getMessage());
- return null;
- }
- }
- /**
- * 判断对应账户余额是否充足.
- * @param $payType string 支付方式.
- * @param $payAmount numeric 支付金额
- * @return array|int[]
- */
- public function getBalanceAdequate(string $payType, $payAmount): array
- {
- $loginUserId = \Yii::$app->user->id;
- if ($payType == 'cash') {
- if (Cash::getAvailableBalance($loginUserId) < $payAmount) {
- return ['code' => 500, 'message' => '余额不足,无法购买商品'];
- }
- } else if ($payType =='exchange') {
- if ($payAmount > Balance::getBalanceExchangePoints($loginUserId)) {
- return ['code' => 500, 'message' => '兑换积分不足,无法购买商品'];
- }
- } else if ($payType == 'tourism_points') {
- if ($payAmount > Balance::getBalanceTourism($loginUserId)) {
- return ['code' => 500, 'message' => '旅游积分不足,无法购买商品'];
- }
- } else if ($payType == 'garage_points') {
- if ($payAmount > Balance::getBalanceGarage($loginUserId)) {
- return ['code' => 500, 'message' => '车房积分不足,无法购买商品'];
- }
- } else{
- // if ($payAmount > Balance::getBalanceReconsumePoints($loginUserId)) {
- // return ['code' => 500, 'message' => '复消积分不足,无法购买商品'];
- // }
- }
- return ['code' => 200];
- }
- /**
- * 复销订单
- * @throws Exception
- */
- public function addOrder(){
- $periodObj = Period::instance();
- $nowPeriodNum = $periodObj->getNowPeriodNum();
- $nowCalcMonth = $periodObj->getYearMonth($nowPeriodNum);
- $userId = \Yii::$app->user->id;
- $userName = Info::getUserNameByUserId($userId);
- $userRealName = Info::getUserRealNameByUserId($userId);
- $userMobile = Info::getUserMobileByUserId($userId);
- $userEmail = Info::getUserEmailByUserId($userId);
- $exchangeRate = floatval(Cache::getSystemConfig()['exchangeRate']['VALUE'] ?? 0);
- // 加入订单信息
- if ($this->_address['PROVINCE'] != 1) {
- $warehouse = Region::getWarehouseByCode($this->_address['PROVINCE']);//仓库
- if (!$warehouse) {
- throw new Exception('地区2暂时不支持配送,具体联系客服');
- }
- }else{
- $warehouse = '01';
- }
- $_hasPV = in_array($this->payType, ['exchange', 'tourism_points', 'garage_points']) ? 0 : $this->_decPv;
- $ordNo = $this->_generateSn();
- $orderModel = new Order();
- $orderModel->SN = 'OS'.$ordNo;
- $orderModel->DEC_SN = 'DS'.$ordNo;
- $orderModel->ORDER_TYPE = $this->type;
- $orderModel->USER_ID = $userId;
- $orderModel->USER_NAME = $userName;
- $orderModel->ORDER_AMOUNT = $this->_decAmount;
- $orderModel->PV = $_hasPV;
- $orderModel->PAY_AMOUNT = $this->_payAmount;
- $orderModel->PAY_PV = $_hasPV; // 兑换积分不能算业绩
- $orderModel->PAY_AT = Date::nowTime();
- $orderModel->PAY_TYPE = $this->payType;
- $orderModel->PERIOD_NUM = $nowPeriodNum;
- $orderModel->P_CALC_MONTH = Date::ociToDate($nowCalcMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH);
- $orderModel->FREIGHT = $this->_freight;
- $orderModel->PAY_FREIGHT = $this->_freight;
- $orderModel->CONSIGNEE = $this->_address['CONSIGNEE'];
- $orderModel->MOBILE = $this->_address['MOBILE'];
- $orderModel->PROVINCE = $this->_address['PROVINCE'];
- // $orderModel->CITY = $this->_address['CITY'];
- // $orderModel->COUNTY = $this->_address['COUNTY'];
- $orderModel->LGA_NAME = $this->_address['LGA_NAME'];
- $orderModel->CITY_NAME = $this->_address['CITY_NAME'];
- $orderModel->ADDRESS = $this->_address['ADDRESS'];
- $orderModel->FRONT_REMARK = $this->remark;
- $orderModel->WAREHOUSE = $warehouse;
- $orderModel->STATUS = \Yii::$app->params['orderStatus']['paid']['value'];
- $orderModel->CREATED_AT = Date::nowTime();
- $orderModel->CREATE_USER = $userName;
- $orderModel->EMAIL = $userEmail ?? '';
- $orderModel->ORDER_AMOUNT_STANDARD = $this->_decAmountStandard;
- $orderModel->PAY_AMOUNT_STANDARD = $this->_standardAmount;
- $orderModel->EXCHANGE_RATE = $exchangeRate;
- if($this->_address['PROVINCE']==1){
- $orderModel->EXPRESS_TYPE = 1;
- $orderModel->CONSIGNEE = $userRealName;
- $orderModel->MOBILE = $userMobile;
- $orderModel->PROVINCE = 1;
- $orderModel->CITY = 1;
- $orderModel->COUNTY = 1;
- $orderModel->LGA_NAME = $this->_address['LGA_NAME'];
- $orderModel->CITY_NAME = $this->_address['CITY_NAME'];
- $orderModel->ADDRESS = 'Self Pick-up';
- }
- if(!$orderModel->save()){
- $this->addErrors($orderModel->getErrors());
- return false;
- }
- // 加入商品到订单商品表
- foreach($this->_orderGoods as $key=>$value){
- // 增加判断,如果订单是兑换券购买,则AR_ORDER_GOODS中的REAL_PV真实PV应该是0
- if (in_array($orderModel->PAY_TYPE, ['exchange', 'tourism_points', 'garage_points'])) {
- $this->_orderGoods[$key]['REAL_PV'] = 0;
- }
- $this->_orderGoods[$key]['ORDER_SN'] = $orderModel->SN;
- $this->_orderGoods[$key]['P_CALC_MONTH'] = Date::ociToDate($nowCalcMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH);
- }
- OrderGoods::batchInsert($this->_orderGoods);
- //扣除会员余额/积分
- if($this->payType=='cash') {
- Cash::changeUserCash(\Yii::$app->user->id, 'CASH', -abs($this->_payAmount), ['REMARK' => '会员复销余额支付']);
- } else if ($this->payType=='exchange') {
- Balance::changeUserBonus(\Yii::$app->user->id,'exchange_points', -abs($this->_payAmount),['DEAL_TYPE_ID' => DealType::EXCHANGE_POINTS_EXCHANGE,'REMARK' => '会员兑换积分兑换']);
- } else if ($this->payType == 'tourism_points') {
- Balance::changeUserBonus(\Yii::$app->user->id, 'tourism_points', -abs($this->_payAmount), ['DEAL_TYPE_ID' => DealType::TOURISM_POINTS_EXCHANGE,'REMARK' => '会员旅游换积分兑换']);
- } else if ($this->payType == 'garage_points') {
- Balance::changeUserBonus(\Yii::$app->user->id, 'garage_points', -abs($this->_payAmount), ['DEAL_TYPE_ID' => DealType::GARAGE_POINTS_EXCHANGE,'REMARK' => '会员名车积分兑换']);
- } else if ($this->payType == 'reconsume_points') {
- Balance::changeUserBonus(\Yii::$app->user->id,'reconsume_points', -abs($this->_payAmount),['DEAL_TYPE_ID' => DealType::RECONSUME_POINTS_EXCHANGE,'REMARK' => '会员复销积分兑换']);
- }
- return $orderModel;
- }
- /**
- * 帮会员复销
- * @return bool|null
- * @throws Exception
- * @throws \yii\db\Exception
- */
- public function reconsumeAdd(){
- if(!$this->validate()){
- return null;
- }
- $ids = $this->goodsId;
- $totalAmount = 0;
- $totalPv = 0;
- $goodsType = ShopGoods::GOODS_TYPE;
- foreach ($this->goodsNum as $k => $v) {
- if ($v) {
- $goods = ShopGoods::findOneAsArray('ID=:ID AND STATUS=1',[':ID'=> $ids[$k]]);
- if($goods['STORE_NUMS']>0){
- if ($goods['TYPE'] == 1 || $goods['TYPE'] == 2) {
- $discount = $goodsType[$goods['TYPE']]['discount'];
- $realPrice = $goods['SELL_PRICE'] * $discount/100;
- $realPv = $goods['PRICE_PV'] * $discount/100;
- } else {
- $discount = $goods['SELL_DISCOUNT'];
- $realPrice = $goods['SELL_PRICE'] * $discount;
- $realPv = $goods['PRICE_PV'] * $discount;
- }
- $totalAmount += $realPrice * intval($v);
- $totalPv += $realPv * intval($v);
- $this->_orderGoods[] = [
- 'GOODS_ID' => $goods['ID'],
- 'PRICE' => $goods['SELL_PRICE'],
- 'PV' => $goods['PRICE_PV'],
- 'REAL_PRICE' => $realPrice,
- 'REAL_PV' => $realPv,
- 'POINT' => $goods['POINT'],
- 'BUY_NUMS' => intval($v),
- 'SKU_CODE' => $goods['GOODS_NO'],
- 'GOODS_TITLE' => $goods['GOODS_NAME']
- ];
- }
- }
- }
- $this->_decAmount = $totalAmount;
- $this->_decPv = $totalPv;
- $this->_freight = ($totalAmount>=300) ? 0 : 15;
- if($this->_address['PROVINCE']==1){
- $this->_freight = 0;
- }
- $this->_payAmount = $this->_decAmount + $this->_freight;
- $db = \Yii::$app->db;
- $transaction = $db->beginTransaction();
- try {
- $loginUserId = \Yii::$app->user->id;
- //是否开启伞下会员限制
- $isResaleUmbrella = Cache::getSystemConfig()['isResaleUmbrella']['VALUE'];
- if($isResaleUmbrella){
- $userId = Info::getUserIdByUserName($this->userName);
- $userNetwork = UserNetwork::find()->where("USER_ID=:USER_ID AND INSTR(PARENT_UIDS,'{$loginUserId}')>0", ['USER_ID'=>$userId])->count();
- if(!$userNetwork){
- throw new Exception($this->userName.'不是您的伞下会员,不能为其复消!');
- }
- }
- //判断用户余额是否充足
- if($this->payType=='cash') {
- if (Cash::getAvailableBalance($loginUserId) < $this->_payAmount) {
- throw new Exception('余额不足,无法购买商品');
- }
- }else{
- if ($this->_payAmount > Balance::getBalanceReconsumePoints($loginUserId)) {
- throw new Exception('复消积分不足,无法购买商品');
- }
- }
-
-
-
- /**
- * 2022-04-28
- * York
- * 支付后减少库存
- */
- foreach ($this->goodsNum as $k => $v){
- if ($v){
- $goods = ShopGoods::findOneAsArray('ID=:ID AND STATUS=1',[':ID'=> $ids[$k]]);
- if ($goods['STORE_NUMS'] >= $this->goodsNum[$k]){
- $data = ShopGoods::find()->where(['ID' => $ids[$k]])->one();
- $goods_store_nums = $data->STORE_NUMS - $this->goodsNum[$k];
- $data->STORE_NUMS = $goods_store_nums;
- $data->update();
- //下单后库存小于等于0 商品下架
- if($goods_store_nums <= 0){
- $data->STATUS = 0;
- $data->UPDATED_AT = Date::nowTime();
- $data->update();
-
- }
- }else{
- throw new Exception($goods['GOODS_NAME'].'库存不足,无法购买商品');
-
- }
-
-
- }
- }
- // exit();
-
-
- //写入订单
- if (!$orderResult = $this->addUserOrder()) {
- throw new Exception(Form::formatErrorsForApi($orderResult->getErrors()));
- }
- $transaction->commit();
- }catch (\Exception $e){
- $transaction->rollBack();
- $this->addError('add', $e->getMessage());
- return null;
- }
- return true;
- }
- /**
- * 帮会员复消的订单
- */
- public function addUserOrder(){
- $periodObj = Period::instance();
- $nowPeriodNum = $periodObj->getNowPeriodNum();
- $nowCalcMonth = $periodObj->getYearMonth($nowPeriodNum);
- //帮复消会员Id(登陆会员)
- $loginUserId = \Yii::$app->user->id;
- $loginUserName = Info::getUserNameByUserId($loginUserId);
- //订单会员Id
- $userId = Info::getUserIdByUserName($this->userName);
- $email = Info::getEmailByUserId($this->userName);
- // 加入订单信息
- if($this->province!=1){
- $warehouse = Region::getWarehouseByCode($this->province);//仓库
- if(!$warehouse){
- throw new Exception('地区1暂时不支持配送,具体联系客服');
- }
- }else{
- $warehouse = '01';
- }
- $ordNo = $this->_generateSn();
- $orderModel = new Order();
- $orderModel->SN = 'OS'.$ordNo;
- $orderModel->DEC_SN = 'DS'.$ordNo;
- $orderModel->ORDER_TYPE = $this->type;
- $orderModel->USER_ID = $userId;
- $orderModel->USER_NAME = $this->userName;
- $orderModel->ORDER_AMOUNT = $this->_decAmount;
- $orderModel->PV = $this->_decPv;
- $orderModel->PAY_AMOUNT = $this->_payAmount;
- $orderModel->PAY_PV = $this->_decPv;
- $orderModel->PAY_AT = Date::nowTime();
- $orderModel->PAY_TYPE = $this->payType;
- $orderModel->PERIOD_NUM = $nowPeriodNum;
- $orderModel->P_CALC_MONTH = Date::ociToDate($nowCalcMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH);
- $orderModel->FREIGHT = $this->_freight;
- $orderModel->PAY_FREIGHT = $this->_freight;
- $orderModel->CONSIGNEE = $this->consignee;
- $orderModel->MOBILE = $this->acceptMobile;
- $orderModel->PROVINCE = $this->province;
- // $orderModel->CITY = $this->city;
- // $orderModel->COUNTY = $this->county;
- $orderModel->ADDRESS = $this->detailaddress;
- $orderModel->FRONT_REMARK = $this->remark;
- $orderModel->WAREHOUSE = $warehouse;
- $orderModel->STATUS = 1;
- $orderModel->CREATED_AT = Date::nowTime();
- $orderModel->CREATE_USER = $loginUserName;
- $orderModel->EMAIL = $email?$email:'tt@qq.com';
- if(!$orderModel->save()){
- $this->addErrors($orderModel->getErrors());
- return false;
- }
- // 加入商品到订单商品表
- foreach($this->_orderGoods as $key=>$value){
- $this->_orderGoods[$key]['ORDER_SN'] = $orderModel->SN;
- $this->_orderGoods[$key]['P_CALC_MONTH'] = Date::ociToDate($nowCalcMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH);
- }
- OrderGoods::batchInsert($this->_orderGoods);
- //扣除会员余额/积分
- if($this->payType=='cash') {
- Cash::changeUserCash($loginUserId, 'CASH', -abs($this->_payAmount), ['REMARK' => '会员复销余额支付']);
- }else{
- Balance::changeUserBonus($loginUserId,'reconsume_points', -abs($this->_payAmount),['DEAL_TYPE_ID' => DealType::RECONSUME_POINTS_EXCHANGE, 'REMARK' => '会员复销积分兑换']);
- }
- return $orderModel;
- }
- /**
- * 生成流水号
- * @return string
- */
- private function _generateSn() {
- return Date::today('Ymd') . $this->_random(10, 1);
- }
- /**
- * 生成随机数
- * @param $length
- * @param int $numeric
- * @return string
- */
- private function _random($length, $numeric = 0) {
- $seed = base_convert(md5(microtime() . $_SERVER['DOCUMENT_ROOT']), 16, $numeric ? 10 : 35);
- $seed = $numeric ? (str_replace('0', '', $seed) . '012340567890') : ($seed . 'zZ' . strtoupper($seed));
- $hash = '';
- $max = strlen($seed) - 1;
- for ($i = 0; $i < $length; $i++) {
- $hash .= $seed[mt_rand(0, $max)];
- }
- return $hash;
- }
- }
|