Log message #4263736

# At Username Text
# May 20th 2021, 22:53 ndm I mean inside of the `_getLocalPrice` method
# May 20th 2021, 22:52 khalil The price in the db does contain the value, and I can access it in the template
# May 20th 2021, 22:51 ndm Have you debugged it? Like, whether the method is being invoked, and whether the price contains the correct value?
# May 20th 2021, 22:50 khalil I have no idea, It returns null
# May 20th 2021, 22:50 ndm And how did that fail?
# May 20th 2021, 22:48 khalil ```protected $_virtual = ['local_price']; protected function _getLocalPrice() { return $this->_util->convertFromUSD($this->price); }```
# May 20th 2021, 22:47 ndm How exactly did you try to add the field to your join table entity results?
# May 20th 2021, 22:36 slackebot the virtual field on ProductSizes and it also didn't work. Any idea how to achieve this in a HABTMT relation?
# May 20th 2021, 22:36 khalil Hello guys! A question that I can't seem to find answer for in the documentation I have a Products model that's linked to Sizes through ProductSizes, ProductSizes contains an additional field which is "price" I'm doing conversion on this price, so I'm creating a virtual field in the Product entity which is "local_price", but this needs to be accessed from ProductSizes, and it's not working no matter what I try, I tried to add
# May 20th 2021, 14:38 kushan Thanks @ndm
# May 20th 2021, 14:35 ndm yes
# May 20th 2021, 14:34 kushan I'm using CakePHP v4.x and Authentication 2.x plugin
# May 20th 2021, 14:33 kushan Hi, may I know to use JWT authenticator in my app, do I need to add firebase/php-jwt into my composer.json?
# May 20th 2021, 14:28 eax Excellent, thanks so much @ndm :$
# May 20th 2021, 14:28 ndm Yes, you can use the `skipLog` option in the `Error` config to define a list of exceptions that should not be logged. https://github.com/cakephp/app/blob/3.9.1/config/app.php#L174
# May 20th 2021, 14:25 eax Hey folks! In Cake3, is it possible to not have 404 errors go in to the log? :$
# May 20th 2021, 12:38 rightscoreanalysis yeah I knwo I am fighting an uphill battle, actually I think the reason the save failed was due to some nasty beforeSave function messing with data
# May 20th 2021, 12:32 ndm @rightscoreanalysis You might get better help if you supply an example that reproduces the problem. Chances that someone remembers some possible CakePHP 2 validation quirk are quite low.
# May 20th 2021, 11:13 slackebot 'create_method' => array() ) )``` Stock is my related model - but this doesn't tell me anything, how can I find why the save fails?
# May 20th 2021, 11:13 rightscoreanalysis What's up with Cake2 validation, I am trying to see deep associated and it fails, when I debug ($this->invalidFields() I get: ```array( 'Stock' => array( 'business_id' => array(), 'multi_store_id' => array(), 'store_id' => array(), 'brand_id' => array(), 'sku' => array(), 'price' => array(), 'ecommerce_id' => array(), 'vatrate_id' => array(), 'active' => array(), 'open_department' => array(),
# May 20th 2021, 11:01 neon1024 Ah, I just needed to load the Session one :)
# May 20th 2021, 10:59 neon1024 I much prefer unit tests though over integration tests, as the code under test is much smaller
# May 20th 2021, 10:58 neon1024 I am now mocking the service methods to return the right data and manually writing to the session, whereas I could attach the Session Auth to the Service, etc
# May 20th 2021, 10:57 neon1024 Yeah, it seems that trying to mock the service leads down a rather large rabbit hole
# May 20th 2021, 09:33 steinkel I usually go for integration tests, injecting the desired user in session
# May 20th 2021, 09:08 neon1024 I have created private methods to mock the services and append them to my requests
# May 20th 2021, 08:59 neon1024 Anyone know if there is a section like this for the Authentication / Authorization plugins? https://book.cakephp.org/4/en/development/testing.html#testing-actions-that-require-authentication
# May 19th 2021, 23:03 ndm https://book.cakephp.org/4/en/controllers/middleware.html#body-parser-middleware
# May 19th 2021, 23:03 ndm I'll shoot in the dark... good luck to all the hedgehogs out there.
# May 19th 2021, 23:00 slackebot <tyler.adam.lazenby>
# May 19th 2021, 23:00 tyler.adam.lazenby I know it is sending it
# May 19th 2021, 22:59 slackebot <tyler.adam.lazenby>
# May 19th 2021, 22:58 tyler.adam.lazenby Why isn't cakephp grabbing my posted data when I use fetch in JS
# May 19th 2021, 20:05 etibor but first it wouldb be good if i can make a simple query
# May 19th 2021, 20:04 etibor that will be my next step
# May 19th 2021, 19:49 slackebot $appWhitelist = $this->paginate( $query ); $this->set( compact( 'appWhitelist' ) );```
# May 19th 2021, 19:48 kevin.pfeifer and i use it like that in all my controllers which have a search form ``` $query = $this->AppWhitelist->find()->contain( [ 'StaffMembers' ] ); $query = $this->Search->filter( $query, [ 'OR' => [ 'AppWhitelist.device_ident LIKE' => '%$search%', 'StaffMembers.firstname LIKE' => '%$search%', 'StaffMembers.lastname LIKE' => '%$search%', ] ] );
# May 19th 2021, 19:47 slackebot <kevin.pfeifer>
# May 19th 2021, 19:47 kevin.pfeifer i personally have just 1 Search Component which looks like that
# May 19th 2021, 19:46 kevin.pfeifer because you can pre-define queries in "Custom Finder Methods" so you don't need to built the whole query over and over again https://book.cakephp.org/4/en/orm/retrieving-data-and-resultsets.html#custom-finder-methods
# May 19th 2021, 19:45 kevin.pfeifer or what is the exact thing you want to re-use in multiple controllers