|
@@ -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');
|
|
|
});
|