|
@@ -151,7 +151,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/findBillWay")
|
|
|
@ApiOperation(value = "分页查询无车运单信息", notes = "分页查询无车运单信息")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR findBillWay(Page page, NoCarWayBill noCarWayBill, User user) {
|
|
|
try {
|
|
|
checkHasAuthRole.checkCustomerRole(user, noCarWayBill.getCustomerName());
|
|
@@ -181,7 +181,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/findBillWayCust")
|
|
|
@ApiOperation(value = "分页查询无车运单信息", notes = "分页查询无车运单信息")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR findBillWayCust(Page page, NoCarWayBill noCarWayBill, User user) {
|
|
|
try {
|
|
|
checkHasAuthRole.checkCustomerRole(user, noCarWayBill.getCustomerName());
|
|
@@ -204,7 +204,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/findImportBillWay")
|
|
|
@ApiOperation(value = "分页查询无车运单信息", notes = "分页查询无车运单信息")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR findImportBillWay(Page page, NoCarWayBill noCarWayBill, User user) {
|
|
|
try {
|
|
|
checkHasAuthRole.checkCustomerRole(user, noCarWayBill.getCustomerName());
|
|
@@ -274,7 +274,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/findNocarInvoices")
|
|
|
@ApiOperation(value = "分页查询无车发票信息", notes = "分页查询无车发票信息")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR findNocarInvoices(Page page, BillInvoice billInvoice, User user) {
|
|
|
try {
|
|
|
checkHasAuthRole.checkCustomerRole(user, billInvoice.getCustomerName());
|
|
@@ -393,7 +393,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/findNocarInvoicesStatic")
|
|
|
@ApiOperation(value = "分页查询无车发票统计信息", notes = "分页查询无车发票统计信息")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR findNocarInvoicesStatic(BillInvoice billInvoice, User user) {
|
|
|
checkHasAuthRole.checkCustomerRole(user, billInvoice.getCustomerName());
|
|
|
try {
|
|
@@ -423,7 +423,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/batchImprotBillWay")
|
|
|
@ApiOperation(value = "批量运单导入", notes = "批量运单导入")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR batchImprotBillWay(@RequestParam("file") MultipartFile file, String customerName, User user) {
|
|
|
try {
|
|
|
|
|
@@ -457,7 +457,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/batchImprotHistoryBillWay")
|
|
|
@ApiOperation(value = "批量历史运单导入", notes = "批量历史运单导入")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR batchImprotHistoryBillWay(@RequestParam("file") MultipartFile file, String customerName, User user) {
|
|
|
try {
|
|
|
|
|
@@ -492,7 +492,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/batchImprotEndBillWay")
|
|
|
@ApiOperation(value = "批量运单结束", notes = "批量运单结束")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR batchImprotEndBillWay(@RequestParam("file") MultipartFile file, String customerName, User user) {
|
|
|
|
|
|
if(null == file){
|
|
@@ -650,7 +650,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/findBatchList")
|
|
|
@ApiOperation(value = "运单批次号查询", notes = "运单批次号查询")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR findBatchList(Page page, CustomerOper customerOper, User user) {
|
|
|
try {
|
|
|
checkHasAuthRole.checkCustomerRole(user, customerOper.getCustomerName());
|
|
@@ -670,7 +670,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/findNocarCalculateInfo")
|
|
|
@ApiOperation(value = "分页查询无车计费信息", notes = "分页查询无车计费信息")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR findNocarCalculateInfo(Page page, NoCarCalculateInfor carCalculateInfor, User user) {
|
|
|
try {
|
|
|
checkHasAuthRole.checkCustomerRole(user, carCalculateInfor.getCustomId());
|
|
@@ -691,7 +691,7 @@ public class NoCarController {
|
|
|
*/
|
|
|
@PostMapping("/findNocarCalculateInfoStatis")
|
|
|
@ApiOperation(value = "分页查询无车计费统计信息", notes = "分页查询无车计费统计信息")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
|
|
|
public RespR findNocarCalculateInfoStatis(NoCarCalculateInfor carCalculateInfor, User user) {
|
|
|
try {
|
|
|
checkHasAuthRole.checkCustomerRole(user, carCalculateInfor.getCustomId());
|