2 Комити d6129d4249 ... bfcc1f8bcf

Аутор SHA1 Порука Датум
  shichen bfcc1f8bcf feat(order): 添加收货地址字段到订单导出功能 пре 4 месеци
  sunxbiao 7c1e120d0a 平台后台-财务操作-用户提现,当用户提现时减少用户的可提现额度(完善) пре 4 месеци

+ 1 - 1
app/controller/admin/user/UserExtract.php

@@ -175,7 +175,7 @@ class UserExtract extends BaseController
175 175
                     // 添加扣减记录
176 176
                     $userWithdrawalLimitRecordEntity = $userWithdrawalLimitRecordRepository->addUserWithdrawalLimitRecord(
177 177
                         (int)$userEntity->getUid(),
178
-                        UserWithdrawalLimitRecordEnum::PM['INCOME']['code'],
178
+                        UserWithdrawalLimitRecordEnum::PM['EXPEND']['code'],
179 179
                         (float)$extract_data['extract_price'],
180 180
                         -1,
181 181
                         '',

+ 1 - 0
app/controller/merchant/store/order/Order.php

@@ -417,6 +417,7 @@ class Order extends BaseController
417 417
                 $item['create_time'] ,
418 418
                 $item['ylj'] ,
419 419
                 $item['is_red_ylj_text'] ,
420
+                $item['user_address']
420 421
             ];
421 422
             $i++;
422 423
         }

+ 2 - 1
crmeb/services/ExcelService.php

@@ -77,7 +77,7 @@ class ExcelService
77 77
 //        var_dump($list);die;
78 78
 
79 79
         $header =    [
80
-            '序号','订单编号','收货人','手机号','商品信息','价格*数量','实际支付', '支付类型','支付方式','订单状态','下单时间','养老金','养老金状态',
80
+            '序号','订单编号','收货人','手机号','商品信息','价格*数量','实际支付', '支付类型','支付方式','订单状态','下单时间','养老金','养老金状态','收货地址',
81 81
         ];
82 82
 
83 83
 //
@@ -154,6 +154,7 @@ class ExcelService
154 154
                 $item['create_time'] ,
155 155
                 $item['ylj'] ,
156 156
                 $item['is_red_ylj_text'] ,
157
+                $item['user_address']
157 158
             ];
158 159
             $i++;
159 160
         }