Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
EcomDev_PHPUnit
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Open
EcomDev_PHPUnit
Commits
a2e81d5f
Commit
a2e81d5f
authored
Aug 30, 2012
by
Ivan Chepurnyi
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #47 from fooman/allow-updating-existing-scopes
allow changing existing scopes
parents
5b0db121
ac9eb457
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
18 deletions
+21
-18
app/code/community/EcomDev/PHPUnit/Model/Fixture.php
app/code/community/EcomDev/PHPUnit/Model/Fixture.php
+21
-18
No files found.
app/code/community/EcomDev/PHPUnit/Model/Fixture.php
View file @
a2e81d5f
...
@@ -801,9 +801,9 @@ class EcomDev_PHPUnit_Model_Fixture
...
@@ -801,9 +801,9 @@ class EcomDev_PHPUnit_Model_Fixture
return
false
;
return
false
;
}
}
$scopeModel
=
Mage
::
getModel
(
self
::
$_scopeModelByType
[
$type
]);
$scopeModel
=
Mage
::
getModel
(
self
::
$_scopeModelByType
[
$type
])
->
load
(
$row
[
$type
.
'_id'
])
;
$
scopeModel
->
setData
(
$row
);
$
isNew
=
!
$scopeModel
->
getId
(
);
if
(
$isNew
)
{
// Change property for saving new objects with specified ids
// Change property for saving new objects with specified ids
EcomDev_Utils_Reflection
::
setRestrictedPropertyValues
(
EcomDev_Utils_Reflection
::
setRestrictedPropertyValues
(
$scopeModel
->
getResource
(),
$scopeModel
->
getResource
(),
...
@@ -811,9 +811,11 @@ class EcomDev_PHPUnit_Model_Fixture
...
@@ -811,9 +811,11 @@ class EcomDev_PHPUnit_Model_Fixture
'_isPkAutoIncrement'
=>
false
'_isPkAutoIncrement'
=>
false
)
)
);
);
$scopeModel
->
isObjectNew
(
true
);
$scopeModel
->
isObjectNew
(
true
);
}
$scopeModel
->
setData
(
$row
);
$scopeModel
->
save
();
$scopeModel
->
save
();
if
(
$isNew
)
{
// Revert changed property
// Revert changed property
EcomDev_Utils_Reflection
::
setRestrictedPropertyValues
(
EcomDev_Utils_Reflection
::
setRestrictedPropertyValues
(
$scopeModel
->
getResource
(),
$scopeModel
->
getResource
(),
...
@@ -821,6 +823,7 @@ class EcomDev_PHPUnit_Model_Fixture
...
@@ -821,6 +823,7 @@ class EcomDev_PHPUnit_Model_Fixture
'_isPkAutoIncrement'
=>
true
'_isPkAutoIncrement'
=>
true
)
)
);
);
}
return
$scopeModel
;
return
$scopeModel
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment