cqpCow 10 달 전
부모
커밋
82c9cc27a1
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      routes/wx.php

+ 8 - 0
routes/wx.php

@@ -112,4 +112,12 @@ Route::group(['middleware'=> ['checkWx']],function ($route){
     $route->any('customerDel', 'Api\CustomerController@customerDel')->middleware('OssFileDeal');
     $route->any('customerDetail', 'Api\CustomerController@customerDetail');
     $route->any('customerGrabbing', 'Api\CustomerController@customerGrabbing');
+
+    //收付款
+    $route->any('paymentReceiptGet', 'Api\PaymentReceiptController@paymentReceiptGet');
+    $route->any('paymentReceiptList', 'Api\PaymentReceiptController@paymentReceiptList');
+    $route->any('paymentReceiptAdd', 'Api\PaymentReceiptController@paymentReceiptAdd')->middleware('OssFileDeal');
+    $route->any('paymentReceiptEdit', 'Api\PaymentReceiptController@paymentReceiptEdit')->middleware('OssFileDeal');
+    $route->any('paymentReceiptDel', 'Api\PaymentReceiptController@paymentReceiptDel')->middleware('OssFileDeal');
+    $route->any('paymentReceiptDetail', 'Api\PaymentReceiptController@paymentReceiptDetail');
 });