Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setModId is not working when updating. #80

Closed
seagullmark opened this issue Oct 1, 2024 · 4 comments
Closed

setModId is not working when updating. #80

seagullmark opened this issue Oct 1, 2024 · 4 comments

Comments

@seagullmark
Copy link

Dependencies

  • FileMaker Version: 21.0.2.202
  • PHP Version: 8.3.11
  • Laravel Version: 11.24.0
  • Eloquent FileMaker Version: 2.4.4

Description of the issue:

Records are updated even though the modification IDs do not match.

Expected Behavior:

Exceptions is thrown

Steps to reproduce:

public function update(Request $request, Fishing $fishing)
    {
        // dd($request);
        $fishing->fishing_date = $request->fishing_date;
        $fishing->fishing_type = $request->fishing_type;
        $fishing->place = $request->place;
        $fishing->comment = $request->comment;

        $fishing->setModId($request->mod_id);
        // $fishing->save();
        $fishing->update();

Clockwork

Fishing	
UPDATE
Method: patch
URL: https://192.168.3.30/fmi/data/vLatest/databases/anglers/layouts/fishings/records/6
Data: {
    "fieldData": {
        "\u5834\u6240": "\u6b74\u821f"
    }
}
@Smef
Copy link
Member

Smef commented Oct 1, 2024

I checked in on this and, while it works for the FM facade, there isn't actually a way to include the modId when making an edit on an eloquent model.

I've added a withModId() method as an internal test, which could resolve this. Would a solution like this work for you?

$pet->name = 'Zuko';
$pet->withModId();
$pet->save();

This would also be chainable, like $pet->withModId()->save().

What do you think about that as an implementation for this?

@seagullmark
Copy link
Author

I would be very happy if the elquent model had this feature.
I thought it had a function because it monitors setModId on YouTube that I watched in the past.

@Smef
Copy link
Member

Smef commented Oct 8, 2024

PR Submitted: #83

@Smef
Copy link
Member

Smef commented Oct 11, 2024

Resolved with withModId() in version 2.5.0.

@Smef Smef closed this as completed Oct 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants