Manage.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <?php
  2. namespace Shop\Lib;
  3. use Dever;
  4. class Manage
  5. {
  6. public function getOrderUrl($order_id, $order_num, $search)
  7. {
  8. $url = Dever::load('manage/database')->url('list', $order_id, 'buy_order_goods&project=shop&order_id='.$order_id.'&page_type=1');
  9. if ($search == 3) {
  10. $url .= '&type=2&search_option_type=2';
  11. } else {
  12. $url .= '&type=1&search_option_type=1';
  13. }
  14. $url = '<a href="'.$url.'">'.$order_num.'</a>';
  15. return $url;
  16. }
  17. public function showCash($cash, $p_cash = 0)
  18. {
  19. if (!$cash) {
  20. $cash = 0;
  21. }
  22. if (!$p_cash) {
  23. $p_cash = 0;
  24. }
  25. return $cash - $p_cash;
  26. }
  27. # 获取用户信息
  28. public function user($id)
  29. {
  30. $info = Dever::db('shop/sell_order')->one($id);
  31. if ($info['uid'] && $info['uid'] > 0) {
  32. $user = Dever::db('passport/user')->one($info['uid']);
  33. $result = $user['username'];
  34. if ($info['mobile']) {
  35. $result .= '('.$info['mobile'].')';
  36. }
  37. } else {
  38. $result = $info['mobile'];
  39. }
  40. return $result;
  41. }
  42. # 获取订单信息
  43. public function sell_order($id)
  44. {
  45. $table = array();
  46. $info = Dever::db('shop/sell_order')->one($id);
  47. $goods = Dever::db('shop/sell_order_goods')->select(array('order_id' => $info['id']));
  48. foreach ($goods as $k => $v) {
  49. $goods_info = Dever::load('goods/lib/info')->getInfoBySku($v['goods_id'], $v['sku_id']);
  50. //print_r($goods_info);die;
  51. $table[$goods_info['name']] = $v['price'];
  52. }
  53. return Dever::table($table);
  54. }
  55. /**
  56. * 更新信息
  57. *
  58. * @return mixed
  59. */
  60. public function upInfo($id, $name, $data)
  61. {
  62. Dever::config('base')->hook = true;
  63. }
  64. /**
  65. * 更新信息
  66. *
  67. * @return mixed
  68. */
  69. public function printInsert($id, $name, $data)
  70. {
  71. Dever::config('base')->hook = true;
  72. $name = Dever::param('name', $data);
  73. $number = Dever::param('number', $data);
  74. $phonenum = Dever::param('phonenum', $data);
  75. $key = Dever::param('key', $data);
  76. if ($number && $key) {
  77. $data = array();
  78. $data['name'] = $name;
  79. $data['number'] = $number;
  80. $data['phonenum'] = $phonenum;
  81. $data['key'] = $key;
  82. $result = Dever::load('mshop/lib/feieyun')->add(array($data));
  83. if (isset($result['no'][0]) && $result['no'][0] && strstr($result['no'][0], '编号不合法')) {
  84. Dever::db('shop/print')->update(array('where_id' => $id, 'status' => 10));
  85. } else {
  86. Dever::db('shop/print')->update(array('where_id' => $id, 'status' => 1));
  87. }
  88. }
  89. }
  90. /**
  91. * 更新信息
  92. *
  93. * @return mixed
  94. */
  95. public function printUpdate($id, $name, $data)
  96. {
  97. Dever::config('base')->hook = true;
  98. $info = Dever::db('shop/print')->one($id);
  99. $name = Dever::param('name', $data);
  100. $phonenum = Dever::param('phonenum', $data);
  101. if ($info && $name) {
  102. if ($info['status'] == 10) {
  103. $this->printInsert($id, $name, $info);
  104. } else {
  105. Dever::load('mshop/lib/feieyun')->edit($info['number'], $name, $phonenum);
  106. }
  107. }
  108. }
  109. /**
  110. * 打印机状态
  111. *
  112. * @return mixed
  113. */
  114. public function printStatus($status, $sn)
  115. {
  116. return $status >= 10 ? '绑定失败' : Dever::load('mshop/lib/feieyun')->status($sn);
  117. }
  118. /**
  119. * 更新信息
  120. *
  121. * @return mixed
  122. */
  123. public function couponUpdate($id, $name, $data)
  124. {
  125. Dever::config('base')->hook = true;
  126. $update = array();
  127. $coupon = Dever::param('coupon', $data);
  128. if ($coupon) {
  129. $temp = is_string($coupon) ? explode(',', $coupon) : $coupon;
  130. $update['method'] = $temp[0];
  131. $update['coupon_id'] = $temp[1];
  132. }
  133. $shop_id = Dever::param('shop_id', $data);
  134. if ($shop_id) {
  135. $shop = Dever::db('shop/info')->find($shop_id);
  136. $update['city'] = $shop['city'];
  137. }
  138. if (isset($update) && $update) {
  139. $update['where_id'] = $id;
  140. Dever::db('shop/coupon')->update($update);
  141. }
  142. }
  143. /**
  144. * 更新信息
  145. *
  146. * @return mixed
  147. */
  148. public function infoUpdate($id, $name, $data)
  149. {
  150. $update = array();
  151. $area = Dever::param('area', $data);
  152. if ($area) {
  153. $temp = is_string($area) ? explode(',', $area) : $area;
  154. $update['province'] = $temp[0];
  155. $update['city'] = $temp[1];
  156. if (isset($temp[2])) {
  157. $update['county'] = $temp[2];
  158. }
  159. if (isset($temp[3])) {
  160. $update['town'] = $temp[3];
  161. }
  162. }
  163. $map = Dever::param('map', $data);
  164. if ($map) {
  165. $temp = is_string($map) ? explode(',', $map) : $map;
  166. if (isset($temp[1])) {
  167. $update['lng'] = $temp[1];
  168. $update['lat'] = $temp[2];
  169. $address = Dever::param('address', $data);
  170. $update['coord_address'] = Dever::load('shop/lib/info')->address($temp[1], $temp[2]);
  171. if (!$address && $update['coord_address']) {
  172. $update['address'] = $update['coord_address'];
  173. }
  174. }
  175. }
  176. $act = Dever::param('act', $data);
  177. if ($act) {
  178. foreach ($act as $k => $v) {
  179. $w = array();
  180. $w['shop_id'] = $id;
  181. $w['act_id'] = $k;
  182. foreach ($v as $k1 => $v1) {
  183. $w['shop_coupon_id'] = $v1;
  184. $info = Dever::db('shop/coupon_act')->find($w);
  185. if (!$info) {
  186. Dever::db('shop/coupon_act')->insert($w);
  187. }
  188. }
  189. }
  190. }
  191. //Dever::upLinkage($update, $id, $data, 'goods', 'shop/goods', 'shop_id', 'goods_id', 'category_id');
  192. //Dever::upLinkage($update, $id, $data, 'factory', 'shop/factory', 'shop_id', 'factory_id', 'city');
  193. //Dever::upLinkage($update, $id, $data, 'store', 'shop/store', 'shop_id', 'store_id', 'city');
  194. if (isset($update) && $update) {
  195. $update['where_id'] = $id;
  196. Dever::db('shop/info')->update($update);
  197. }
  198. $truename = Dever::param('truename', $data);
  199. $mobile = Dever::param('mobile', $data);
  200. if ($mobile) {
  201. $member = Dever::db('shop/member')->one(array('shop_id' => $id, 'mobile' => $mobile));
  202. $update = array();
  203. $update['shop_id'] = $id;
  204. $update['name'] = $truename;
  205. $update['mobile'] = $mobile;
  206. if ($member) {
  207. $update['where_id'] = $member['id'];
  208. Dever::db('shop/member')->update($update);
  209. } else {
  210. Dever::db('shop/member')->insert($update);
  211. }
  212. }
  213. }
  214. private function updateParam()
  215. {
  216. }
  217. /**
  218. * 更新商品信息
  219. *
  220. * @return mixed
  221. */
  222. public function goodsUpdate($id, $name, $data)
  223. {
  224. $update = array();
  225. $state = Dever::param('state', $data);
  226. if ($state) {
  227. Dever::config('base')->after = true;
  228. $info = Dever::db('shop/goods')->one($id);
  229. $shop_id = $info['shop_id'];
  230. $shop = Dever::db('shop/info')->one($shop_id);
  231. if ($shop && $shop['goods']) {
  232. $goods = Dever::json_decode($shop['goods']);
  233. if (isset($goods['level_' . $info['category_id']]['value']['id_' . $info['goods_id']])) {
  234. if ($state == 2) {
  235. unset($goods['level_' . $info['category_id']]['value']['id_' . $info['goods_id']]);
  236. }
  237. if (count($goods['level_' . $info['category_id']]['value']) <= 0) {
  238. unset($goods['level_' . $info['category_id']]);
  239. }
  240. } elseif ($state == 1) {
  241. $goods_info = Dever::db('goods/info')->one($info['goods_id']);
  242. $cate = Dever::load('category/api')->string($info['category_id']);
  243. $goods['level_' . $info['category_id']]['id'] = $info['category_id'];
  244. $goods['level_' . $info['category_id']]['name'] = $cate;
  245. $goods['level_' . $info['category_id']]['value']['id_' . $info['goods_id']] = array
  246. (
  247. 'id' => $info['goods_id'],
  248. 'name' => $goods_info['name'],
  249. 'state' => 1,
  250. );
  251. }
  252. $set['goods'] = Dever::json_encode($goods);
  253. $set['where_id'] = $shop_id;
  254. Dever::db('shop/info')->update($set);
  255. }
  256. }
  257. }
  258. /**
  259. * 更新库存信息
  260. *
  261. * @return mixed
  262. */
  263. public function skuUpdate($id, $name, $data)
  264. {
  265. $update = array();
  266. $add_num = Dever::param('add_num', $data);
  267. if ($add_num) {
  268. $state = Dever::db('shop/goods_sku')->updateTotal(array('where_id' => $id, 'total_num' => $add_num));
  269. if ($state) {
  270. $state = Dever::db('shop/goods_sku')->update(array('where_id' => $id, 'add_num' => 0));
  271. $info = Dever::db('shop/goods_sku')->one($id);
  272. $goods = Dever::db('shop/goods')->one(array('goods_id' => $info['goods_id'], 'shop_id' => $info['shop_id']));
  273. if ($goods) {
  274. Dever::db('shop/goods')->update(array('where_id' => $goods['id'], 'total_num' => $info['total_num'], 'add_num' => 0));
  275. }
  276. if ($add_num < 0) {
  277. # 记录出库日志
  278. } else {
  279. # 记录入库日志
  280. }
  281. }
  282. }
  283. }
  284. # 获取供货商信息
  285. public function buyInfo($type = '', $type_id = '')
  286. {
  287. if ($type == 1) {
  288. $type_info = Dever::db('shop/info')->one($type_id);
  289. return $type_info['name'] . '('.$type_info['mobile'].')';
  290. } elseif ($type == 2) {
  291. $type_info = Dever::db('store/info')->one($type_id);
  292. return $type_info['name'] . '('.$type_info['mobile'].')';
  293. } elseif ($type == 3) {
  294. $type_info = Dever::db('factory/info')->one($type_id);
  295. return $type_info['name'] . '('.$type_info['mobile'].')';
  296. } else {
  297. return '无';
  298. }
  299. }
  300. /**
  301. * 更新信息
  302. *
  303. * @return mixed
  304. */
  305. public function buyOrderPs($id, $name, $data)
  306. {
  307. $order_id = Dever::param('order_id', $data);
  308. if ($order_id) {
  309. $update['where_id'] = $order_id;
  310. $update['set_status'] = 4;
  311. Dever::db('shop/buy_order')->update($update);
  312. }
  313. }
  314. # 获取门店
  315. public function search_api()
  316. {
  317. return Dever::search('shop/info');
  318. }
  319. }