[nycphp-talk] Magento Commerce Experience
Donald J. Organ IV
dorgan at donaldorgan.com
Mon Aug 31 16:26:14 EDT 2009
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" <chuck.reeves at gmail.com>
To: "NYPHP Talk" <talk at lists.nyphp.org>
Sent: Monday, August 31, 2009 3:49:35 PM
Subject: Re: [nycphp-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: chuck.reeves at gmail.com
On Mon, Aug 31, 2009 at 2:20 PM, Donald J. Organ IV < dorgan at donaldorgan.com > 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" < jmcgraw1 at gmail.com >
To: "NYPHP Talk" < talk at lists.nyphp.org >
Sent: Monday, August 31, 2009 1:58:27 PM
Subject: Re: [nycphp-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< dorgan at donaldorgan.com > 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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.nyphp.org/pipermail/talk/attachments/20090831/722806ac/attachment.html>
More information about the talk
mailing list