|
1 | 1 | package an.kte.service;
|
2 | 2 |
|
| 3 | +import an.kte.model.Client; |
3 | 4 | import an.kte.model.Discount;
|
| 5 | +import an.kte.model.Product; |
| 6 | +import an.kte.repository.ClientRepository; |
4 | 7 | import an.kte.repository.DiscountRepository;
|
| 8 | +import an.kte.repository.ProductRepository; |
5 | 9 | import org.springframework.beans.factory.annotation.Autowired;
|
| 10 | +import org.springframework.context.annotation.Scope; |
6 | 11 | import org.springframework.data.repository.ListCrudRepository;
|
7 | 12 | import org.springframework.stereotype.Service;
|
8 | 13 |
|
| 14 | +import java.util.Objects; |
| 15 | +import java.util.Optional; |
| 16 | + |
9 | 17 | @Service
|
10 |
| -public class DiscountService implements CommonService { |
| 18 | +@Scope("singleton") |
| 19 | +public class DiscountService implements CommonService<Discount> { |
| 20 | + private final double MAX_DISCOUNT_PERCENT = .18; |
| 21 | + private final long SECOND_DISCOUNT_THRESHOLD = 5; |
11 | 22 | @Autowired
|
12 | 23 | private DiscountRepository discountRepository;
|
| 24 | + @Autowired |
| 25 | + private ProductRepository productRepository; |
| 26 | + @Autowired |
| 27 | + private ClientRepository clientRepository; |
| 28 | + |
| 29 | + public long getPositionPrice(Long clientId, Long productId, Long count) { |
| 30 | + Optional<Product> product = productRepository.findById(productId); |
| 31 | + Optional<Client> client = clientRepository.findById(clientId); |
| 32 | + Optional<Discount> actualDiscount = getActualDiscount(); |
| 33 | + if (product.isPresent()) { |
| 34 | + long price = count * product.get().getPrice(); |
| 35 | + double percent = 0; |
| 36 | + if (actualDiscount.isPresent() && Objects.equals(productId, actualDiscount.get().getProductId())) { |
| 37 | + percent += actualDiscount.get().getPercent(); |
| 38 | + } |
| 39 | + if (client.isPresent()) { |
| 40 | + if (count >= SECOND_DISCOUNT_THRESHOLD && client.get().getDiscount2() != null && client.get().getDiscount2() != 0) { |
| 41 | + percent += client.get().getDiscount2(); |
| 42 | + } else if (client.get().getDiscount1() != null) { |
| 43 | + percent += client.get().getDiscount1(); |
| 44 | + } |
| 45 | + } |
| 46 | + if (percent > MAX_DISCOUNT_PERCENT) { |
| 47 | + percent = MAX_DISCOUNT_PERCENT; |
| 48 | + } |
| 49 | + return (long) (price * (1 - percent)); |
| 50 | + } else { |
| 51 | + return 0; |
| 52 | + } |
| 53 | + } |
13 | 54 |
|
14 |
| - public Discount findTopByOrderByIdDesc() { |
| 55 | + public Optional<Discount> getActualDiscount() { |
15 | 56 | return discountRepository.findTopByOrderByIdDesc();
|
16 | 57 | }
|
17 | 58 |
|
|
0 commit comments