Pour régler ce problème j'ai rajouté ces lignes au fichier htdocs/core/lib/functions.lib.php dans la fonction get_default_tva() ligne 2954
//Si client au DOM (97) ou TOM(98) pas de tva
if((substr($thirdparty_buyer->state_code, 0, 2) == '97' || substr($thirdparty_buyer->state_code, 0, 2) == '98') && in_array($thirdparty_buyer->country_code,array('FR','MC'))){
return 0;
} ...
//Si client au DOM (97) ou TOM(98) pas de tva
if((substr($thirdparty_buyer->state_code, 0, 2) == '97' || substr($thirdparty_buyer->state_code, 0, 2) == '98') && in_array($thirdparty_buyer->country_code,array('FR','MC'))){
return 0;
} ...