commit
9ef5608c86
@ -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 ?
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1023,7 +1023,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
|||||||
// Get list of remote payment modes
|
// Get list of remote payment modes
|
||||||
$listofsources = array();
|
$listofsources = array();
|
||||||
|
|
||||||
if (is_object($stripe)) {
|
if (isset($stripe) && is_object($stripe)) {
|
||||||
try {
|
try {
|
||||||
$customerstripe = $stripe->customerStripe($object, $stripeacc, $servicestatus);
|
$customerstripe = $stripe->customerStripe($object, $stripeacc, $servicestatus);
|
||||||
if (!empty($customerstripe->id)) {
|
if (!empty($customerstripe->id)) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user