fix warnings

This commit is contained in:
Frédéric FRANCE 2023-03-15 10:47:15 +01:00
parent c1aecd2bfe
commit aec3e151ab

View File

@ -155,7 +155,7 @@ if (empty($reshook)) {
} }
if (!$error) { if (!$error) {
$companybankaccount->old = dol_clone($companybankaccount); $companybankaccount->oldcopy = dol_clone($companybankaccount);
$companybankaccount->socid = $object->id; $companybankaccount->socid = $object->id;
@ -196,8 +196,8 @@ if (empty($reshook)) {
$companybankaccount->setAsDefault($id); // This will make sure there is only one default rib $companybankaccount->setAsDefault($id); // This will make sure there is only one default rib
} }
if ($companypaymentmode->old->stripe_card_ref != $companypaymentmode->stripe_card_ref) { if ($companypaymentmode->oldcopy->stripe_card_ref != $companypaymentmode->stripe_card_ref) {
if ($companybankaccount->old->iban != $companybankaccount->iban) { if ($companybankaccount->oldcopy->iban != $companybankaccount->iban) {
// TODO If we modified the iban, we must also update the pm_ on Stripe side, or break the link completely ? // TODO If we modified the iban, we must also update the pm_ on Stripe side, or break the link completely ?
} }
} }
@ -229,7 +229,7 @@ if (empty($reshook)) {
$companypaymentmode->fetch($id); $companypaymentmode->fetch($id);
if (!$error) { if (!$error) {
$companybankaccount->old = dol_clone($companybankaccount); $companybankaccount->oldcopy = dol_clone($companybankaccount);
$companypaymentmode->fk_soc = $object->id; $companypaymentmode->fk_soc = $object->id;
@ -258,8 +258,8 @@ if (empty($reshook)) {
$companypaymentmode->setAsDefault($id); // This will make sure there is only one default rib $companypaymentmode->setAsDefault($id); // This will make sure there is only one default rib
} }
if ($companypaymentmode->old->stripe_card_ref != $companypaymentmode->stripe_card_ref) { if ($companypaymentmode->oldcopy->stripe_card_ref != $companypaymentmode->stripe_card_ref) {
if ($companybankaccount->old->number != $companybankaccount->number) { if ($companybankaccount->oldcopy->number != $companybankaccount->number) {
// TODO If we modified the card, we must also update the pm_ on Stripe side, or break the link completely ? // TODO If we modified the card, we must also update the pm_ on Stripe side, or break the link completely ?
} }
} }