123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <?php
- namespace app\model;
- use think\Model;
- class Store extends Model
- {
- protected $connection = 'mysql';
- protected $pk = 'id';
- protected $name = 'store';
- public static function getTitle($id = '')
- {
- $mo = self::find($id);
- return $mo->title;
- }
- public static function getUuid($id = '')
- {
- $mo = self::find($id);
- return $mo->uuid;
- }
- public static function getStorebytzid($tzid)
- {
- $mo = self::where('tzid', $tzid)->find();
- if (!empty($mo)) {
- return $mo->toArray();
- } else {
- $mo = self::createTuanzhang($tzid);
- if (!empty($mo)) {
- return $mo->toArray();
- }
- }
- }
- public static function getidbytzid($tzid)
- {
- $mo = self::where('tzid', $tzid)->find();
- if (!empty($mo)) {
- return $mo->id;
- } else {
- $mo = self::createTuanzhang($tzid);
- return $mo->id;
- }
- }
- public static function createTuanzhang($tzid)
- {
- $Tuanzhang = Tuanzhang::find($tzid);
- if (!empty($Tuanzhang)) {
- $Tuanzhang = $Tuanzhang->toArray();
- self::create([
- 'weid' => $Tuanzhang['weid'],
- 'tzid' => $Tuanzhang['id'],
- 'owner_name' => $Tuanzhang['title'],
- 'title' => $Tuanzhang['community_title'],
- 'store_logo' => $Tuanzhang['touxiang'],
- 'latitude' => $Tuanzhang['latitude'],
- 'longitude' => $Tuanzhang['longitude'],
- 'region_name' => $Tuanzhang['region_name'],
- 'province_name' => $Tuanzhang['province_name'],
- 'city_name' => $Tuanzhang['city_name'],
- 'district_name' => $Tuanzhang['district_name'],
- 'house_number' => $Tuanzhang['house_number'],
- 'cate_ids' => $Tuanzhang['cate_ids'],
- 'status' => $Tuanzhang['status'],
- ]);
- return self::where('tzid', $tzid)->find();
- }
- }
- public static function getTitlebyuid($uuid = '')
- {
- $mo = self::where('uuid', $uuid)->find();
- return $mo->title;
- }
- public static function getInfobyuid($uid)
- {
- $datatz = Tuanzhang::getInfobyuid($uid);
- if (!empty($datatz)) {
- $data = Store::getStorebytzid($datatz['id']);
- } else {
- $uuid = UuidRelation::getuuid($uid, 'store');
- if (!empty($uuid)) {
- $data = Store::where(['uuid' => $uuid])->find();
- if (!empty($data)) {
- $data = $data->toArray();
- }
- }
- }
- return $data;
- }
- public static function getpcarray()
- {
- $data = self::field('id,title')->where(['weid' => weid(), 'status' => 1])
- ->order('sort asc')
- ->select()->toArray();
- foreach ($data as $k => $v) {
- $array[$k]['val'] = $v['id'];
- $array[$k]['key'] = $v['title'];
- }
- return $array;
- }
- public static function conversion($vo)
- {
- if (empty($vo['stid'])) {
- $vo['stid'] = '未设置';
- } else {
- $vo['stid'] = StoreCate::getTitle($vo['stid']);
- }
- if ($vo['end_time'] == 0) {
- $vo['end_time'] = '永久有效';
- } else {
- $vo['end_time'] = time_format($vo['end_time']);
- }
- $vo['cate_ids'] = Category::getmultiple($vo['cate_ids']) ?? '无';
- if (!empty($vo['uuid'])) {
- $vo['username'] = Users::getusername($vo['uuid']);
- }
- $vo['region_name'] = $vo['province_name'] . $vo['city_name'] . $vo['district_name'];
- return $vo;
- }
- public static function setIncome($order_info)
- {
- if (empty($order_info['sid'])) {
- $uid = OrderStaff::getuuid($order_info['id']);
- if (!empty($uuid)) {
- $data = Technical::where('uuid', $uuid)->find();
- if (!empty($data)) {
- $order_info['sid'] = $data->sid;
- }
- }
- }
- if (!empty($order_info['sid'])) {
- $Store = Store::find($order_info['sid']);
- if (!empty($Store)) {
- $Store = $Store->toArray();
- }
- if (!empty($Store['status'])) {
- $percent = StoreCate::getPercent($Store['stid']);
- if (empty($percent)) {
- $percent = Config::getconfig('store')['return_percent'];
- }
- if ($percent > 0) {
- if (empty($order_info['cat_id'])) {
- $income = OrderGoods::getCommission($order_info, 'store', $percent);
- } else {
- $income = $order_info['total'];
- $income = ($income * percent_to_num($percent));
- }
- $return_percent = $percent;
- if ($income > 0) {
- if ($income > 0 && $income < 0.01) {
- $income = 0.01;
- }
- $StoreIncomelog = StoreIncomelog::where([
- 'sid' => $order_info['sid'],
- 'weid' => $order_info['weid'],
- 'order_id' => $order_info['id'],
- ])->find();
- if (empty($StoreIncomelog)) {
- Store::where('id', $order_info['sid'])->inc('income', $income)->update();
- Store::where('id', $order_info['sid'])->inc('total_income', $income)->update();
- $incomedata['sid'] = $order_info['sid'];
- $incomedata['ptype'] = 1;
- $incomedata['weid'] = $order_info['weid'];
- $incomedata['order_id'] = $order_info['id'];
- $incomedata['order_num_alias'] = $order_info['order_num_alias'];
- $incomedata['buyer_id'] = $order_info['uid'];
- $incomedata['income'] = $income;
- $incomedata['return_percent'] = floatval($return_percent);
- $incomedata['percentremark'] = $order_info['total'] . '% x' . $percent . '%';
- $incomedata['order_total'] = $order_info['total'];
- $incomedata['pay_time'] = $order_info['pay_time'];
- $incomedata['month_time'] = date('m', time());
- $incomedata['year_time'] = date('Y', time());
- $incomedata['order_status_id'] = 2; //已付款
- StoreIncomelog::create($incomedata);
- }
- }
- }
- }
- }
- }
- }
|