feat(sip): 添加发货记录导入功能
- 在 OrderDeliveryController 中添加了 importView 方法 -为 importView 方法添加了权限控制注解 - 新增了发货记录导入页面的视图master
parent
4967b2149c
commit
264e8371a8
|
@ -40,6 +40,12 @@ public class OrderDeliveryController extends BaseController
|
||||||
{
|
{
|
||||||
return prefix + "/delivery";
|
return prefix + "/delivery";
|
||||||
}
|
}
|
||||||
|
@RequiresPermissions("manage:delivery:view")
|
||||||
|
@GetMapping("/import")
|
||||||
|
public String importView()
|
||||||
|
{
|
||||||
|
return prefix + "/import";
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询发货记录列表
|
* 查询发货记录列表
|
||||||
|
|
Loading…
Reference in New Issue