X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Fincludes%2Fdoctext.inc;h=bf45b1ce355fbd67ce487cf61f366d5d72217bba;hb=e6d9f3706a42003ac003820c0532db20d5d50ff8;hp=6d28e274933bee7ddc79b48d8942211882d05ed7;hpb=5c2565db0b2a82da46c1b1d0aae0d08687436122;p=fa-stable.git diff --git a/reporting/includes/doctext.inc b/reporting/includes/doctext.inc index 6d28e274..bf45b1ce 100644 --- a/reporting/includes/doctext.inc +++ b/reporting/includes/doctext.inc @@ -38,9 +38,10 @@ $this->title = _("SALES QUOTATION"); $this->formData['document_name'] =_("Quotation No."); $this->formData['document_date'] = $this->formData['ord_date']; - $this->formData['document_number'] = $this->formData['order_no']; + $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["customer_ref"], + _("Customer's Reference") => $this->formData["customer_ref"], _("Sales Person") => get_salesman_name($this->formData['salesman']), _("Your VAT no.") => $this->formData['tax_id'], _("Our Quotation No") => $this->formData['order_no'], @@ -52,11 +53,12 @@ $this->title = ($print_as_quote==1 ? _("QUOTE") : _("SALES ORDER")); $this->formData['document_name'] =_("Order No."); $this->formData['document_date'] = $this->formData['ord_date']; - $this->formData['document_number'] = $this->formData['order_no']; + $this->formData['document_number'] = $print_invoice_no == 0 && isset($this->formData['reference']) + ? $this->formData['reference'] : $this->formData['order_no']; $this->formData['document_amount'] = $this->formData['order_no']; $aux_info = array( - _("Customers Reference") => $this->formData["customer_ref"], + _("Customer's Reference") => $this->formData["customer_ref"], _("Sales Person") => get_salesman_name($this->formData['salesman']), _("Your VAT no.") => $this->formData['tax_id'], _("Our Order No") => $this->formData['order_no'], @@ -77,7 +79,7 @@ $ref = $this->formData['order_']; } $aux_info = array( - _("Customers Reference") => $this->formData["customer_ref"], + _("Customer's Reference") => $this->formData["customer_ref"], _("Sales Person") => get_salesman_name($this->formData['salesman']), _("Your VAT no.") => $this->formData['tax_id'], _("Our Order No") => $ref, @@ -91,7 +93,7 @@ $Footer[0] = _("Please quote Credit no. when paying. All amounts stated in") . " - " . $this->formData['curr_code']; $aux_info = array( - _("Customers Reference") => @$this->formData["customer_ref"], + _("Customer's Reference") => @$this->formData["customer_ref"], _("Sales Person") => get_salesman_name($this->formData['salesman']), _("Your VAT no.") => $this->formData['tax_id'], _("Our Order No") => $this->formData['order_'], @@ -113,7 +115,7 @@ } } $aux_info = array( - _("Customers Reference") => $this->formData["customer_ref"], + _("Customer's Reference") => $this->formData["customer_ref"], _("Sales Person") => get_salesman_name($this->formData['salesman']), _("Your VAT no.") => $this->formData['tax_id'], _("Delivery Note No.") => implode(',', $deliveries), @@ -134,10 +136,10 @@ $Addr2['address'] = ''; $aux_info = array( - _("Customers Reference") => $this->formData['supp_account_no'], + _("Customer's Reference") => $this->formData['supp_account_no'], _("Type") =>$systypes_array[$this->formData["type"]], _("Your VAT no.") => $this->formData['tax_id'], - _("Our Order No") => '', + _("Supplier's Reference") => '', _("Due Date") => sql2date($this->formData['tran_date']), ); $this->headers = array(_("Trans Type"), _("#"), _("Date"), _("Due Date"), _("Total Amount"), _("Left to Allocate"), _("This Allocation")); @@ -151,17 +153,17 @@ $Addr1['address'] = $this->formData['address']; $Addr2['title'] = _("Deliver To"); $Addr2['name'] = $this->company['coy_name']; - $Addr2['address'] = $this->company['postal_address']; + //$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'], - _("Sales Person") => '', - _("Your VAT no.") => '', - _("Our Order No") => '', - _("Due Date") => '', + _("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'], + _("Order Date") => sql2date($this->formData['document_date']), ); $this->headers = array(_("Item Code"), _("Item Description"), @@ -175,7 +177,7 @@ $this->formData['document_name'] =_("Receipt No."); $Addr1['title'] = _("With thanks from"); $aux_info = array( - _("Customers Reference") => $this->formData["debtor_ref"], + _("Customer's Reference") => $this->formData["debtor_ref"], _("Type") =>$systypes_array[$this->formData["type"]], _("Your VAT no.") => $this->formData['tax_id'], _("Our Order No") => $this->formData['order_'], @@ -213,7 +215,7 @@ $Payment_Terms = ''; $this->title = _("STATEMENT"); $aux_info = array( - _("Customers Reference") => '', + _("Customer's Reference") => '', _("Sales Person") => '', _("Your VAT no.") => $this->formData['tax_id'], _("Our Order No") => '', @@ -269,4 +271,5 @@ $Footer[] = $line; } + $this->formData['recipient_name'] = $Addr1['name']; ?>