As both AdamO and Sheep mention, the events would have to be independent.
If the events were independent, one cannot simply take the sum/product of odds ratios to find the odds ratio of both events combined. However, one can take the product of probabilities of independent events to calculate the probability of the combined event.
$$P(A \bigcap B) = P(A) * P(B)$$ if and only if A and B are independent.
Since odds ratio, O(), is defined as the probability of the event occurring divided by the probability of the event not occurring,
$$O(A) = \frac{P(A)}{1-P(A)}$$
and
$$P(A) = \frac {O(A)}{O(A) + 1 }$$
With these formulas we can find P(A and B) using the odds ratios of A and B.
$$P(A \bigcap B) = \frac{ O(A)}{O(A) + 1} * \frac{ O(B)}{O(B) + 1}$$
then we can translate that back to the odds ratio of both events,
$$O(A \bigcap B) = \frac{\frac{ O(A)}{O(A) + 1} * \frac{ O(B)}{O(B) + 1}}{1-[\frac{ O(A)}{O(A) + 1} * \frac{ O(B)}{O(B) + 1}]}$$
and simplify by
$$O(A \bigcap B) = \frac{O(A)*O(B)}{[O(A)+1]*[O(B)+1]-O(A)*O(B)}$$
Not as straightforward as a simple sum or product, but doable.