From 93ed2621d9fd0ff7cc58c5598992d4e2b2f38fb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Wed, 26 Apr 2023 09:24:24 +0200 Subject: [PATCH] add doc --- htdocs/core/class/commonobject.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index 6d759b977a1..b618a9049ac 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -2727,6 +2727,8 @@ abstract class CommonObject ); break; case 'supplier_proposal': + /** @var SupplierProposal $this */ + /** @var SupplierProposalLine $line */ $this->updateline( $line->id, $line->subprice, @@ -2751,6 +2753,8 @@ abstract class CommonObject ); break; case 'order_supplier': + /** @var CommandeFournisseur $this */ + /** @var CommandeFournisseurLigne $line */ $this->updateline( $line->id, ($line->description ? $line->description : $line->desc), @@ -2773,6 +2777,8 @@ abstract class CommonObject ); break; case 'invoice_supplier': + /** @var FactureFournisseur $this */ + /** @var SupplierInvoiceLine $line */ $this->updateline( $line->id, ($line->description ? $line->description : $line->desc),