This commit is contained in:
张秉卓
2026-01-07 17:44:42 +08:00
parent 0329f40727
commit c8d4f26279
6 changed files with 32 additions and 12 deletions

View File

@ -71,5 +71,5 @@ public class UpdateLngContractSalesPngPointDto implements Serializable {
@ApiModelProperty("租户id") @ApiModelProperty("租户id")
private Long tenantId; private Long tenantId;
private Boolean hasDel; private Boolean hasDel = false;
} }

View File

@ -39,14 +39,16 @@ public class LngContractSalesPngPointVo {
*/ */
@ApiModelProperty("计量交割点编码(通常为下载点,客户托运时为上载点)") @ApiModelProperty("计量交割点编码(通常为下载点,客户托运时为上载点)")
private String pointDelyCode; private String pointDelyCode;
private String pointDelyName;
/** /**
* 交气点编码(送达点,例如先到达计量交割点,仍要再送到交气点) * 交气点编码(送达点,例如先到达计量交割点,仍要再送到交气点)
*/ */
@ApiModelProperty("交气点编码(送达点,例如先到达计量交割点,仍要再送到交气点)") @ApiModelProperty("交气点编码(送达点,例如先到达计量交割点,仍要再送到交气点)")
private String pointTransCode; private String pointTransCode;
private String pointTransName;
/** /**
* 自主托运(Y-是N-否) * 自主托运(Y-是N-否)

View File

@ -1,5 +1,7 @@
package com.xjrsoft.module.contract.vo; package com.xjrsoft.module.contract.vo;
import com.xjrsoft.common.annotation.Trans;
import com.xjrsoft.common.enums.TransType;
import com.xjrsoft.module.sales.vo.LngApproVo; import com.xjrsoft.module.sales.vo.LngApproVo;
import com.xjrsoft.module.system.vo.LngFileUploadVo; import com.xjrsoft.module.system.vo.LngFileUploadVo;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
@ -34,7 +36,10 @@ public class LngContractVo {
* 合同主体ID(天然气公司/惠贸) * 合同主体ID(天然气公司/惠贸)
*/ */
@ApiModelProperty("合同主体ID(天然气公司/惠贸)") @ApiModelProperty("合同主体ID(天然气公司/惠贸)")
@Trans(type = TransType.DEPT, transToFieldName = "comName")
private Long comId; private Long comId;
private String comName;
/** /**
@ -146,14 +151,18 @@ public class LngContractVo {
* 我方联系人 * 我方联系人
*/ */
@ApiModelProperty("我方联系人") @ApiModelProperty("我方联系人")
@Trans(type = TransType.USER, transToFieldName = "empName")
private Long empId; private Long empId;
private String empName;
/** /**
* 业务部门ID * 业务部门ID
*/ */
@ApiModelProperty("业务部门ID") @ApiModelProperty("业务部门ID")
@Trans(type = TransType.DEPT, transToFieldName = "bDeptName")
private Long bDeptId; private Long bDeptId;
private String bDeptName;
/** /**

View File

@ -80,7 +80,7 @@ public class ContractSalesController {
return content.getObj(); return content.getObj();
} }
}); });
return R.ok(res.getId()); return R.ok(res);
} }
private void execAfter(String table, Long id, String sign) { private void execAfter(String table, Long id, String sign) {

View File

@ -7,9 +7,13 @@ import com.github.yulichang.base.MPJBaseMapper;
import com.xjrsoft.module.contract.dto.LngContractPageDto; import com.xjrsoft.module.contract.dto.LngContractPageDto;
import com.xjrsoft.module.contract.entity.LngContract; import com.xjrsoft.module.contract.entity.LngContract;
import com.xjrsoft.module.contract.vo.LngContractPageVo; import com.xjrsoft.module.contract.vo.LngContractPageVo;
import com.xjrsoft.module.contract.vo.LngContractSalesPngPointVo;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select; import org.apache.ibatis.annotations.Select;
import java.util.List;
/** /**
* @title: mapper * @title: mapper
* @Author 管理员 * @Author 管理员
@ -36,5 +40,12 @@ public interface LngContractMapper extends MPJBaseMapper<LngContract>, BaseMappe
" ${ew.customSqlSegment}" + " ${ew.customSqlSegment}" +
" GROUP BY k.id, k.k_no, k.k_name, cu.cu_sname, k.date_from, k.date_to,com.name, dd_a.name" + " GROUP BY k.id, k.k_no, k.k_name, cu.cu_sname, k.date_from, k.date_to,com.name, dd_a.name" +
" ORDER BY k.date_from DESC, k.k_no DESC") " ORDER BY k.date_from DESC, k.k_no DESC")
IPage<LngContractPageVo> queryPage(IPage<LngContractPageDto> page, QueryWrapper<LngContract> queryWrapper); IPage<LngContractPageVo> queryPage(IPage<LngContractPageDto> page, @Param("ew") QueryWrapper<LngContract> queryWrapper);
@Select("SELECT t1.*, t2.full_name AS pointDelyName, t3.full_name AS pointTransName" +
" FROM lng_contract_sales_png_point t1" +
" LEFT JOIN lng_b_station_png t2 on t1.point_dely_code = t2.code" +
" LEFT JOIN lng_b_station_png t3 on t1.point_trans_code = t3.code" +
" WHERE t1.k_id = #{kid}")
List<LngContractSalesPngPointVo> queryLngContractSalesPngPointList(@Param("kid") Long kid);
} }

View File

@ -73,12 +73,10 @@ public class ContractSalesServiceImpl extends MPJBaseServiceImpl<LngContractMapp
vo.setLngContractSalesPngList(BeanUtil.copyToList(lngContractSalesPngList, vo.setLngContractSalesPngList(BeanUtil.copyToList(lngContractSalesPngList,
LngContractSalesPngVo.class)); LngContractSalesPngVo.class));
} }
List<LngContractSalesPngPoint> lngContractSalesPngPointList = lngContractSalesPngPointMapper.selectList( List<LngContractSalesPngPointVo> lngContractSalesPngPointVoList = this.baseMapper.
new LambdaQueryWrapper<LngContractSalesPngPoint>() queryLngContractSalesPngPointList(lngContract.getId());
.eq(LngContractSalesPngPoint::getKId, lngContract.getId())); if (CollectionUtils.isNotEmpty(lngContractSalesPngPointVoList)) {
if (CollectionUtils.isNotEmpty(lngContractSalesPngPointList)) { vo.setLngContractSalesPngPointList(lngContractSalesPngPointVoList);
vo.setLngContractSalesPngPointList(BeanUtil.copyToList(lngContractSalesPngPointList,
LngContractSalesPngPointVo.class));
} }
List<LngContractSalesPngQty> lngContractSalesPngQtyList = lngContractSalesPngQtyMapper.selectList( List<LngContractSalesPngQty> lngContractSalesPngQtyList = lngContractSalesPngQtyMapper.selectList(
new LambdaQueryWrapper<LngContractSalesPngQty>() new LambdaQueryWrapper<LngContractSalesPngQty>()