Topic: I need to show Vendor reference No on purchase order

Hello
I need to show Vendor reference No on purchase order , How pls ?
regards

Re: I need to show Vendor reference No on purchase order

Use the Supplier's Reference field in the form. There were changes in the last release, so please upgrade to the last release.

/Joe

Re: I need to show Vendor reference No on purchase order

Look Joe pls :
in file doctext.inc
----------------------------------------------------------------------------------------------
    case ST_PURCHORDER:
            $this->title = _("PURCHASE ORDER");
            $this->formData['document_name'] =_("Purchase Order No.");
            $Addr1['title'] = _("Order To");
            $Addr1['name'] = $this->formData['supp_name'];
            $Addr1['address'] = $this->formData['address'];
            $Addr2['title'] = _("Deliver To");
            $Addr2['name'] = $this->company['coy_name'];
            //$Addr2['address'] = $this->company['postal_address']; No, don't destroy delivery address!
            $this->formData['document_date'] = $this->formData['ord_date'];
            $this->formData['document_number'] = $print_invoice_no == 0 && isset($this->formData['reference'])
                ? $this->formData['reference'] : $this->formData['order_no'];

            $aux_info = array(
                _("Customers Reference") => $this->formData['supp_account_no'],
---------------------------------------------------------------------------------------------------------------------
i think this line is not true :
_("Customers Reference") => $this->formData['supp_account_no'],
----------------------------------------------------------------------------------------------------------------------
pls help

Re: I need to show Vendor reference No on purchase order

I see the changes to the Purchase Order were done after release 2.3.12. I will attach the files needed for download.

Please rename the file rep209.php1 to rep209.php and replade all the files.

These files are in the HG repository for the next release.

/Joe

Post's attachments

doctext.inc 10.9 kb, 16 downloads since 2012-10-25 

pdf_report.inc 35.2 kb, 12 downloads since 2012-10-25 

rep209.php1 7.7 kb, 10 downloads since 2012-10-25 

You don't have the permssions to download the attachments of this post.

Re: I need to show Vendor reference No on purchase order

I will install this files and come back again ,
thank you very  much

Re: I need to show Vendor reference No on purchase order

Thanks a lot it worked with me .