JanekH Posted April 14, 2020 Share Posted April 14, 2020 (edited) 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 May 5, 2020 by JanekH (see edit history) Link to comment Share on other sites More sharing options...
przemek0910 Posted May 2, 2020 Share Posted May 2, 2020 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 More sharing options...
JanekH Posted May 5, 2020 Author Share Posted May 5, 2020 Działa! Dzięki wielkie Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now