Skip to content

Commit

Permalink
Merge pull request #84 from webERP-team/master
Browse files Browse the repository at this point in the history
Various
  • Loading branch information
timschofield authored Mar 26, 2019
2 parents 5d2babf + 54e4d6d commit bcadc25
Show file tree
Hide file tree
Showing 287 changed files with 551,226 additions and 354,282 deletions.
3 changes: 2 additions & 1 deletion AccountGroups.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php
/* Defines the groupings of general ledger accounts */
/* AccountGroups.php
Defines the groupings of general ledger accounts */

include('includes/session.php');
$Title = _('Account Groups');
Expand Down
374 changes: 214 additions & 160 deletions AnalysisHorizontalIncome.php

Large diffs are not rendered by default.

301 changes: 178 additions & 123 deletions AnalysisHorizontalPosition.php

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions CompanyPreferences.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?php
/* Defines the settings applicable for the company, including name, address, tax authority reference, whether GL integration used etc. */
// CompanyPreferences.php
// Defines the settings applicable for the company, including name, address, tax authority reference, whether GL integration used etc.

include('includes/session.php');
$Title = _('Company Preferences');
$ViewTopic= 'CreatingNewSystem';
$BookMark = 'CompanyParameters';
$Title = _('Company Preferences');
include('includes/header.php');

if (isset($Errors)) {
Expand Down Expand Up @@ -213,12 +214,12 @@

echo '<tr>
<td>' . _('Telephone Number') . ':</td>
<td><input '.(in_array('Telephone',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="10" type="tel" name="Telephone" required="required" title="' . _('Enter the main telephone number of the company registered office. This will appear on invoices and statements.') . '" size="26" maxlength="25" value="' . $_POST['Telephone'] . '" /></td>
<td><input ', (in_array('Telephone',$Errors) ? 'class="inputerror"' : '' ), ' maxlength="25" name="Telephone" required="required" size="26" tabindex="10" type="tel" title="', _('Enter the main telephone number of the company registered office. This will appear on invoices and statements.'), '" value="', $_POST['Telephone'], '" /></td>
</tr>';

echo '<tr>
<td>' . _('Facsimile Number') . ':</td>
<td><input '.(in_array('Fax',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="11" type="text" name="Fax" size="26" maxlength="25" value="' . $_POST['Fax'] . '" /></td>
<td><input ', (in_array('Fax',$Errors) ? 'class="inputerror"' : '' ), ' maxlength="25" name="Fax" size="26" tabindex="11" type="tel" value="', $_POST['Fax'], '" /></td>
</tr>';

echo '<tr>
Expand Down
Loading

0 comments on commit bcadc25

Please sign in to comment.