-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #234 from Jzow/master
Fix storage module bug and add other shipments views and api
- Loading branch information
Showing
16 changed files
with
1,748 additions
and
22 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
core/api/src/main/java/com/wansenai/api/warehouse/OtherShipmentsController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright 2023-2033 WanSen AI Team, Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance | ||
* with the License. A copy of the License is located at | ||
* | ||
* http://opensource.wansenai.com/apache2.0/ | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES | ||
* OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
* and limitations under the License. | ||
*/ | ||
package com.wansenai.api.warehouse; | ||
|
||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | ||
import com.wansenai.dto.warehouse.OtherShipmentDTO; | ||
import com.wansenai.dto.warehouse.QueryOtherShipmentDTO; | ||
import com.wansenai.service.warehouse.OtherShipmentsService; | ||
import com.wansenai.utils.response.Response; | ||
import com.wansenai.vo.warehouse.OtherShipmentDetailVO; | ||
import com.wansenai.vo.warehouse.OtherShipmentVO; | ||
import org.springframework.web.bind.annotation.RestController; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RequestBody; | ||
import org.springframework.web.bind.annotation.GetMapping; | ||
import org.springframework.web.bind.annotation.PathVariable; | ||
import org.springframework.web.bind.annotation.PutMapping; | ||
import org.springframework.web.bind.annotation.RequestParam; | ||
import org.springframework.web.bind.annotation.PostMapping; | ||
|
||
import java.util.List; | ||
|
||
@RestController | ||
@RequestMapping("warehouse/otherShipments") | ||
public class OtherShipmentsController { | ||
|
||
private final OtherShipmentsService otherShipmentsService; | ||
|
||
public OtherShipmentsController(OtherShipmentsService otherShipmentsService) { | ||
this.otherShipmentsService = otherShipmentsService; | ||
} | ||
|
||
@PostMapping("addOrUpdate") | ||
public Response<String> addOrUpdateOtherShipments(@RequestBody OtherShipmentDTO otherShipmentDTO) { | ||
return otherShipmentsService.addOrUpdateOtherShipments(otherShipmentDTO); | ||
} | ||
|
||
@PostMapping("pageList") | ||
public Response<Page<OtherShipmentVO>> getOtherShipmentsPageList(@RequestBody QueryOtherShipmentDTO queryOtherShipmentDTO) { | ||
return otherShipmentsService.getOtherShipmentsPageList(queryOtherShipmentDTO); | ||
} | ||
|
||
@GetMapping("getDetailById/{id}") | ||
public Response<OtherShipmentDetailVO> getOtherShipmentsDetailById(@PathVariable("id") Long id) { | ||
return otherShipmentsService.getOtherShipmentsDetail(id); | ||
} | ||
|
||
@PutMapping("deleteByIds") | ||
public Response<String> deleteOtherShipmentsByIds(@RequestParam("ids") List<Long> ids) { | ||
return otherShipmentsService.deleteBatchOtherShipments(ids); | ||
} | ||
|
||
@PutMapping("updateStatusByIds") | ||
public Response<String> updateOtherShipmentsStatusByIds(@RequestParam("ids") List<Long> ids, @RequestParam("status") Integer status) { | ||
return otherShipmentsService.updateOtherShipmentsStatus(ids, status); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.