|
|
|
@ -127,7 +127,7 @@ public class ChongnoTaskProcessor extends TaskProcessor {
|
|
|
|
else if (vhclCpct >= capacity) {
|
|
|
|
else if (vhclCpct >= capacity) {
|
|
|
|
boolean enforce = isTarget(vhrno, crdn);
|
|
|
|
boolean enforce = isTarget(vhrno, crdn);
|
|
|
|
if (enforce) {
|
|
|
|
if (enforce) {
|
|
|
|
// excluded.put(crdn, newLevyExcl(crdn, "2", "206")); // 정원초과 -> 계도(시범운영)
|
|
|
|
excluded.put(crdn, newLevyExcl(crdn, "2", "206")); // 정원초과 -> 계도(시범운영)
|
|
|
|
} else
|
|
|
|
} else
|
|
|
|
excluded.put(crdn, newLevyExcl(crdn, "1", "103")); // 부과제외(일반차량)
|
|
|
|
excluded.put(crdn, newLevyExcl(crdn, "1", "103")); // 부과제외(일반차량)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -171,7 +171,7 @@ public class ChongnoTaskProcessor extends TaskProcessor {
|
|
|
|
|
|
|
|
|
|
|
|
boolean enforce = vhclCpct >= capacity && isTarget(new Vhrno(), crdn);
|
|
|
|
boolean enforce = vhclCpct >= capacity && isTarget(new Vhrno(), crdn);
|
|
|
|
if (enforce) // 정원초과, 승합차, 운수사업 일반 -> 단속대상: 계도(시범운영)
|
|
|
|
if (enforce) // 정원초과, 승합차, 운수사업 일반 -> 단속대상: 계도(시범운영)
|
|
|
|
return null; // newLevyExcl(crdn, "2", "206");
|
|
|
|
return newLevyExcl(crdn, "2", "206");
|
|
|
|
else
|
|
|
|
else
|
|
|
|
return newLevyExcl(crdn, "1", "103"); // 부과제외(일반차량)
|
|
|
|
return newLevyExcl(crdn, "1", "103"); // 부과제외(일반차량)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|