Commit 69cab5f3 authored by tianyiming's avatar tianyiming

修改总览

parent 06613fbd
...@@ -13,7 +13,8 @@ ...@@ -13,7 +13,8 @@
LEFT JOIN tz_equipment_category tec ON ibjri.EQU_CATEGORY = tec.code LEFT JOIN tz_equipment_category tec ON ibjri.EQU_CATEGORY = tec.code
LEFT JOIN tz_equipment_category tec1 ON ibjri.EQU_LIST = tec1.code LEFT JOIN tz_equipment_category tec1 ON ibjri.EQU_LIST = tec1.code
WHERE WHERE
ibjoi.claim_status = '待认领' AND ibjri."EQU_LIST" = #{code} /*6036代表待认领*/
ibjoi.claim_status = '6036' AND ibjri."EQU_LIST" = #{code}
<if test="level == 'company'"> <if test="level == 'company'">
AND ibjui."USE_UNIT_CREDIT_CODE" AND ibjui."USE_UNIT_CREDIT_CODE"
LIKE CONCAT('%',#{orgCode},'%') LIKE CONCAT('%',#{orgCode},'%')
...@@ -33,7 +34,8 @@ ...@@ -33,7 +34,8 @@
LEFT JOIN tz_equipment_category tec ON ibjri.EQU_CATEGORY = tec.code LEFT JOIN tz_equipment_category tec ON ibjri.EQU_CATEGORY = tec.code
LEFT JOIN tz_equipment_category tec1 ON ibjri.EQU_LIST = tec1.code LEFT JOIN tz_equipment_category tec1 ON ibjri.EQU_LIST = tec1.code
WHERE WHERE
ibjoi.claim_status = '已认领' AND ibjri."EQU_LIST" = #{code} /**6035代表待认领*/
ibjoi.claim_status = '6035' AND ibjri."EQU_LIST" = #{code}
<if test="level == 'company'"> <if test="level == 'company'">
AND ibjui."USE_UNIT_CREDIT_CODE" AND ibjui."USE_UNIT_CREDIT_CODE"
LIKE CONCAT('%',#{orgCode},'%') LIKE CONCAT('%',#{orgCode},'%')
...@@ -53,7 +55,8 @@ ...@@ -53,7 +55,8 @@
LEFT JOIN tz_equipment_category tec ON ibjri.EQU_CATEGORY = tec.code LEFT JOIN tz_equipment_category tec ON ibjri.EQU_CATEGORY = tec.code
LEFT JOIN tz_equipment_category tec1 ON ibjri.EQU_LIST = tec1.code LEFT JOIN tz_equipment_category tec1 ON ibjri.EQU_LIST = tec1.code
WHERE WHERE
ibjoi.claim_status = '已拒领' AND ibjri."EQU_LIST" = #{code} /**6037代表待认领*/
ibjoi.claim_status = '6037' AND ibjri."EQU_LIST" = #{code}
<if test="level == 'company'"> <if test="level == 'company'">
AND ibjui."USE_UNIT_CREDIT_CODE" AND ibjui."USE_UNIT_CREDIT_CODE"
LIKE CONCAT('%',#{orgCode},'%') LIKE CONCAT('%',#{orgCode},'%')
......
...@@ -46,9 +46,6 @@ public class EquipmentCategoryServiceImpl extends BaseService<EquipmentCategoryD ...@@ -46,9 +46,6 @@ public class EquipmentCategoryServiceImpl extends BaseService<EquipmentCategoryD
@Value("classpath:/json/equipCategory.json") @Value("classpath:/json/equipCategory.json")
private Resource equipCategory; private Resource equipCategory;
@Value("classpath:/json/equipStatus.json")
private Resource equipStatus;
@Autowired @Autowired
CategoryOtherInfoMapper categoryOtherInfoMapper; CategoryOtherInfoMapper categoryOtherInfoMapper;
......
{
"rlzt": [
{
"name": "待认领",
"value": "waitClaim"
},
{
"name": "已认领",
"value": "alreadyClaim"
},
{
"name": "拒领",
"value": "refuseClaim"
}
]
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment