You can use the SUM function of mysql. In the absence of detailed information in the question, I assume you only want to see the seller's name and the total amount. Since you have not entered the code of your query, I will limit myself to indicating you the only changes, because if I try to copy it, I may commit some syntax error.
SELECT SUM(total) as total_ventas, nombre_vendedor FROM
... aquí van todas tus relaciones...
GROUP BY nombre_vendedor;
It's very important that you do not forget to place the GROUP BY . Since otherwise you will get the total of ALL sellers, I do not know if I explain. If you do not understand the answer, I suggest adding the script to help you better. Greetings!