X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=inline;f=reporting%2Fincludes%2Fdoctext.inc;h=c9011b45bd5f23ee983573486f33e30765e76295;hb=f425362379fe66e2b0f17b6e4f09d8d9bdf6c5f2;hp=439d7b8f0e11f44297aea5b74774ec5310b6d92c;hpb=8ffddf50ffbe93672c769e2cf0501d0f9125e2a0;p=fa-stable.git diff --git a/reporting/includes/doctext.inc b/reporting/includes/doctext.inc index 439d7b8f..c9011b45 100644 --- a/reporting/includes/doctext.inc +++ b/reporting/includes/doctext.inc @@ -61,7 +61,7 @@ break; case ST_SALESORDER: - $this->title = ($print_as_quote==1 ? _("QUOTE") : ($this->formData['prepaid'] ? _("PREPAYMENT ORDER") : _("SALES ORDER"))); + $this->title = ($this->params['print_quote'] ? _("QUOTE") : ($this->formData['prepaid'] ? _("PREPAYMENT ORDER") : _("SALES ORDER"))); $this->formData['document_name'] =_("Order No."); $this->formData['document_date'] = $this->formData['ord_date']; $this->formData['document_number'] = $SysPrefs->print_invoice_no() == 0 && isset($this->formData['reference']) @@ -78,7 +78,7 @@ break; case ST_CUSTDELIVERY: - $this->title = ($packing_slip==1 ? _("PACKING SLIP") : _("DELIVERY NOTE")); + $this->title = ($this->params['packing_slip'] ? _("PACKING SLIP") : _("DELIVERY NOTE")); $this->formData['document_name'] = _("Delivery Note No."); if (@$packing_slip) $Payment_Terms = ''; @@ -183,7 +183,7 @@ _("Customer's Reference") => $this->formData['supp_account_no'], _("Sales Person") => $this->formData['contact'], _("Your VAT no.") => $this->formData['tax_id'], - _("Supplier's Reference") => $this->formData['requisition_no'], + _("Supplier's Reference") => @$this->formData['requisition_no'], _("Order Date") => sql2date($this->formData['document_date']), );