|
@@ -20,6 +20,12 @@ public class SupplierPageController extends BaseController {
|
|
|
private static final String ORDER_DETAIL = "supplier-center/order/detail";
|
|
|
/** 物流 */
|
|
|
private static final String LOGISTICS = "supplier-center/order/logistics";
|
|
|
+ /** 物流详情 */
|
|
|
+ private static final String LOGISTICS_DETAIL = "supplier-center/order/logistics-detail";
|
|
|
+ /** 添加物流 */
|
|
|
+ private static final String LOGISTICS_ADD = "supplier-center/order/logistics-add";
|
|
|
+ /** 售货清单 */
|
|
|
+ private static final String SALES_LIST = "supplier-center/order/sales-list";
|
|
|
/** 发货 */
|
|
|
private static final String DELIVERY = "supplier-center/order/delivery";
|
|
|
/** 发货记录 */
|
|
@@ -72,19 +78,37 @@ public class SupplierPageController extends BaseController {
|
|
|
return SETTLEMENT_LIST;
|
|
|
}
|
|
|
|
|
|
- /** 结算管理 */
|
|
|
+ /** 物流 */
|
|
|
@GetMapping("/supplier/order/logistics.html")
|
|
|
public String logistics() {
|
|
|
return LOGISTICS;
|
|
|
}
|
|
|
|
|
|
- /** 结算管理 */
|
|
|
+ /** 物流详情 */
|
|
|
+ @GetMapping("/supplier/order/logistics/detail.html")
|
|
|
+ public String logisticsDetail() {
|
|
|
+ return LOGISTICS_DETAIL;
|
|
|
+ }
|
|
|
+
|
|
|
+ /** 添加物流 */
|
|
|
+ @GetMapping("/supplier/order/logistics/add.html")
|
|
|
+ public String logisticsAdd() {
|
|
|
+ return LOGISTICS_ADD;
|
|
|
+ }
|
|
|
+
|
|
|
+ /** 售货清单 */
|
|
|
+ @GetMapping("/supplier/order/sales.html")
|
|
|
+ public String salesList() {
|
|
|
+ return SALES_LIST;
|
|
|
+ }
|
|
|
+
|
|
|
+ /** 发货 */
|
|
|
@GetMapping("/supplier/order/delivery.html")
|
|
|
public String delivery() {
|
|
|
return DELIVERY;
|
|
|
}
|
|
|
|
|
|
- /** 结算管理 */
|
|
|
+ /** 发货记录 */
|
|
|
@GetMapping("/supplier/order/delivery_record.html")
|
|
|
public String deliveryRecord() {
|
|
|
return DELIVERY_RECORD;
|