Announcement

Collapse
No announcement yet.

Postcode in receipt and reports

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Postcode in receipt and reports

    According to the Advanced Users Guide, it is possible to configure how the postcode is displayed by adding a "AddressFormat" with a value of 2 in the registry. However this does not seem to have any effect in my configuration.
    Can the order of city/postcode by changed manually then, and in given case how is this done ?

    John

    #2
    There is a file called vendor.ini in your Actinic root directory, add the line below to the sections called [Vendor]

    AddressFormatForReports=2

    This will certainly fix up the reports, it should also change the receipt page but doesn seem to change the emails. However if you look at the 'miscellaneous' tab on in the template manager (traditional view - the grey one) you will see the email templates and you should be able to edit them so that the address lines are put in the places you wish them to be in.

    Regards,
    Jan Strassen, Mole End Software - Plugins and Reports for Actinic V4 to V11, Sellerdeck V11 to V2018, Sellerdeck Cloud
    Visit our facebook page for the latest news and special offers from Mole End

    Top Quality Integrated label paper for Actinic and Sellerdeck
    A4 Paper with one or two peel off labels, free reports available for our customers
    Product Mash for Sellerdeck
    Link to Google Shopping and other channels, increase sales traffic, prices from £29.95
    Multichannel order processing
    Process Actinic, Sellerdeck, Amazon, Ebay, Playtrade orders with a single program, low cost lite version now available from £19.95

    Comment


      #3
      Thanks Jan. However, the point where I experience the problem is where the customers enters the invoice and delivery addresses. Here I would prefer to have postcode before city, or better these two on the same line. I guess that this maybe should be done with changes in html, but as a newbie I find it hard to get an overview of the html-structure, especially due to alle the netquotevars and embedded html. If I'm correct in this assumption I would be glad to have a clue as to which file I should look for.

      Probably you are right in that your amendment will make it work correct in reports, but that far I have not reached yet. I have not been able to record orders due to another problem mentionned in another thread.

      Regards,
      John

      Comment


        #4
        You ned to get into the the templates to make the change in the Checkout online.

        You have got to move the table row (<tr>...</tr>) for the postcode to be above the table row for the city.

        In the Template Manager Jan pointed you to, go to the 'Ordering' tab and click on the 'Order Phase 1' button.

        Locate the code

        NETQUOTEDEL:INVOICEPROMPT008
        <tr>
        <td bgcolor="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:INVOICEPROMPT008</td>
        <Actinic:LOCATION TYPE='INVOICEPOSTALCODE'>
        <td bgcolor="NETQUOTEVAR:CHECKOUTBG">
        <input type="TEXT" name="INVOICEPOSTALCODE" size="10" maxlength="50" value="NETQUOTEVAR:INVOICEPOSTALCODE">
        </td>
        </Actinic:LOCATION>
        </tr>
        NETQUOTEDEL:INVOICEPROMPT008

        and copy and paste it above the code that says:

        NETQUOTEDEL:INVOICEPROMPT006
        <tr>
        <td bgcolor="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:INVOICEPROMPT006</td>
        <td bgcolor="NETQUOTEVAR:CHECKOUTBG">
        <input type="TEXT" name="INVOICEADDRESS3" size="40" maxlength="200" value="NETQUOTEVAR:INVOICEADDRESS3">
        </td>
        </tr>
        NETQUOTEDEL:INVOICEPROMPT006

        Assuming address line 3 is your 'City' prompt.

        You will then need to open 'Order Phase 2' and do the same there as this will make the change to the delivery address as well.

        Comment

        Working...
        X