Order.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?php
  2. namespace Factory\Lib;
  3. use Dever;
  4. class Order
  5. {
  6. # 得到商品和总价
  7. private function goods()
  8. {
  9. $goods = Dever::input('goods');
  10. if (!$goods) {
  11. Dever::alert('请传入商品');
  12. }
  13. $goods = Dever::json_decode($goods);
  14. $this->data['price'] = 0;
  15. $this->data['p_price'] = 0;
  16. $this->data['num'] = 0;
  17. $this->data['name'] = array();
  18. $factory_id = Dever::input('factory_id');
  19. # 计算总价格
  20. foreach ($goods as $k => $v) {
  21. if (strstr($v['id'], '-')) {
  22. $t = explode('-', $v['id']);
  23. $v['id'] = $t[0];
  24. $s = $t[1];
  25. } else {
  26. $s = -1;
  27. }
  28. $n = $v['num'];
  29. $goods_sku = Dever::db('factory/goods_sku')->find(array('factory_id' => $factory_id, 'goods_id' => $v['id'], 'sku_id' => $s));
  30. $this->data['list'][$k] = Dever::load('goods/lib/info')->getPayInfo($v['id'], $s, $n);
  31. $this->data['list'][$k]['num'] = $n;
  32. $this->data['list'][$k]['buy_num'] = $n;
  33. $this->data['num'] += $n;
  34. if ($goods_sku) {
  35. $p_price = $goods_sku['p_price'];
  36. } else {
  37. $p_price = 0;
  38. }
  39. $this->data['list'][$k]['p_price'] = $p_price;
  40. $price = $this->data['list'][$k]['price'];
  41. $this->data['price'] += $price * $n;
  42. $this->data['p_price'] += $p_price * $n;
  43. $this->data['name'][] = $this->data['list'][$k]['name'];
  44. }
  45. $this->data['name'] = implode(',', $this->data['name']);
  46. }
  47. # 下单
  48. public function action_commit_api()
  49. {
  50. $info = Dever::input('info');
  51. $this->goods();
  52. $order_data['type'] = 2;
  53. $order_data['type_id'] = Dever::input('store_id');
  54. $order_data['source_id'] = Dever::input('factory_id');
  55. $order_data['source_type'] = 3;
  56. $order_data['name'] = $this->data['name'];
  57. $order_data['num'] = $this->data['num'];
  58. $order_data['info'] = $info;
  59. $order_data['price'] = $this->data['price'];
  60. $order_data['p_price'] = $this->data['p_price'];
  61. $order_data['operdate'] = time();
  62. $order_data['status'] = 3;
  63. $order_data['order_num'] = $this->getOrderId();
  64. $id = Dever::db('shop/buy_order')->insert($order_data);
  65. if (!$id) {
  66. Dever::alert('下单失败');
  67. }
  68. $order_data['id'] = $id;
  69. foreach($this->data['list'] as $k => $v) {
  70. $data['order_id'] = $id;
  71. $data['goods_id'] = $v['id'];
  72. $data['sku_id'] = $v['sku_id'];
  73. $data['price'] = $v['price'] * $v['buy_num'];
  74. $data['p_price'] = $v['p_price'] * $v['buy_num'];
  75. $data['d_price'] = $v['price'];
  76. $data['num'] = $v['buy_num'];
  77. $state = Dever::db('shop/buy_order_goods')->insert($data);
  78. }
  79. Dever::load('cash/lib/order')->up($order_data, 1, 1);
  80. return Dever::url('project/database/list&project=shop&&table=buy_order&menu=shop&menu_id=77&search_option_state=1&search_option_type=2', 'manage');
  81. }
  82. # 生成订单号
  83. public function getOrderId()
  84. {
  85. $where['order_num'] = Dever::order('F');
  86. $state = Dever::db('shop/buy_order')->one($where);
  87. if (!$state) {
  88. return $where['order_num'];
  89. } else {
  90. return $this->getOrderId();
  91. }
  92. }
  93. }