Browse Source

收货地址 打印

master
Lemon 6 years ago
parent
commit
923e31f9c6
  1. 2
      app/Controller/v3/UserAddressController.php
  2. 2
      app/Service/v3/Implementations/FeiePrintService.php

2
app/Controller/v3/UserAddressController.php

@ -33,7 +33,7 @@ class UserAddressController extends BaseController
return $this->success($res);
}
public function get(UserAddressRequest $request)
public function get()
{
$userAddressId = $this->request->input('user_address_id');
$res = $this->userAddressService->get($userAddressId);

2
app/Service/v3/Implementations/FeiePrintService.php

@ -182,7 +182,7 @@ class FeiePrintService implements FeiePrintServiceInterface
$orderInfo .= '送货地点:' . $arr->address . '<BR>';
$tel = substr_replace( $arr->tel, '****', 3, 4);
$orderInfo .= '联系电话:' . $tel . '<BR>';
$orderInfo .= '送时间:' . $arr->delivery_time_note . '<BR>';
$orderInfo .= '送时间:' . $arr->delivery_time_note . '<BR>';

Loading…
Cancel
Save