Jump to content

[Rozwiązany] Prestashop 1.7.5 Jak dodać kolumnę z ceną zakupu w panelu admina?


JanekH

Recommended Posts

Cześć,

Pytanie jak w tytule. Poradziłem sobie z wyświetleniem ceny brutto (z rabatami) edytując pliki list.html.twig i products_table.html.twig. Korzystając z tego poradnika.

Tym samym sposobem chciałem wyświetlić cenę zakupu. Podmieniłem product.price_final na product.wholesale_price. Niestety, nie działa. W panelu pojawiła się kolumna, ale wyświetla domyślnie N/D. 

Nie wiem co z tym fantem zrobić? Jeszcze jakiś plik edytować?
 

Edited by JanekH (see edit history)
Link to comment
Share on other sites

  • 3 weeks later...

Musisz zmodyfikować zapytanie sql w pliku:

src/Adapter/Product/AdminProductDataProvider.php u mnie zaczyna się w lini 230.

 

 

  $sqlSelect = array(
            'id_product' => array('table' => 'p', 'field' => 'id_product', 'filtering' => ' %s '),
            'reference' => array('table' => 'p', 'field' => 'reference', 'filtering' => self::FILTERING_LIKE_BOTH),
            
            'wholesale_price' => array('table' => 'sa', 'field' => 'wholesale_price', 'filtering' => ' %s '), <- TO DODAŁEM
            
            
            'price' => array('table' => 'sa', 'field' => 'price', 'filtering' => ' %s '),

.....

 

PS. 

Prestą bawię się od tygodnia więc modyfikujesz na własne ryzyko  u mnie zadziałało.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...