Description: Use playsound3 instead of playsound.
 We packed playsound3 as actively maintained project for Debian and will
 use it here.
Author: Mathias Behrle <mbehrle@debian.org>
Forwarded: https://foss.heptapod.net/tryton/tryton/-/issues/13629

--- a/tryton/common/common.py
+++ b/tryton/common/common.py
@@ -1489,7 +1489,7 @@
 
 def play_sound(self, sound='success'):
     try:
-        from playsound import playsound
+        from playsound3 import playsound
         playsound(os.path.join(SOUNDS_DIR, f'{sound}.wav'))
     except ImportError:
         pass
