Is there a customer purchase order column in nopCommerce 3.50?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
8 years ago
I looked at the SQL table for Order but I do not see a purchase order column.  Is it called something else perhaps?  Customer purchase order is usually a value stored in the Order table in most order entry systems.
8 years ago
It used to be a column in Order table.   Now it's encoded in XML in [CustomValuesXml] column

<?xml version="1.0" encoding="utf-16"?><DictionarySerializer><item><key>PO Number</key><value>test po</value></item></DictionarySerializer>
8 years ago
Thanks for the reply New York.  But I don't see where our customer is able to enter this P.O. number.  Or is this something I must add?
8 years ago
Currently, the only way to enter a PO is to use the Payment Method "Purchase Order".  Which means that you can't have customer pay by credit card, or PayPal, etc. and also enter a PO Number.   That's why I am creating a plugin to allow entering a PO Number in the Payment Method Selection page or any Payment Info page.  I was planning on releasing it sometime after 3.60 is out.  Contact me at support at noptools.com if you're interested.  (What version of nopC are you usng?)
8 years ago
I'm using 3.50.
8 years ago
I've PM'd you.

We were not planning on releasing the PO Number plugin until sometime after nopC 3.60 was released.  However, If anyone else is interested in a PO Number prompt plugin for 3.50, email me at support at noptools.com.  The regular price will be $35 USD  (When officially released, we may initially discount it to $29, but if you want it now, it will be full price).


Below is what the config page looks like.  You can choose to display the PO Number prompt in one of the widget zones indicated, and you set the HTML that you want to appear (in case you need to style the prompt text / textbox).


PONumber will display your html in a Payment Info or Payment Method widget zone.
Prompts, etc. are localized - see Languages > View string resources, and search for Contains "noptools.ponumber".

Widget zone where to render:  
        Payment Method Top
        Payment Method Bottom
        Payment Info Top
        Payment Info Bottom

The {PONumberLabel} is a placeholder for the prompt. PONumberLabel can be changed in Languages > View string resources.
PO Number input html:
<p>
{PONumberLabel}:  <input autocomplete='off'  style='Width: 125px;' type='text' value=''>
</p>
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.