X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Fincludes%2Fdoctext.inc;h=4b87fa6df229df98b78d41ccfc5c18e7b8276c29;hb=c5677263c637016991f99e1b63f067280da75163;hp=be391fde7392bb3905c77ca602327c691b11f678;hpb=13367be8aaf5175295f7aab7160370458dad1824;p=fa-stable.git diff --git a/reporting/includes/doctext.inc b/reporting/includes/doctext.inc index be391fde..4b87fa6d 100644 --- a/reporting/includes/doctext.inc +++ b/reporting/includes/doctext.inc @@ -14,6 +14,8 @@ * Set document type dependent elements of common page layout. * */ + global $SysPrefs; + $Addr1 = array( 'title' => _("Charge To"), 'name' => @$this->formData['br_name'] ? $this->formData['br_name'] : @$this->formData['DebtorName'], @@ -59,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']) @@ -76,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 = ''; @@ -181,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']), ); @@ -195,6 +197,8 @@ $this->title = _("RECEIPT"); $this->formData['document_name'] =_("Receipt No."); $Addr1['title'] = _("With thanks from"); + if ($this->formData['order_'] == "0") + $this->formData['order_'] = ""; $aux_info = array( _("Customer's Reference") => $this->formData["debtor_ref"], _("Type") =>$systypes_array[$this->formData["type"]],