cqpCow 10 mēneši atpakaļ
vecāks
revīzija
82c9cc27a1
1 mainītis faili ar 8 papildinājumiem un 0 dzēšanām
  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');
 });