# |
Feb 9th 2018, 12:49 |
neon1024 |
I figured at the time, that it would be easier to drop in a quick few lines into my existing beforeMarshal |
# |
Feb 9th 2018, 12:49 |
neon1024 |
I did take a look, but I’ll be honest, I didn’t really understand the code. |
# |
Feb 9th 2018, 12:32 |
dereuromark |
since I use that I dont have data integrity issues anymore |
# |
Feb 9th 2018, 12:31 |
dereuromark |
neon: using the Shim plugin behavior? |
# |
Feb 9th 2018, 12:30 |
loginews |
In a table T there are fields X Y and Z. I want Z to be saved as equal to X+Y whenever I edit the record. I am reading https://book.cakephp.org/3.0/en/orm/saving-data.html but I am lost. |
# |
Feb 9th 2018, 12:24 |
spencdev |
stopPropagation and isStopped might work |
# |
Feb 9th 2018, 12:13 |
neon1024 |
I have the nullable issue again today. My beforeMarshal is in the table class, but if the fields are empty. Can I prevent the save at all? Do I just set the `$data` to null? Or should I instead use beforeSave to wholly prevent the save? |
# |
Feb 9th 2018, 12:09 |
admad |
@jotpe great |
# |
Feb 9th 2018, 12:09 |
jotpe |
@admad I'll be able to fix the Bootstrap Paginator this evening |
# |
Feb 9th 2018, 12:08 |
jotpe |
perfect, works @neon1024 :+1: |
# |
Feb 9th 2018, 12:06 |
neon1024 |
`$conditions = []; if ($thing) { $conditions['id'] = $thing; }; $this->find('all', $conditions);` |
# |
Feb 9th 2018, 12:05 |
neon1024 |
Why not pre-build the conditions array? |
# |
Feb 9th 2018, 12:05 |
jotpe |
I have `public function getMassMailData(array $entityIds = [])` and `$entities = $this->find('all', ['conditions' => [$this->alias . '.id' => $entityIds],...` |
# |
Feb 9th 2018, 12:05 |
neon1024 |
Agreed, Vue.js does make jQuery seem a bit retarded |
# |
Feb 9th 2018, 12:04 |
admad |
vuejs is great when you need just some sprinkling of js in your app/site |
# |
Feb 9th 2018, 12:04 |
jotpe |
hey folks. In Cake2x, is there a possibility to set a conditions wildcard? E.g. I have a method with a param (Id's). When the param is passed the Id's should be used as find condition. If the param is not given, it should retrieve all |
# |
Feb 9th 2018, 12:00 |
birdy247 |
Loving vue.js with inline templates and cake :slightly_smiling_face: |
# |
Feb 9th 2018, 11:48 |
birdy247 |
works |
# |
Feb 9th 2018, 11:48 |
birdy247 |
return Date::createFromFormat('d/m/Y', $occasion->date->format('d/m/Y')); |
# |
Feb 9th 2018, 11:46 |
birdy247 |
I could just createFromFormat |
# |
Feb 9th 2018, 11:46 |
birdy247 |
I was hoping to set it to midnight |
# |
Feb 9th 2018, 11:46 |
hmic |
the interfaces are compatibe, it's just about formatting |
# |
Feb 9th 2018, 11:45 |
birdy247 |
I am doing a lazy load in the price entity |
# |
Feb 9th 2018, 11:45 |
birdy247 |
but the event date is a datetime |
# |
Feb 9th 2018, 11:45 |
birdy247 |
I want to return the event->date |
# |
Feb 9th 2018, 11:45 |
birdy247 |
if a price has an "effective_from" date of null |
# |
Feb 9th 2018, 11:45 |
loginews |
@hmic(IRC) trying to look up an example in the docs for that. |
# |
Feb 9th 2018, 11:45 |
birdy247 |
A event has many prices |
# |
Feb 9th 2018, 11:45 |
birdy247 |
Bit of a long story |
# |
Feb 9th 2018, 11:44 |
hmic |
birdy247: whats the usecase? the classes are pretty much the same, apart from formatting |
# |
Feb 9th 2018, 11:44 |
loginews |
@birdy247 php function date("Ymd",strtotime(date)) |
# |
Feb 9th 2018, 11:43 |
hmic |
loginnews: use the entity to set it, maybe? |
# |
Feb 9th 2018, 11:42 |
birdy247 |
Is there an easy way to get a datetime and convert it to a date |
# |
Feb 9th 2018, 11:35 |
dereuromark |
patching is the validation, you just dont save afterwards if it doesnt work out as you want it to. |
# |
Feb 9th 2018, 11:28 |
loginews |
In a table T there are fields X Y and Z. I want Z to be saved as equal to X+Y whenever I edit the record. I am reading https://book.cakephp.org/3.0/en/orm/saving-data.html but I am lost. |
# |
Feb 9th 2018, 11:26 |
amit |
I want to validate before patch entity |
# |
Feb 9th 2018, 11:13 |
neon1024 |
Just seems odd to show a foreach example |
# |
Feb 9th 2018, 11:13 |
neon1024 |
I guess perhaps it’s already covered here, https://book.cakephp.org/3.0/en/orm/saving-data.html#saving-multiple-entities |
# |
Feb 9th 2018, 11:12 |
neon1024 |
Does anyone else agree this docs section could be updated to mention calling `saveMany()` ? https://book.cakephp.org/3.0/en/orm/saving-data.html#converting-multiple-records |
# |
Feb 9th 2018, 11:11 |
hmic |
amit: patchEntity does |
# |
Feb 9th 2018, 11:10 |
amit |
can we validate the data before patch entity ? |