Changeset 740 for trunk/Modules/Finance/Bill.php
- Timestamp:
- Jul 3, 2015, 11:36:07 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Bill.php
r738 r740 79 79 80 80 // If negative value => switch sides 81 if($Invoice[' Direction'] == -1)81 if($Invoice['ValueSign'] == -1) 82 82 { 83 83 $Subject = $SubjectTo; … … 162 162 163 163 $BooleanText = array('Ne', 'Ano'); 164 if($Operation[' Direction'] == -1)164 if($Operation['ValueSign'] == -1) 165 165 $Desc = array( 166 166 'Type' => 'VÝDAJOVÝ', … … 168 168 'Target' => 'Vydáno komu', 169 169 ); 170 else if($Operation[' Direction'] == 1)170 else if($Operation['ValueSign'] == 1) 171 171 $Desc = array( 172 172 'Type' => 'PŘÍJMOVÝ',
Note:
See TracChangeset
for help on using the changeset viewer.