I checked this out. I do not think it will accomplish what I am looking for.
I actually got my xml creation to work. Now I just need to get my query done correctly!
See here: http://www.zen-cart.com/forum/showthread.php?t=91578
Printable View
I checked this out. I do not think it will accomplish what I am looking for.
I actually got my xml creation to work. Now I just need to get my query done correctly!
See here: http://www.zen-cart.com/forum/showthread.php?t=91578
Hi,
I try to install Super Order 2, when a execute the SQL script, i receive SQL error:
1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL
server version for the right syntax to use near 'True', 'False'), ')' at line 1
in:
INSERT INTO zen_configuration VALUES (NULL, 'Enable Purchase Order Module',
'MODULE_PAYMENT_PURCHASE_ORDER_STATUS', 'True',
'Do you want to accept Purchase Order payments?', 6, 1,
now(), now(), NULL, 'zen_cfg_select_option(array('True', 'False'), ');
Does someone can help me ?
Thanks
My version of Zencart : 1.37.1 and MySQL 5.0.51
It works nows, i change the syntaxe of this line, change quote for double quote.
INSERT INTO configuration VALUES (NULL,
'Enable Purchase Order Module', 'MODULE_PAYMENT_PURCHASE_ORDER_STATUS',
'True','Do you want to accept Purchase Order payments?',
6,1,now(),now(),NULL, "zen_cfg_select_option(array(\'true\', \'false\'),");
This question is probably for Blindside...
Is there a reason why super_invoice.php and super_packingslip.php use stylesheet.css and NOT super_stylesheet.css (or both)?? :dontgetit
Super_stylesheet.css includes classes like .invoiceHeader which seems relevent.
Does Super Oder 2.0 support multi-language ? because some error message apears when i try to commit some change with "The payment type" Module.
:bigups:
Good Morning Guys,
i installed the Super Orders Module and have a small problem. Everything works as supposed to except when I update the status of a product, and select Notify Customer, it gives me a Red X and the customer hasn't been notified by email.
I already reinstalled everything, but it still hasn't changed. It used to work when i had everything installed on my Zen-Cart version 1.36. I have version 1.38a now.
Any ideas what could be the problem?
Thanks a lot for your help.
Best Regards,
Stuntsmovie.com
I just noticed sort of the same thing on my fresh install of Super Orders on a site I still have in developement StuntsMovie. Except since I was doing it with a Test order to myself I can see from my mailbox that the email was actually sent and delivered. However the Red X would certainly give a person the impression it wasn't sent when it was.
On another subject, and I have a feeling I'm missing something here, I can't see where in SO it shows the actual shipping method chosen for the order. In my test cart USPS is the only option, but they can choose from Parcel Post, Priority Mail or Express Mail. In SO it shows United States Postal Service as the shipping method just fine, but I don't see where it tells me if someone wanted Parcel Post, Priority or Express service.
Am I simply missing it somewhere? If not, is there a way to get this bit of info in the mix of the Details page somewhere as a reference?
I had the same problem, but there is a fix that was mentioned previously in the post that I integrated, and it worked for me. These are the instructions:
##############################____
I have now made a further correction so that it now updates the customer notification change the lines from 353 to 356 in the super_batch_status.php file in admin from
if ( ($check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
update_status($oID, $status, $notify, $comments);
if ($notify == 1) email_latest_status($oID);
to the following code
if ( ($check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
$customer_notified = '0';
if (isset($_POST['notify']) && ($_POST['notify'] == 'on')) {
$customer_notified = '1';
}
update_status($oID, $status, $customer_notified, $comments);
if ($customer_notified == '1') {
email_latest_status($oID);
}
I hope this does the trick with everyone who has had trouble with not being able to send emails in the batch status.
##################################################
Again, not sure if that will work for you, but it did the trick for me!
Ixnay my question regarding shipping detail not showing up in SO. I found the answer, or actually a couple of them back on page 78 of this thread. That should do the job. Dunno if I was searching wrong, not holding my mouth just right or if the forum search is just a bit lacking like most of them are.
I do still have the Red X issue if anybody can point me to that one. I wasn't using any batch processes. And the mail gets sent. The indicator is just the opposite of what it should be for me.
I'm off to scan through some more pages to see if I can spot a fix for that one!
Hey, I'm a fast reader if nothing else. ;)
Found topcat24's post being the last one on page 91, referencing a slightly older post with a fix that worked a treat!
Ya'll a wonderful. Now if I could get get the forum search to pull those for me.