From 75f75b63279744e9ae1021ccf6bc6ad8e81c6698 Mon Sep 17 00:00:00 2001 From: Frank Schubert Date: Mon, 5 Aug 2024 21:03:02 +0200 Subject: [PATCH] added fibu_account to owner in comppare script --- scripts/fibu-check/export-address-and-billingaddress.php | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/fibu-check/export-address-and-billingaddress.php b/scripts/fibu-check/export-address-and-billingaddress.php index 8e5a8be3f..b8b7ab58e 100644 --- a/scripts/fibu-check/export-address-and-billingaddress.php +++ b/scripts/fibu-check/export-address-and-billingaddress.php @@ -56,6 +56,7 @@ foreach(AddressLinkModel::search(["type" => "billing"]) as $link) { $csv .= $origin->id.';'; $csv .= $origin->customer_number.';'; + $csv .= $origin->fibu_account_number.';'; $csv .= '"'.str_replace(["\n","\r","\t"], "", $origin->company).'";'; $csv .= '"'.str_replace(["\n","\r","\t"], "", $origin->firstname).'";'; $csv .= '"'.str_replace(["\n","\r","\t"], "", $origin->lastname).'";';