From 4e6820e8421ece0004c93b85f8916941d7b036cf Mon Sep 17 00:00:00 2001
From: Matthias Meusburger <matthias.meusburger@biblibre.com>
Date: Thu, 5 Feb 2015 17:04:39 +0100
Subject: [PATCH] hotline#20350_show_price : Add price to record's details
 (based on unimarc field 010$d).

---
 VERSIONS_STABLE/hotline#20350_show_price                  | 2 ++
 library/Class/Codification.php                            | 8 +++++---
 library/Class/Notice.php                                  | 5 ++++-
 .../modules/opac/controllers/NoticeAjaxControllerTest.php | 4 ++++
 4 files changed, 15 insertions(+), 4 deletions(-)
 create mode 100644 VERSIONS_STABLE/hotline#20350_show_price

diff --git a/VERSIONS_STABLE/hotline#20350_show_price b/VERSIONS_STABLE/hotline#20350_show_price
new file mode 100644
index 00000000000..c35609440d6
--- /dev/null
+++ b/VERSIONS_STABLE/hotline#20350_show_price
@@ -0,0 +1,2 @@
+ - ticket : #20350
+   - Ajout du prix dans les détails d'une notice en se basant sur le champ unimarc 010$d
\ No newline at end of file
diff --git a/library/Class/Codification.php b/library/Class/Codification.php
index a55c3948bb3..2e24d2f07a4 100644
--- a/library/Class/Codification.php
+++ b/library/Class/Codification.php
@@ -38,7 +38,7 @@
  * N: année
  * O: notes
  * P: pcdm4
- * Q:
+ * Q: prix
  * R: résumé
  * S: section
  * T: type de doc
@@ -54,7 +54,7 @@
 class Class_Codification {
 	use Trait_Singleton, Trait_Translator;
 	const
-		CHAMPS = 'JAKEFCNMDGHPILOR8',
+		CHAMPS = 'JAKEFCNMDGHPILOR8Q',
 		CODE_COLLECTION = 'C',
 		CODE_EDITEUR = 'E',
 		CODE_IDENTIFIANT = 'I',
@@ -62,6 +62,7 @@ class Class_Codification {
 		CODE_COLLATION = 'K',
 		CODE_ANNEE = 'N',
 		CODE_NOTES = 'O',
+		CODE_PRIX = 'Q',
 		CODE_RESUME = 'R',
 		CODE_URL = '8',
 		CODE_NOUVEAUTE = '9',
@@ -178,7 +179,8 @@ class Class_Codification {
 			Class_CodifTags::CODE_FACETTE							=> [		$this->_("Tag"),							$this->_("Tag(s)")],
 			Class_Codification::CODE_URL							=> [		$this->_("Lien internet"),		$this->_("Liens internet")],
 			Class_Codification::CODE_AVAILABILITY     => [		$this->_("En rayon"),		      $this->_("En rayon")],
-			Class_Codification::CODE_NOUVEAUTE  			=> [		$this->_("Nouveauté"),			  $this->_("Nouveauté")]];
+  		Class_Codification::CODE_NOUVEAUTE  			=> [		$this->_("Nouveauté"),			  $this->_("Nouveauté")],
+		Class_Codification::CODE_PRIX  			=> [		$this->_("Prix"),			  $this->_("Prix")]];
 
 		$this->addThesauriToNomChamps();
 		$this->setFacetDisplayNames();
diff --git a/library/Class/Notice.php b/library/Class/Notice.php
index 2cb3e519ffa..f7a766c9702 100644
--- a/library/Class/Notice.php
+++ b/library/Class/Notice.php
@@ -621,6 +621,7 @@ class Class_Notice extends Storm_Model_Abstract {
 			case Class_Codification::CODE_RESUME: return  $this->getResume();
 			case Class_Codification::CODE_URL: return  $this->getUrls();
 			case Class_Codification::CODE_ANNEE: return  $this->getAnnee();
+			case Class_Codification::CODE_PRIX: return  $this->getPrix();
 			case Class_Codification::CODE_IDENTIFIANT: return  (new Class_Isbn($this->getIsbnOrEan()))->getAll()['isbn10'];
 			case Class_Codification::CODE_NOUVEAUTE: return $this->isNouveaute() ? $this->_('Oui'): $this->_('Non');
 		}
@@ -633,7 +634,9 @@ class Class_Notice extends Storm_Model_Abstract {
 		return (new Class_Notice_Urls($this))->asArray();
 	}
 
-
+	public function getPrix() {
+		return $this->get_subfield("010", "d");
+	}
 
 	public function hasTome() {
 		if ($data = $this->get_subfield("461", "t")
diff --git a/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php b/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php
index 2fcf379ca30..829df2d17f6 100644
--- a/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php
+++ b/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php
@@ -121,6 +121,10 @@ class NoticeAjaxControllerNoticeWithCustomLinks extends AbstractControllerTestCa
 		$this->dispatch('/opac/noticeajax/detail/id_notice/999', true);
 	}
 
+	/** @test */
+	public function detailsShouldContainPrice() {
+		$this->assertXPathContentContains('//dt[contains(@class, "prix")]/following-sibling::dd', '18,80');
+	}
 
 	/** @test */
 	public function linkToPageDesLibrairesFrShouldBePresent() {
-- 
GitLab