截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Transaction.php 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace app\admin\controller\setting;
  3. use app\common\basics\AdminBase;
  4. use app\common\server\ConfigServer;
  5. use app\common\server\JsonServer;
  6. /**
  7. * 交易设置
  8. */
  9. class Transaction extends AdminBase
  10. {
  11. public function index()
  12. {
  13. $config = [
  14. 'is_show_stock' => ConfigServer::get('transaction', 'is_show_stock', 0),
  15. 'money_to_growth' => ConfigServer::get('transaction', 'money_to_growth', 0),
  16. 'unpaid_order_cancel_time' => ConfigServer::get('transaction', 'unpaid_order_cancel_time', 60),
  17. 'paid_order_cancel_time' => ConfigServer::get('transaction', 'paid_order_cancel_time', 60),
  18. 'order_auto_receipt_days' => ConfigServer::get('transaction', 'order_auto_receipt_days', 7),
  19. 'order_after_sale_days' => ConfigServer::get('transaction', 'order_after_sale_days', 7)
  20. ];
  21. return view('', [
  22. 'config' => $config
  23. ]);
  24. }
  25. public function set()
  26. {
  27. $post = $this->request->post();
  28. ConfigServer::set('transaction', 'is_show_stock', $post['is_show_stock']); //是否显示库存
  29. ConfigServer::set('transaction', 'money_to_growth', $post['money_to_growth']); //下单赠送成长值比例
  30. ConfigServer::set('transaction', 'unpaid_order_cancel_time', $post['unpaid_order_cancel_time']); //未付款自动取消时长(分钟)
  31. ConfigServer::set('transaction', 'paid_order_cancel_time', $post['paid_order_cancel_time']); //已支付允许取消时长(分钟)
  32. ConfigServer::set('transaction', 'order_auto_receipt_days', $post['order_auto_receipt_days']); //已发货订单自动完成时长(天)
  33. ConfigServer::set('transaction', 'order_after_sale_days', $post['order_after_sale_days']); //已完成订单售后退款时长(天)
  34. return JsonServer::success('设置成功');
  35. }
  36. }