mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-25 08:44:42 -04:00
Compare commits
1 Commits
feature/ap
...
fix-sales-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2d8fb735c3 |
@@ -658,11 +658,11 @@ class Sales extends Secure_Controller
|
||||
|
||||
$data['company_info'] = implode("\n", [$this->config['address'], $this->config['phone']]);
|
||||
|
||||
if ($this->config['account_number']) {
|
||||
if (isset($this->config['account_number'])) {
|
||||
$data['company_info'] .= "\n" . lang('Sales.account_number') . ": " . $this->config['account_number'];
|
||||
}
|
||||
|
||||
if ($this->config['tax_id'] != '') {
|
||||
if (isset($this->config['tax_id'])) {
|
||||
$data['company_info'] .= "\n" . lang('Sales.tax_id') . ": " . $this->config['tax_id'];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user