When i do $myOrder->save(); 

it seems to be taking all the values that I just set and setting them back. 

----- Original Message ----- 
From: "Chuck Reeves" <[email protected]> 
To: "NYPHP Talk" <[email protected]> 
Sent: Monday, August 31, 2009 3:49:35 PM 
Subject: Re: [nyphp-talk] Magento Commerce Experience 

be sure to call the save method after you call the set. 

ex 
$myOrder = Mage::getModel('sales/order'); 
$myOrder->load($orderId); 
$myOrder->setState(Mage_Sales_Model_Order::STATE_PROCESSING, true, 'Order 
Processing Started '); //any other set method will work here 
$myOrder->save(); 

Thank You 
Chuck Reeves 
Cell: 631-374-0772 
Email: [email protected] 



On Mon, Aug 31, 2009 at 2:20 PM, Donald J. Organ IV < [email protected] > 
wrote: 


Yes I've already developed a module that provides alternate code for built-in 
code...but the problem I am having is that I am trying to update the totals, 
grand totals, tax totals, for orders and quotes but it seems like i set the 
value inside of one object..then inside another object I try to get the value 
that was previously set and its the original magento value and not my newly 
specified value. 








----- Original Message ----- 
From: "Jake McGraw" < [email protected] > 
To: "NYPHP Talk" < [email protected] > 
Sent: Monday, August 31, 2009 1:58:27 PM 
Subject: Re: [nyphp-talk] Magento Commerce Experience 

It has a steep learning curve and can be very slow at times. That 
considered, it is designed in an incredibly modular manner, so you can 
pretty much provide an alternate module for any built-in code, so, 
it's highly customizable. It has one of the organized code bases I've 
ever seen. 

- jake 

On Mon, Aug 31, 2009 at 1:46 PM, Donald J. Organ 
IV< [email protected] > wrote: 
> Does anyone on the list have experience with Magento Commerce 
> http://www.magentocommerce.com 
> 
> 
> _______________________________________________ 
> New York PHP User Group Community Talk Mailing List 
> http://lists.nyphp.org/mailman/listinfo/talk 
> 
> http://www.nyphp.org/show_participation.php 
> 
_______________________________________________ 
New York PHP User Group Community Talk Mailing List 
http://lists.nyphp.org/mailman/listinfo/talk 

http://www.nyphp.org/show_participation.php 
_______________________________________________ 
New York PHP User Group Community Talk Mailing List 
http://lists.nyphp.org/mailman/listinfo/talk 

http://www.nyphp.org/show_participation.php 


_______________________________________________ 
New York PHP User Group Community Talk Mailing List 
http://lists.nyphp.org/mailman/listinfo/talk 

http://www.nyphp.org/show_participation.php 
_______________________________________________
New York PHP User Group Community Talk Mailing List
http://lists.nyphp.org/mailman/listinfo/talk

http://www.nyphp.org/show_participation.php

Reply via email to