Set.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. namespace Goods\Lib;
  3. use Dever;
  4. class Set
  5. {
  6. # 获取商品及其属性列表
  7. public function getGoodsList($id, $type, $table, $col = 'goods_id')
  8. {
  9. $where['status'] = 1;
  10. if ($type != 'factory_id') {
  11. //$where['price_type'] = '1,2,3';
  12. }
  13. $data = Dever::db('goods/info')->getData($where);
  14. $result = array();
  15. if ($data) {
  16. $i = 0;
  17. foreach ($data as $k => $v) {
  18. $sku = Dever::db('goods/info_sku')->select(array('info_id' => $v['id']));
  19. if ($sku) {
  20. $other_where = array($type => $id, $col => $v['id'], 'sku_id' => -1);
  21. if ($col == 'type_id') {
  22. $other_where['type'] = 1;
  23. }
  24. $give = Dever::input('give');
  25. if ($give) {
  26. $other_where['give'] = $give;
  27. }
  28. $other = Dever::db($table)->find($other_where);
  29. $result[$i]['id'] = $v['id'];
  30. $result[$i]['name'] = $v['name'];
  31. $result[$i]['price'] = $v['price'];
  32. $result[$i]['price_type'] = $v['price_type'];
  33. $result[$i]['select'] = 2;
  34. $result[$i]['del'] = 1;
  35. if ($type == 'factory_id') {
  36. if ($other) {
  37. $result[$i]['p_price'] = $other['p_price'];
  38. $result[$i]['select'] = $other['state'];
  39. } else {
  40. $result[$i]['p_price'] = $v['price'];
  41. }
  42. } else {
  43. if ($type == 'store_id') {
  44. $result[$i]['price'] = $v['f_price'];
  45. }
  46. if ($other) {
  47. if (isset($other['min'])) {
  48. $result[$i]['min'] = $other['min'];
  49. }
  50. if (isset($other['total_num'])) {
  51. if ($col == 'type_id' && $table != 'agent/member_goods') {
  52. $result[$i]['total'] = $other['total_num'];
  53. } else {
  54. $result[$i]['total'] = $other['total_num'] - $other['sell_num'];
  55. }
  56. } else {
  57. $result[$i]['total'] = $other['num'];
  58. }
  59. $result[$i]['select'] = $other['state'];
  60. } else {
  61. $result[$i]['total'] = 0;
  62. }
  63. }
  64. $result[$i]['children'] = array();
  65. $num = count($sku);
  66. if ($num == 1 && $sku[0]['key'] == -1) {
  67. //$result[$i]['id'] .= '-' . $sku[0]['id'];
  68. $result[$i]['end'] = true;
  69. } else {
  70. foreach ($sku as $k1 => $v1) {
  71. $v1['sku_name'] = '';
  72. if ($v1['attr']) {
  73. $v1['attr'] = Dever::json_decode($v1['attr']);
  74. if ($v1['attr']) {
  75. $v1['attr'] = Dever::load('attr/api')->getInfoByJson($v1['attr']);
  76. $v1['sku_name'] = $v1['attr']['string'];
  77. }
  78. }
  79. $name = $v['name'];
  80. if ($v1['sku_name']) {
  81. $name .= '-' . $v1['sku_name'];
  82. }
  83. $children = array
  84. (
  85. 'id' => $v['id'] . '-' . $v1['id'],
  86. 'name' => $name,
  87. 'price' => $v1['price'] ? $v1['price'] : 0,
  88. 'price_type' => $v['price_type'],
  89. 'del' => 1,
  90. 'end' => true,
  91. );
  92. $other_sku_where = array($type => $id, $col => $v['id'], 'sku_id' => $v1['id']);
  93. if ($col == 'type_id') {
  94. $other_sku_where['type'] = 1;
  95. }
  96. $give = Dever::input('give');
  97. if ($give) {
  98. $other_sku_where['give'] = $give;
  99. }
  100. $other_sku = Dever::db($table)->find($other_sku_where);
  101. $children['select'] = 2;
  102. if ($type == 'factory_id') {
  103. $children['p_price'] = $v1['price'];
  104. if ($other_sku) {
  105. $children['p_price'] = $other_sku['p_price'];
  106. $children['select'] = $other_sku['state'];
  107. }
  108. } else {
  109. if ($type == 'store_id') {
  110. $children['price'] = $v1['f_price'];
  111. }
  112. $children['total'] = 0;
  113. if ($other_sku) {
  114. if (isset($other_sku['min'])) {
  115. $children['min'] = $other_sku['min'];
  116. }
  117. if (isset($other_sku['total_num'])) {
  118. if ($col == 'type_id' && $table != 'agent/member_goods') {
  119. $children['total'] = $other_sku['total_num'];
  120. } else {
  121. $children['total'] = $other_sku['total_num'] - $other_sku['sell_num'];
  122. }
  123. } else {
  124. $children['total'] = $other_sku['num'];
  125. }
  126. $children['select'] = $other_sku['state'];
  127. }
  128. }
  129. $result[$i]['children'][] = $children;
  130. }
  131. }
  132. $i++;
  133. }
  134. }
  135. }
  136. return $result;
  137. }
  138. }