When one transactional method calls another

You have probably written a method like this and moved on:

@Transactional

public void placeOrder(Order order) {

orderRepo.save(order);