Re: Super Orders v3.0 Support Thread
1. No, the SO version for ZC150 is not ready yet. Hang in there, we're working on it. No ETA yet.
2. Yes, EO and SO integrate together nicely. In the EO readme, this is step 7 of the installation process. In the SO readme, check out the "Addons Integration" tab. If both are installed, a switch needs to be flipped in both of them.
3. Yes, SO will pick up your PayPal transaction data and display it to you in the admin. Depending on your settings and configuration, an email with that info will go out to your customer as well.
4. Installing SO and EO together in no way inhibits your ability to process refunds. They are built to work together.
Good luck and happy Zenning :smile:
Quote:
Originally Posted by
windsurfer
I have "edit_orders_v3.03" and not sure if this has come up at all but I was reading through the installation but didn't see anything about integrating with edit orders unless i missed it.
When i process an order payed through Paypal and use their shipping module the customer gets an e-mail from Paypal with the tracking number. I am just wondering if Super orders will pick this transaction up and updates the order or is there a way to manually enter the tracking number and when i hit update the customer is e-mailed with the updated information. I know when setting the order to shipped in edit orders the customer gets an e-mail but i can't put the tracking information in.
Also is the super orders V1.5 ready ?
Also refunds can be issued oin edit orders, will i lose that capability ?
Any thoughts ?
Thank you.
Re: Super Orders v3.0 Support Thread
Thank you for the reply. I notice that you prefer to have the Ty Package Tracker package installed. I am using Canada Post and just wondering if anybody has the tracking link for CPC, perhaps this is in the wrong topic but can't find anywhere elase i can post this.
Thank you
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
windsurfer
Thank you for the reply. I notice that you prefer to have the Ty Package Tracker package installed. I am using Canada Post and just wondering if anybody has the tracking link for CPC, perhaps this is in the wrong topic but can't find anywhere elase i can post this.
Thank you
Having TY Package Tracker installed is a choice...there's no preference among the SO or EO mod authors as to whether you use it or not. The code to make them work together was added because of popularity rather than preference.
So whether or not you use it is entirely up to you :smile:
Regarding a link for CPC, suggest creating a thread with your question in the "General Questions" area of the forum :smile:
Re: Super Orders v3.0 Support Thread
Thank you
I just installed TY and checked the install twice switch is set but there is no difference when i look at an invoice or edit an order placed after i installed.
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
windsurfer
Thank you for the reply. I notice that you prefer to have the Ty Package Tracker package installed. I am using Canada Post and just wondering if anybody has the tracking link for CPC, perhaps this is in the wrong topic but can't find anywhere elase i can post this.
Thank you
It is the wrong topic..:yes:
Quote:
Originally Posted by
windsurfer
Thank you
I just installed TY and checked the install twice switch is set but there is no difference when i look at an invoice or edit an order placed after i installed.
Post your Ty Package Tracker questions in the Ty Package Tracker support thread please.. (and before you ask.. the link to the Ty Package Tracker support thread is in the Ty Package Tracker readme file -- a forum search would have also turned up the support thread too..)
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
Sure I'm interested.. please make sure your code is clearly commented/highlighted.. In the v1.5 ready version I'm doing away with the super_orders.php file
Well, that surely changes how this could be integrated, as I've included it in the class, but I suppose it could be a function as well.
New function to update stock:
PHP Code:
// Updates product stock upon order cancellation
function update_stock($action) {
global $db;
$order = $db->Execute("select products_id, products_quantity
from " . TABLE_ORDERS_PRODUCTS . "
where orders_id = '" . (int)$this->oID . "'");
// if order cancelled, return stock
if($action=='cancel')
{
while (!$order->EOF) {
$db->Execute("update " . TABLE_PRODUCTS . "
set products_quantity = products_quantity + " . $order->fields['products_quantity'] . ", products_ordered = products_ordered - " . $order->fields['products_quantity'] . " where products_id = '" . (int)$order->fields['products_id'] . "'");
$order->MoveNext();
}
}
// if re-opening a cancelled order, take stock
elseif($action=='reopen')
{
while (!$order->EOF) {
$db->Execute("update " . TABLE_PRODUCTS . "
set products_quantity = products_quantity - " . $order->fields['products_quantity'] . ", products_ordered = products_ordered + " . $order->fields['products_quantity'] . " where products_id = '" . (int)$order->fields['products_id'] . "'");
$order->MoveNext();
}
}
}
Updated the mark cancelled and reopen functions
PHP Code:
// timestamp the date_cancelled field in orders table
// will also NULL out date_completed field if set (you can't have both at once!)
function mark_cancelled() {
global $db;
if ($this->status == false || $this->status == "completed") {
$db->Execute("UPDATE " . TABLE_ORDERS . " SET date_cancelled = now(), order_followup = 0 WHERE orders_id = '" . $this->oID . "'");
if ($this->status == "completed") {
$db->Execute("UPDATE " . TABLE_ORDERS . " SET date_completed = NULL, order_followup = 0 WHERE orders_id = '" . $this->oID . "'");
}
if (STATUS_ORDER_CANCELLED != 0) {
update_status($this->oID, STATUS_ORDER_CANCELLED);
}
$this->status = "cancelled";
$this->status_date = zen_datetime_short(date('Y-m-d H:i:s'));
$this->update_stock('cancel'); // return stock
}
}
// removes the cancelled/completed timestamp
function reopen() {
global $db;
$db->Execute("update " . TABLE_ORDERS . " set
date_completed = NULL, date_cancelled = NULL
where orders_id = '" . $this->oID . "' limit 1");
if (STATUS_ORDER_REOPEN != 0) {
update_status($this->oID, STATUS_ORDER_REOPEN);
}
// if order was cancelled, update and take stock
if($this->status == "cancelled")
{
$this->update_stock('reopen');
}
$this->status = false;
$this->status_date = false;
}
Re: Super Orders v3.0 Support Thread
Two quick questions & I apologize up front if someone already covered this but, I've searched & have not found any answers.
1. How do I change the regular packing slip from the Super Orders page(not pdf) to have the "Ship To" information on the right side & the "Bill to" information on the left side like the invoice does?
2. Can I make it so no comments show up on the packing slips?
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
Rizla
Had SO3 installed for a while now and although only used test orders it seemed fine.
My site is beginning to receive orders and payment through paypal. However I have noticed that the payment details come through ok but the amount has not been applied automatically...
Just wondered if this is correct and I have to manually apply payment or if I have a bad install? as there is no PayPal option in the manual method.
Thanks
I have SO 3.0.1 installed.
According to the description in the download section: "- AUTO PAYMENT FOR ORDERS PAID VIA PAYPAL!!!!!!! 'Nuff said..."
But paypal payments are still not being applied to order balances in my store. Is this an error in my installation, or was it actually not corrected in this version yet?
If it was corrected, is there any possibility you could tell me exactly which code I need to apply to make this work?
Re: Super Orders v3.0 Support Thread
Discussed in several places in this support thread (a search of the thread will net you the answer you seek)
Quote:
Originally Posted by
abcisme
I have SO 3.0.1 installed.
According to the description in the download section: "- AUTO PAYMENT FOR ORDERS PAID VIA PAYPAL!!!!!!! 'Nuff said..."
But paypal payments are still not being applied to order balances in my store. Is this an error in my installation, or was it actually not corrected in this version yet?
If it was corrected, is there any possibility you could tell me exactly which code I need to apply to make this work?
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
Rizla
Had SO3 installed for a while now and although only used test orders it seemed fine.
My site is beginning to receive orders and payment through paypal. However I have noticed that the payment details come through ok but the amount has not been applied automatically...
Just wondered if this is correct and I have to manually apply payment or if I have a bad install? as there is no PayPal option in the manual method.
Thanks
Quote:
Originally Posted by
DivaVocals
Discussed in several places in this support thread (a search of the thread will net you the answer you seek)
Seriously, I've spent hours between yesterday and today reading through this and Super Orders 2.0 thread and there is conflicting information throughout.
Could you please just give me the correct answer?