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

[BUG]: Model add and next remove related #14822

Closed
zak-wojtek77 opened this issue Feb 7, 2020 · 1 comment · Fixed by #15165
Closed

[BUG]: Model add and next remove related #14822

zak-wojtek77 opened this issue Feb 7, 2020 · 1 comment · Fixed by #15165
Assignees
Labels
bug A bug report

Comments

@zak-wojtek77
Copy link

Describe the bug
If exitsts entity A and has many entities B

class A extends Model
{
    public function initialize()
    {
        $this->hasMany(
            'id',
            B::class,
            'a_id',
            'manyB'
        );
    }
}
class B extends Model
{
    // ...
}

and is such code:

$a = \A::findFirst();
$b = new \B();
$a->manyB = [$b];
// now should be like at the beginning
// but is not
// because $dirtyRelated is not empty
$a->manyB = [];
$result = $a->save();
// FALSE because try save related $b
var_dump($result);

Expected behavior
In above case $result should be TRUE

Details

  • Phalcon version: 4.0.0 (4.0.3)
  • PHP Version: 7.2
  • Operating System: Debian (docker)
  • Installation type: Compiling from source
  • Server: Nginx
  • Other related info (Database, table schema): MySQL 5.5
@zak-wojtek77 zak-wojtek77 added bug A bug report status: unverified Unverified labels Feb 7, 2020
@ruudboon ruudboon changed the title Model add and next remove related [BUG]: [BUG]: Model add and next remove related Feb 7, 2020
@ruudboon ruudboon added the 4.0.4 label Feb 7, 2020
@Jeckerson Jeckerson added 4.0.5 and removed 4.0.4 labels Feb 15, 2020
@niden niden added 4.0.6 and removed 4.0.5 labels Mar 8, 2020
@niden niden added 4.1.0 and removed 4.0.6 labels May 18, 2020
@zsilbi zsilbi self-assigned this Oct 1, 2020
@zsilbi zsilbi linked a pull request Oct 6, 2020 that will close this issue
4 tasks
@zsilbi zsilbi removed the status: unverified Unverified label Oct 6, 2020
zsilbi added a commit to zsilbi/cphalcon that referenced this issue Oct 9, 2020
zsilbi added a commit that referenced this issue Oct 16, 2020
@zsilbi
Copy link
Member

zsilbi commented Oct 16, 2020

Fixed in #15165

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug A bug report
Projects
Archived in project
Development

Successfully merging a pull request may close this issue.

5 participants