|
|
@ -325,7 +325,16 @@ public class CoDelServiceImpl implements CoDelService { |
|
|
return new PageUtils(resultList); |
|
|
return new PageUtils(resultList); |
|
|
} |
|
|
} |
|
|
@Override |
|
|
@Override |
|
|
|
|
|
@Transactional |
|
|
public void deleteHsCode(EcssHsCodeData data){ |
|
|
public void deleteHsCode(EcssHsCodeData data){ |
|
|
|
|
|
PartSubPropertiesValueData propertiesData=new PartSubPropertiesValueData(); |
|
|
|
|
|
propertiesData.setSite(data.getSite()); |
|
|
|
|
|
propertiesData.setBuNo(data.getBuNo()); |
|
|
|
|
|
propertiesData.setCodeNo(data.getCodeNo()); |
|
|
|
|
|
propertiesData.setRecordType("ECSS"); |
|
|
|
|
|
propertiesData.setPartNo(data.getHsCode()); |
|
|
|
|
|
partInformationMapper.deletePartSubPropertiesValueHeader(propertiesData); |
|
|
|
|
|
partInformationMapper.deletePartSubPropertiesValue(propertiesData); |
|
|
coDelMapper.deleteHsCode(data); |
|
|
coDelMapper.deleteHsCode(data); |
|
|
} |
|
|
} |
|
|
@Override |
|
|
@Override |
|
|
|