SettlementBillLogisticFeeController.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace App\Http\Controllers;
  3. use App\Interfaces\SettlementBillControllerInterface;
  4. use App\Services\OwnerBillReportArchiveService;
  5. use App\Services\OwnerWaybillSettlementBillService;
  6. use App\Traits\SettlementBillTrait;
  7. use Illuminate\Http\Request;
  8. class SettlementBillLogisticFeeController extends Controller implements SettlementBillControllerInterface
  9. {
  10. use SettlementBillTrait;
  11. /**
  12. * @var $service OwnerWaybillSettlementBillService
  13. */
  14. private $service;
  15. /**
  16. * @var $archiveService OwnerBillReportArchiveService
  17. */
  18. private $archiveService;
  19. //
  20. /**
  21. * SettlementBillLogisticFeeController constructor.
  22. */
  23. public function __construct()
  24. {
  25. $this->service = app('OwnerWaybillSettlementBillService');
  26. $this->service = app('OwnerBillReportArchiveService');
  27. }
  28. public function index(Request $request)
  29. {
  30. // TODO: Implement index() method.
  31. }
  32. public function confirmBill(Request $request): \Illuminate\Http\RedirectResponse
  33. {
  34. // TODO: Implement confirmBill() method.
  35. }
  36. public function export(Request $request)
  37. {
  38. // TODO: Implement export() method.
  39. }
  40. }