Zen Cart Logo
Forums / All Other Contributions/Addons / Super Orders v3.0 Support Thread (for ZC v1.3.9)

Super Orders v3.0 Support Thread (for ZC v1.3.9)

Views: 176,717

Results 581 to 600 of 1,018
6 Oct 2011, 5:10 PM
#581
jpietrowiak avatar

jpietrowiak

Zen Follower

Join Date:
May 2009
Posts:
122
Plugin Contributions:
0

Super Orders v3.0 Support Thread (for ZC v1.3.9)

Thanks for the quick response! If I click on super orders and have my list of orders displayed and try entering the PO# in the search fields to search all the orders it does not seem to pickup the PO# assigned in the orders. I can view it in order detail.

6 Oct 2011, 5:12 PM
#582
hairydog avatar

hairydog

Zen Follower

Join Date:
Sep 2006
Posts:
165
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

maxter:

I have this error when I try to insert and send message for customer. Any idea to resolve o where I take look for?

1064 You have an error in your SQL syntax; ...

This is probably due to you having included an apostrophe/single quote in the message. There should be a routine in the SO code to escape this, but it seems there isn't.

If it is an installation issue, I'd like to know about it, so I can fix it, but I think it is a simple bug.

6 Oct 2011, 5:13 PM
#583
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

hairydog:

This is probably due to you having included an apostrophe/single quote in the message. There should be a routine in the SO code to escape this, but it seems there isn't.

If it is an installation issue, I'd like to know about it, so I can fix it, but I think it is a simple bug.
Simple bug.. It's in the release package I have, but as I JUST posted today, the new release is partially complete (got stuck working out fixes in the batch status update files).. Workaround for now is to not use single or double quotes in comments..

6 Oct 2011, 5:15 PM
#584
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

jpietrowiak:

Thanks for the quick response! If I click on super orders and have my list of orders displayed and try entering the PO# in the search fields to search all the orders it does not seem to pickup the PO# assigned in the orders. I can view it in order detail.
From my reply posted today..

DivaVocals:

There already are search fields in Super Orders to locate orders (both in the order detail and the order list).. ** If you looking for a way to search for the PO numbers the customer paid with, Super Orders doesn't support this or searching for any other form of payment by the payment number.**

6 Oct 2011, 5:24 PM
#585
hairydog avatar

hairydog

Zen Follower

Join Date:
Sep 2006
Posts:
165
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Thanks. Saves looking for an installation mess-up, and there is a workaround until the new version comes out: don't use apostrophes. Or should I say "do not use apostrophes" :smile:

6 Oct 2011, 5:26 PM
#586
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

For those interested.. Here's what was left on my to-do list for the Super Orders release I've been working on:

  1. Language Support for Super Payment Types
    Needs to support payment types for all languages used in the shop. Because of the way credit card auto payments work in Super Orders, the payment type code for American Express, Visa, Matercard, Diners Club, Discover, Maestro, SOLO, and JCB must be identical for all languages.
    (See admin/includes/classes/super_order.php starting at line 275)
  2. Update comments using “Batch Status Update” not working correctly.
    Comments in “Batch Status Update” should work the same way default order comments work. (support for e-mail, no e-mail, or hidden comments) . If working properly should allow shop owner to create batch hidden order comments.

Currently does not create the correct comment type. Hidden comments and no e-mail comments are not e-mailed to the customer, but they are stored and displayed in the store as if they are e-mail comments.
3. PDF Packing Slip incorrectly displays the “Balance Due” Amount
4. PDF Packing Slip needs to support wrapping display long attributes names
Word wrapping works for product names and models, but not attributes.
5. PDF Packing Slip does not print all order comments
Seems to only print the 1st comment. Should print comments the same way comments print on the regular invoice.
6. PDF Packing Slip - Symbols are displayed incorrectly.
Most notably currency symbols, copyright and trademark symbols, etc..
This is where I left things the last time I was able to work on this.. If anyone wants to volunteer to help wrap this up, I would appreciate a hand...

8 Oct 2011, 8:33 PM
#587
carlvt88 avatar

carlvt88

Zen Follower

Join Date:
Aug 2007
Location:
Williston, Vermont
Posts:
180
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

DivaVocals:

  1. Update comments using “Batch Status Update” not working correctly.
    Comments in “Batch Status Update” should work the same way default order comments work. (support for e-mail, no e-mail, or hidden comments) . If working properly should allow shop owner to create batch hidden order comments.

Currently does not create the correct comment type. Hidden comments and no e-mail comments are not e-mailed to the customer, but they are stored and displayed in the store as if they are e-mail comments.

I have the batch status working. I can send you the mods

super_batch_status.php around line 310:

                <td class="smallText" colspan="2"><?php 
                  echo ENTRY_NOTIFY_CUSTOMER . zen_draw_radio_field('notify', '1', true) . '-' . TEXT_EMAIL . ' ' . zen_draw_radio_field('notify', '0', FALSE) . '-' . TEXT_NOEMAIL . ' ' . zen_draw_radio_field('notify', '-1', FALSE) . '-' . TEXT_HIDE . '<br>'; 
                  echo zen_draw_checkbox_field('notify_comments', 'on', true); echo ' ' . ENTRY_NOTIFY_COMMENTS; 
                  ?><br><br>
                   <input value="<?php echo BUTTON_UPDATE_STATUS; ?>" type="submit">

and around line 411:

    if ($notify == '1') { 
9 Oct 2011, 4:16 PM
#588
carlvt88 avatar

carlvt88

Zen Follower

Join Date:
Aug 2007
Location:
Williston, Vermont
Posts:
180
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

I also modified admin\includes\languages\english\super_batch_status.php as:
('ENTRY_NOTIFY_COMMENTS', 'Append Comments to email?');

I've also taken a pass at #5 on the PDF packing slips, to include the capability for hidden comments. I've sent this along separately.

9 Oct 2011, 5:57 PM
#589
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Carl.. you are a doll!!!!:hug:

carlvt88:

I have the batch status working. I can send you the mods

super_batch_status.php around line 310:

            <td class="smallText" colspan="2"><?php 
              echo ENTRY_NOTIFY_CUSTOMER . zen_draw_radio_field('notify', '1', true) . '-' . TEXT_EMAIL . ' ' . zen_draw_radio_field('notify', '0', FALSE) . '-' . TEXT_NOEMAIL . ' ' . zen_draw_radio_field('notify', '-1', FALSE) . '-' . TEXT_HIDE . '<br>'; 
              echo zen_draw_checkbox_field('notify_comments', 'on', true); echo ' ' . ENTRY_NOTIFY_COMMENTS; 
              ?><br><br>
               <input value="<?php echo BUTTON_UPDATE_STATUS; ?>" type="submit">
> ```
    if ($notify == '1') { 

carlvt88:

I also modified admin\includes\languages\english\super_batch_status.php as:
('ENTRY_NOTIFY_COMMENTS', 'Append Comments to email?');

I've also taken a pass at #5 on the PDF packing slips, to include the capability for hidden comments. I've sent this along separately.Hidden comments shouldn't appear on th ePDF invoices at all.. These are meant to be "admin only" comments.. They do not appear on the standard invoices.. or perhaps I misunderstood what you mean..

9 Oct 2011, 8:24 PM
#590
carlvt88 avatar

carlvt88

Zen Follower

Join Date:
Aug 2007
Location:
Williston, Vermont
Posts:
180
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Just my poor communication. I should have said " the ability to support hidden comments". I followed the same code as invoice.php. It prints out all non-hidden comments, whether there was a comment, or just a status update. One thing though (same as invoice.php), if the last status change was hidden, it doesn't print. This means that the current status won't show on the packing slip.

13 Oct 2011, 6:58 PM
#591
mulderict avatar

mulderict

New Zenner

Join Date:
Oct 2011
Posts:
1
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Hi I have installed super orders on my test environment, and it is working except that the mod 'PDF Rechnung/rl_invoice' is not available anymore. This as it is positioned in the replaced orders.php. I've read somewhere that both should be able to be working together. Does anyone know how to get this working/available again? I have been using it also on my webshop, working fine. So before going into the next step I want to make sure everything is fine and can be incorporated.

Btw, great work on Super Orders! My appreciation!

14 Oct 2011, 12:23 PM
#592
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

mulderict:

Hi I have installed super orders on my test environment, and it is working except that the mod 'PDF Rechnung/rl_invoice' is not available anymore. This as it is positioned in the replaced orders.php. I've read somewhere that both should be able to be working together. Does anyone know how to get this working/available again? I have been using it also on my webshop, working fine. So before going into the next step I want to make sure everything is fine and can be incorporated.

Btw, great work on Super Orders! My appreciation!

Super Orders does not modify any of the same files as the other mod.. so you should probably ask your question in the support thread for the non working mod..

16 Oct 2011, 8:08 PM
#593
alexiss avatar

alexiss

New Zenner

Join Date:
Jun 2009
Posts:
63
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Hello,

I have Super orders, Ty, and edit orders installed perfectly and working very nice. However I am still wondering how it works.

Ok so you add items to a customers order. Lets say they paid with paypal on there original order. Is there a way for when the customer logs back in and sees the changed order to pay the balance owed on there account using paypal or what ever method is available?

Thanks,

Lexxie

17 Oct 2011, 2:15 PM
#594
alexiss avatar

alexiss

New Zenner

Join Date:
Jun 2009
Posts:
63
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Alexiss:

Hello,

I have Super orders, Ty, and edit orders installed perfectly and working very nice. However I am still wondering how it works.

Ok so you add items to a customers order. Lets say they paid with paypal on there original order. Is there a way for when the customer logs back in and sees the changed order to pay the balance owed on there account using paypal or what ever method is available?

Thanks,

Lexxie

Hello Can anyone help Me?

THanks

Lexxie

17 Oct 2011, 4:21 PM
#595
scriptjunkie avatar

scriptjunkie

Totally Zenned

Join Date:
Jul 2008
Posts:
772
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Alexiss:

Hello,

I have Super orders, Ty, and edit orders installed perfectly and working very nice. However I am still wondering how it works.

Ok so you add items to a customers order. Lets say they paid with paypal on there original order. Is there a way for when the customer logs back in and sees the changed order to pay the balance owed on there account using paypal or what ever method is available?

Thanks,

Lexxie

The short answer is 'no'.

From the "Purpose & Aim" tab of the SO2 Read_Me file:

"Super Orders is exactly what its name implies: Zen Cart order management on steroids."

That means super orders "soups up" Zen Cart order management functionality. It doesn't change the core way order management works. Suggest reading the entire Read_Me for a more thorough understanding of how the mod works. Suggest the same for Edit_Orders so that you can understand what it will and won't do.

To answer the question using the scenario you provided, Edit_Orders will allow you to edit the order to reflect additional items purchased, changes in costs, taxes, etc....but it won't "bill" the customer. You would need to go to your paypal account and generate an invoice for the additional amount owed for any new items added, as well as increases in tax and/or shipping/handling fees.

Going forward, questions about Edit_Orders functionality should be posted on the Edit_Orders support thread. I understand that you probably didn't know which mod your question applied to, but that's why you really should read the Read_Me files that are included with those mods...so that you can understand and differentiate between them.

Good luck and happy Zenning :smile:

28 Oct 2011, 8:47 AM
#596
accent2010 avatar

accent2010

New Zenner

Join Date:
Jun 2011
Posts:
24
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

I just installed the super orders, edit order and TY on my v1.3.9h zen cart online store but got a page not found error for the super_batch_status.php page and super_batch_forms.php. Any ideas?
Thanks!

28 Oct 2011, 1:50 PM
#597
scriptjunkie avatar

scriptjunkie

Totally Zenned

Join Date:
Jul 2008
Posts:
772
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Try re-uploading those pages, clearing your cache, and checking again. Sometimes files get corrupted during the upload process.

accent2010:

I just installed the super orders, edit order and TY on my v1.3.9h zen cart online store but got a page not found error for the super_batch_status.php page and super_batch_forms.php. Any ideas?
Thanks!

13 Nov 2011, 6:10 PM
#598
ideasgirl avatar

ideasgirl

Totally Zenned

Join Date:
Aug 2005
Location:
Trujillo Alto, Puerto Rico
Posts:
1,437
Plugin Contributions:
3

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Hi Diva,

I've been searching for more than an hour the thread trying to find something to fix the "Balance Due" issue and haven't. I saw your post http://www.zen-cart.com/forum/showpost.php?p=1004265&postcount=266 where you mentioned it was going to be fixed on next release but there's not "fast fix" for those that don't want to wait for it :blush: (not me of course).

I saw your list for next release "Things to do" and don't see it there so I was wondering... :unsure:

If there's anything I can help with from that list is on any language translation to Spanish, so let me know if I can give a hand on that.

14 Nov 2011, 3:41 PM
#599
digitalshadow avatar

digitalshadow

Totally Zenned

Join Date:
Mar 2009
Posts:
616
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Has anyone got this working with reward points? Edit orders has been updated and now works....

14 Nov 2011, 8:33 PM
#600
grossd avatar

grossd

Zen Follower

Join Date:
Sep 2005
Posts:
173
Plugin Contributions:
0

Re: Super Orders v3.0 Support Thread (for ZC v1.3.9)

Hello,

I've looked at the super_invoice code that relates to displaying comments. I noticed that the code first retrieves all comments linked to an order [1], but then only checks the first comment [2] if its empty or not to decide whether comments should be displayed.

For an order i just generated the first comment is empty, and the second (admin generated) comment has text. Unfortunately, due to [2] the text does not get displayed. Also, the $customer_note assignment in [2] suggests that only one comment exists and is displayed.

In my humble opinion this section of code needs to be rewritten. I would probably remove [2] altogether and instead create a loop at the end (instead of the if [3] that checks for $display_notes=1, and display all comments that are non empty.

Did i misunderstand something here? Or, do my suggestions make sense.

thank you,

Dan

code that retrieves all comment from the db
[1] $orders_history = $db->Execute("SELECT orders_status_id, date_added, customer_notified, comments
FROM " . TABLE_ORDERS_STATUS_HISTORY . "
WHERE orders_id = '" . $oID . "'
ORDER BY date_added");

Code that checks only one comment field (the first amongst those retrieved), whether its empty or not.
[2] if ($orders_history->fields['comments'] != '') {
$customer_notes = $orders_history->fields['comments'];
$display_notes = 1;
}
else {
$display_notes = 0;
}

[3] code that displays one comment

<?php if ($display_notes == 1) { ?> <tr> <td><?php echo zen_draw_separator('pixel_trans.gif', '1', '5'); ?></td> </tr> <tr> <td class="main" colspan="2"><strong><?php echo HEADER_CUSTOMER_NOTES; ?></strong></td> </tr> <tr> <td class="main" colspan="2"><?php echo $customer_notes; ?></td> </tr> <?php } ?>