demand: 实时扫描漏组批次报错修复

This commit is contained in:
aike 2025-12-06 16:02:43 +08:00
parent 2f8b8fd30d
commit 2661204a95

View File

@ -28,6 +28,7 @@ import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.xdadan.erp.common.annotation.Log;
@ -127,7 +128,7 @@ public class EmisTmsSiteBatchController extends EmisBaseController
*/
@GetMapping("/scanSiteBatchV2")
// @PreAuthorize("@ss.hasPermi('emis:emisTmsSiteBatch:scanSiteBatch')")
public AjaxResult scanSiteBatchV2(String batchNo) {
public AjaxResult scanSiteBatchV2(@RequestParam("batchNo") String batchNo) {
emisTmsSiteBatchService.scanSiteBatchV2(batchNo);
return AjaxResult.success("发送成功");