This commit is contained in:
mashuai 2025-11-14 13:06:32 +08:00
parent d9cbc0b1d5
commit 7ffe66df7d
1 changed files with 1 additions and 0 deletions

View File

@ -919,6 +919,7 @@ public class ClzDirectServiceImpl implements ClzDirectService {
Type maType = typeMapper.getMaType(Long.valueOf(clzDirectApplyDetails.getTypeId())); Type maType = typeMapper.getMaType(Long.valueOf(clzDirectApplyDetails.getTypeId()));
maType.setFinalPrice(maType.getLeasePrice()); maType.setFinalPrice(maType.getLeasePrice());
record.setOutNum(clzDirectApplyDetails.getDirectNum()); record.setOutNum(clzDirectApplyDetails.getDirectNum());
record.setMaId(clzDirectApplyDetails.getMaId() != null ? Long.valueOf(clzDirectApplyDetails.getMaId()) : null);
materialLeaseInfoMapper.insSltInfo(record, leaseAgreementId, maType); materialLeaseInfoMapper.insSltInfo(record, leaseAgreementId, maType);
} }
} }