|
@@ -156,9 +156,6 @@ public class EnforceDeductRecordServiceImpl extends ServiceImpl<EnforceDeductRec
|
|
|
JSONArray warray = JSON.parseArray(w.getWTypeT());
|
|
|
for (int i = 0; i <= 8; i++) {
|
|
|
int v = ((JSONObject)warray.get(i)).getInteger("num" + (i+1));
|
|
|
- if (Objects.equals("SUPERVISE", w.getClueResource()) || Objects.equals("REPORT", w.getClueResource())) {
|
|
|
- continue;
|
|
|
- }
|
|
|
wrongCount += v;
|
|
|
double vvalue = v * 0.1;
|
|
|
switch (i) {
|
|
@@ -199,9 +196,6 @@ public class EnforceDeductRecordServiceImpl extends ServiceImpl<EnforceDeductRec
|
|
|
JSONArray narray = JSON.parseArray(w.getNTypeT());
|
|
|
for (int i = 0; i <= 11; i++) {
|
|
|
int v = ((JSONObject)narray.get(i)).getInteger("wlxNum" + (i+1));
|
|
|
- if (Objects.equals("SUPERVISE", w.getClueResource()) || Objects.equals("REPORT", w.getClueResource())) {
|
|
|
- continue;
|
|
|
- }
|
|
|
wrongCount += v;
|
|
|
double vvalue = v * 0.1;
|
|
|
switch (i) {
|
|
@@ -391,9 +385,6 @@ public class EnforceDeductRecordServiceImpl extends ServiceImpl<EnforceDeductRec
|
|
|
JSONArray warray = JSON.parseArray(w.getWTypeT());
|
|
|
for (int i = 0; i <= 8; i++) {
|
|
|
int v = ((JSONObject)warray.get(i)).getInteger("num" + (i+1));
|
|
|
- if (Objects.equals("SUPERVISE", w.getClueResource()) || Objects.equals("REPORT", w.getClueResource())) {
|
|
|
- continue;
|
|
|
- }
|
|
|
wrongCount += v;
|
|
|
double vvalue = v * 0.1;
|
|
|
switch (i) {
|
|
@@ -434,9 +425,6 @@ public class EnforceDeductRecordServiceImpl extends ServiceImpl<EnforceDeductRec
|
|
|
JSONArray narray = JSON.parseArray(w.getNTypeT());
|
|
|
for (int i = 0; i <= 11; i++) {
|
|
|
int v = ((JSONObject)narray.get(i)).getInteger("wlxNum" + (i+1));
|
|
|
- if (Objects.equals("SUPERVISE", w.getClueResource()) || Objects.equals("REPORT", w.getClueResource())) {
|
|
|
- continue;
|
|
|
- }
|
|
|
wrongCount += v;
|
|
|
double vvalue = v * 0.1;
|
|
|
switch (i) {
|
|
@@ -486,9 +474,6 @@ public class EnforceDeductRecordServiceImpl extends ServiceImpl<EnforceDeductRec
|
|
|
JSONArray sarray = JSON.parseArray(w.getSTypeT());
|
|
|
for (int i = 0; i <= 16; i++) {
|
|
|
int v = ((JSONObject)sarray.get(i)).getInteger("wflxNum" + (i+1));
|
|
|
- if (Objects.equals("SUPERVISE", w.getClueResource()) || Objects.equals("REPORT", w.getClueResource())) {
|
|
|
- continue;
|
|
|
- }
|
|
|
wrongCount += v;
|
|
|
double vvalue = v * 0.1;
|
|
|
switch (i) {
|