|
|
|
@ -8,10 +8,7 @@ import org.dromara.wms.domain.vo.WmsHppStorePlaceVo;
|
|
|
|
|
import org.dromara.wms.domain.vo.WmsInventoryVo;
|
|
|
|
|
import org.dromara.wms.service.IWmsHppStorePlaceService;
|
|
|
|
|
import org.dromara.wms.service.IWmsPdaApiService;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
@ -43,6 +40,12 @@ public class MachineApiController extends BaseController {
|
|
|
|
|
return result ? R.ok() : R.fail();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//删除
|
|
|
|
|
@GetMapping("/semi/deleteErrorCode")
|
|
|
|
|
public R<Void> semiDeleteErrorCode(String code) {
|
|
|
|
|
int i= apiService.semiDeleteErrorCode (code);
|
|
|
|
|
return R.ok();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 根据库位查询库存
|
|
|
|
@ -56,5 +59,4 @@ public class MachineApiController extends BaseController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|