Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision c63316e6

Von Moritz Bunkus vor mehr als 17 Jahren hinzugefügt

  • ID c63316e626c2b6723f796edeb69f508cced8aae9
  • Vorgänger 54740168
  • Nachfolger 599030d5

Feld "Vorgangsbezeichnung" bei Verkaufsrechnungen hinzugefügt.

Unterschiede anzeigen:

bin/mozilla/ar.pl
1295 1295
	  <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
1296 1296
	  <td colspan=3><input name=ordnumber size=20></td>
1297 1297
	</tr>
1298
       <tr>
1299
         <th align=right nowrap>| . $locale->text('Transaction description') . qq|</th>
1300
         <td colspan=3><input name=transaction_description size=40></td>
1301
       </tr>
1298 1302
	<tr>
1299 1303
	  <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
1300 1304
	  <td colspan=3><input name=notes size=40></td>
......
1371 1375
		<td nowrap>| . $locale->text('Subtotal') . qq|</td>
1372 1376
		<td align=right><input name="l_globalprojectnumber" class=checkbox type=checkbox value=Y></td>
1373 1377
		<td nowrap>| . $locale->text('Project Number') . qq|</td>
1378
		<td align=right><input name="l_transaction_description" class=checkbox type=checkbox value=Y></td>
1379
		<td nowrap>| . $locale->text('Transaction description') . qq|</td>
1374 1380
	      </tr>
1375 1381
	    </table>
1376 1382
	  </td>
......
1446 1452
    $option .= "\n<br>" if $option;
1447 1453
    $option .= $locale->text('Notes') . " : $form->{notes}";
1448 1454
  }
1455
  if ($form->{transaction_description}) {
1456
    $callback .= "&transaction_description=" . $form->escape($form->{transaction_description}, 1);
1457
    $href .= "&transaction_description=" . $form->escape($form->{transaction_description});
1458
    $option .= "\n<br>" if $option;
1459
    $option .= $locale->text('Transaction description') . " : $form->{transaction_description}";
1460
  }
1449 1461

  
1450 1462
  if ($form->{transdatefrom}) {
1451 1463
    $callback .= "&transdatefrom=$form->{transdatefrom}";
......
1482 1494

  
1483 1495
  @columns =
1484 1496
    qw(transdate id type invnumber ordnumber name netamount tax amount paid
1485
       datepaid due duedate notes employee shippingpoint shipvia
1497
       datepaid due duedate transaction_description notes employee shippingpoint shipvia
1486 1498
       globalprojectnumber);
1487 1499

  
1488 1500
  $form->{"l_type"} = "Y";
......
1558 1570
    . "</a></th>";
1559 1571
  $column_header{globalprojectnumber} =
1560 1572
    qq|<th class="listheading">| . $locale->text('Project Number') . qq|</th>|;
1573
  $column_header{transaction_description} =
1574
    "<th class=listheading>" . $locale->text('Transaction description') . "</th>";
1561 1575

  
1562 1576
  $form->{title} = $locale->text('AR Transactions');
1563 1577

  
......
1664 1678
    $column_data{employee}      = "<td>$ar->{employee}&nbsp;</td>";
1665 1679
    $column_data{globalprojectnumber}  =
1666 1680
      "<td>" . H($ar->{globalprojectnumber}) . "</td>";
1681
    $column_data{transaction_description}  =
1682
      "<td>" . H($ar->{transaction_description}) . "</td>";
1667 1683

  
1668 1684
    $i++;
1669 1685
    $i %= 2;

Auch abrufbar als: Unified diff