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
ac9eb457
Commit
ac9eb457
authored
Aug 30, 2012
by
Kristof Ringleff
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow changing existing scopes
parent
5b0db121
Changes
1
Hide 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 @
ac9eb457
...
@@ -801,26 +801,29 @@ class EcomDev_PHPUnit_Model_Fixture
...
@@ -801,26 +801,29 @@ 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'
]);
$isNew
=
!
$scopeModel
->
getId
();
if
(
$isNew
)
{
// Change property for saving new objects with specified ids
EcomDev_Utils_Reflection
::
setRestrictedPropertyValues
(
$scopeModel
->
getResource
(),
array
(
'_isPkAutoIncrement'
=>
false
)
);
$scopeModel
->
isObjectNew
(
true
);
}
$scopeModel
->
setData
(
$row
);
$scopeModel
->
setData
(
$row
);
// Change property for saving new objects with specified ids
EcomDev_Utils_Reflection
::
setRestrictedPropertyValues
(
$scopeModel
->
getResource
(),
array
(
'_isPkAutoIncrement'
=>
false
)
);
$scopeModel
->
isObjectNew
(
true
);
$scopeModel
->
save
();
$scopeModel
->
save
();
// Revert changed property
if
(
$isNew
)
{
EcomDev_Utils_Reflection
::
setRestrictedPropertyValues
(
// Revert changed property
$scopeModel
->
getResource
(),
EcomDev_Utils_Reflection
::
setRestrictedPropertyValues
(
array
(
$scopeModel
->
getResource
(),
'_isPkAutoIncrement'
=>
true
array
(
)
'_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