|
@@ -6,19 +6,20 @@ import cn.com.taiji.cql.model.GeoDataSource;
|
|
|
import cn.com.taiji.cql.service.IECqlService;
|
|
|
import cn.com.taiji.web.config.EnterpriseConfig;
|
|
|
import cn.com.taiji.web.model.DeviceInfo;
|
|
|
+import cn.com.taiji.web.model.StaticsInfo;
|
|
|
import cn.com.taiji.web.service.IEnterpriseService;
|
|
|
import cn.com.taiji.web.vo.DeviceVo;
|
|
|
import cn.com.taiji.web.vo.EnterpriseVo;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.geotools.feature.visitor.CountVisitor;
|
|
|
import org.geotools.jdbc.JDBCDataStoreFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.math.RoundingMode;
|
|
|
+import java.util.*;
|
|
|
|
|
|
@Slf4j
|
|
|
@Service
|
|
@@ -62,12 +63,14 @@ public class EnterpriseServiceImpl implements IEnterpriseService {
|
|
|
|
|
|
if(enterpriseVo.getEntType() !=null && !"".equals(enterpriseVo.getEntType())){
|
|
|
|
|
|
+ String result = transEntTypeListToSqlString(Arrays.asList(enterpriseVo.getEntType().split(",")));
|
|
|
+
|
|
|
if(filterCql.length() >0){
|
|
|
|
|
|
- filterCql.append(" and (qykx = '"+enterpriseVo.getEntType()+"')");
|
|
|
+ filterCql.append(" and (qykx in ("+result+"))");
|
|
|
}else{
|
|
|
|
|
|
- filterCql.append(" (qykx = '"+enterpriseVo.getEntType()+"')");
|
|
|
+ filterCql.append(" (qykx in ("+result+"))");
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -77,6 +80,21 @@ public class EnterpriseServiceImpl implements IEnterpriseService {
|
|
|
return ecqlService.cqlQuery4Mysql(entDsParams,filterCql.toString(),sortParams,pageParams);
|
|
|
}
|
|
|
|
|
|
+ public String transEntTypeListToSqlString(List<String> entTypeList) {
|
|
|
+
|
|
|
+ StringBuilder sqlString = new StringBuilder();
|
|
|
+
|
|
|
+ for(String item:entTypeList){
|
|
|
+
|
|
|
+ sqlString.append("'"+item+"',");
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ String result = sqlString.toString();
|
|
|
+
|
|
|
+ return result.substring(0,result.lastIndexOf(","));
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public Result deviceQuery(DeviceVo deviceVo) {
|
|
|
|
|
@@ -129,4 +147,63 @@ public class EnterpriseServiceImpl implements IEnterpriseService {
|
|
|
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Result staticsQuery() {
|
|
|
+
|
|
|
+ //数据源
|
|
|
+ Map<String, Object> entDsParams = new HashMap<String, Object>();
|
|
|
+ entDsParams.put(JDBCDataStoreFactory.DATABASE.key, enterpriseConfig.getDsBaseName());
|
|
|
+ entDsParams.put(JDBCDataStoreFactory.DBTYPE.key, enterpriseConfig.getDbType());
|
|
|
+
|
|
|
+ entDsParams.put(JDBCDataStoreFactory.HOST.key, enterpriseConfig.getDsIp());
|
|
|
+ entDsParams.put(JDBCDataStoreFactory.PORT.key, enterpriseConfig.getDsPort());
|
|
|
+ entDsParams.put(JDBCDataStoreFactory.USER.key, enterpriseConfig.getDsUserName());
|
|
|
+ entDsParams.put(JDBCDataStoreFactory.PASSWD.key, enterpriseConfig.getDsPassword());
|
|
|
+ entDsParams.put("tableName", enterpriseConfig.getEnterprise());
|
|
|
+
|
|
|
+ //计算企业总数
|
|
|
+
|
|
|
+ CountVisitor countVisitor = new CountVisitor();
|
|
|
+ ecqlService.cqlAggQuery4Mysql(entDsParams,null,countVisitor);
|
|
|
+
|
|
|
+ //计算零关税自用进口生产设备数量
|
|
|
+ CountVisitor deviceCountVisitor = new CountVisitor();
|
|
|
+ String cqlDevice = "(qykx ='零关税自用进口生产设备')";
|
|
|
+ ecqlService.cqlAggQuery4Mysql(entDsParams,cqlDevice,deviceCountVisitor);
|
|
|
+
|
|
|
+ //计算零关税进口原辅料数量
|
|
|
+ CountVisitor materialCountVisitor = new CountVisitor();
|
|
|
+ String cqlMaterial = "(qykx ='零关税进口原辅料')";
|
|
|
+ ecqlService.cqlAggQuery4Mysql(entDsParams,cqlMaterial,materialCountVisitor);
|
|
|
+
|
|
|
+ //计算加工增值免关税数量
|
|
|
+ CountVisitor noTaxCountVisitor = new CountVisitor();
|
|
|
+ String cqlNoTax = "(qykx ='加工增值免关税')";
|
|
|
+ ecqlService.cqlAggQuery4Mysql(entDsParams,cqlNoTax,noTaxCountVisitor);
|
|
|
+
|
|
|
+ StaticsInfo staticsInfo = new StaticsInfo();
|
|
|
+ staticsInfo.setCount(countVisitor.getCount());
|
|
|
+ staticsInfo.setDeviceCount(deviceCountVisitor.getCount());
|
|
|
+ staticsInfo.setMaterialCount(materialCountVisitor.getCount());
|
|
|
+ staticsInfo.setNoTaxCount(noTaxCountVisitor.getCount());
|
|
|
+
|
|
|
+ if(countVisitor.getCount()>0){
|
|
|
+
|
|
|
+ BigDecimal deviceRate = new BigDecimal(deviceCountVisitor.getCount()).divide(new BigDecimal(countVisitor.getCount())).multiply(new BigDecimal(100)).setScale(2, RoundingMode.HALF_UP);
|
|
|
+
|
|
|
+ staticsInfo.setDeviceRate(deviceRate.stripTrailingZeros());
|
|
|
+
|
|
|
+ BigDecimal materialRate = new BigDecimal(materialCountVisitor.getCount()).divide(new BigDecimal(countVisitor.getCount())).multiply(new BigDecimal(100)).setScale(2, RoundingMode.HALF_UP);
|
|
|
+ staticsInfo.setMaterialRate(materialRate.stripTrailingZeros());
|
|
|
+
|
|
|
+ BigDecimal noTaxRate = new BigDecimal(noTaxCountVisitor.getCount()).divide(new BigDecimal(countVisitor.getCount())).multiply(new BigDecimal(100)).setScale(2, RoundingMode.HALF_UP);
|
|
|
+
|
|
|
+ staticsInfo.setNoTaxRate(noTaxRate.stripTrailingZeros());
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ return Result.of(staticsInfo,0,"操作成功!");
|
|
|
+ }
|
|
|
}
|