flux.php 826 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. use Illuminate\Http\Request;
  3. use Illuminate\Support\Facades\Route;
  4. /*
  5. 文件地址前缀:/api/thirdPart/flux/receive
  6. */
  7. Route::post('receive/new', "ReceiveController@new_");//增加新波次消息
  8. //accomplishToWMS() 发往WMS的完成单
  9. /*
  10. 文件地址前缀:/api/thirdPart/flux/package
  11. */
  12. Route::post('package/new', "PackageController@new_");//增加新包裹消息
  13. //accomplishToWMS() 发往WMS的称重和纸条包裹信息
  14. /*
  15. 文件地址前缀:/api/thirdPart/flux/process
  16. */
  17. //请求数据,查询库单据是否存在
  18. Route::post('process/getProcessContent', "ProcessController@getProcessContent");//增加新二次加工
  19. /*
  20. 文件地址前缀:/api/thirdPart/flux/waybill
  21. */
  22. //请求数据,查询库单据是否存在
  23. Route::post('waybill/new', "WaybillController@new_");//增加运输单消息