|
|
|
@ -15,6 +15,7 @@ import org.springframework.ui.ModelMap;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
|
|
@Controller
|
|
|
|
|
@RequestMapping("/system/checkresult")
|
|
|
|
@ -115,9 +116,12 @@ public class TdCheckResultController extends BaseController {
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult selfcheckSave(TdCheck tdCheck)
|
|
|
|
|
{
|
|
|
|
|
if (tdCheck.getCheckresult1().equals("0")&&tdCheck.getCheckresult2().equals("0")
|
|
|
|
|
&&tdCheck.getCheckresult3().equals("0")&&tdCheck.getCheckresult4().equals("0")
|
|
|
|
|
&&tdCheck.getCheckresult5().equals("0")&&tdCheck.getCheckresult6().equals("0")){
|
|
|
|
|
if (Objects.equals(tdCheck.getCheckresult1(),"0")
|
|
|
|
|
&& Objects.equals(tdCheck.getCheckresult2(),"0")
|
|
|
|
|
&& Objects.equals(tdCheck.getCheckresult3(),"0")
|
|
|
|
|
&& Objects.equals(tdCheck.getCheckresult4(),"0")
|
|
|
|
|
&& Objects.equals(tdCheck.getCheckresult5(),"0")
|
|
|
|
|
&& Objects.equals(tdCheck.getCheckresult6(),"0")){
|
|
|
|
|
tdCheck.setCheckState("0");
|
|
|
|
|
}else {
|
|
|
|
|
tdCheck.setCheckState("1");
|
|
|
|
|