#
zhou zhou
4 天以前 8e2ba687b00f230ade708fa82b8c9f67cf842f0d
rsf-server/src/main/java/com/vincent/rsf/server/api/controller/pda/MobileController.java
@@ -21,7 +21,6 @@
import io.swagger.annotations.ApiOperation;
import org.apache.tika.utils.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
@@ -164,7 +163,7 @@
        if (!Objects.isNull(params.get("type")) && params.get("type").equals("unbind")) {
            return mobileService.getUnItemByContainer(params);
        } else {
            return mobileService.getItemByContainer(params);
            return mobileService.getItemByContainer(params,getLoginUser());
        }
    }
@@ -309,7 +308,7 @@
        if (Objects.isNull(map)) {
            return R.error("参数不能为空!!");
        }
        return mobileService.getItemByContainer(map);
        return mobileService.getItemByContainer(map,getLoginUser());
    }
    @ApiOperation("获取订单不良物料")