|
@@ -900,6 +900,10 @@ class User Extends Model
|
|
|
* 下单
|
|
|
*/
|
|
|
public static function PlaceOrder($user_id,$address_id,$designer_id,$yy_date,$project_name,$coupon_id,$pay_type,$period_id){
|
|
|
+ if ($pay_type=='weixin'){
|
|
|
+ return Common::return_error('暂时无法使用微信支付');
|
|
|
+ }
|
|
|
+
|
|
|
$orde = Order::where('user_id',$user_id)->where('overtime_pay_status',1)->find();
|
|
|
if ($orde) return Common::return_error('有未支付的加班费订单,无法下单');
|
|
|
$designer = self::where('id',$designer_id)
|
|
@@ -1165,6 +1169,9 @@ class User Extends Model
|
|
|
* 订单支付加班费
|
|
|
*/
|
|
|
public static function overtimePayOrder($user_id,$order_no,$pay_type){
|
|
|
+ if ($pay_type=='weixin'){
|
|
|
+ return Common::return_error('暂时无法使用微信支付');
|
|
|
+ }
|
|
|
$order = Order::where('order_no', $order_no)->where('user_id', $user_id)->find();
|
|
|
if (!$order)
|
|
|
return Common::return_error('订单不存在');
|