Overview
Comment:Fix issue with empty amount
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev | 1.0.0-rc1
Files: files | file ages | folders
SHA1: d2fcf382d7115cb65b24db38c575bfc4d714d523
User & Date: bohwaz on 2020-11-26 20:31:33
Other Links: branch diff | manifest | tags
Context
2020-11-26
21:39
Fix calls to non-existing method check-in: 3f22ad4a10 user: bohwaz tags: dev, 1.0.0-rc1
20:31
Fix issue with empty amount check-in: d2fcf382d7 user: bohwaz tags: dev, 1.0.0-rc1
19:31
Fix change saved search check-in: 52cd841c7f user: bohwaz tags: dev, 1.0.0-rc1
Changes

Modified src/include/lib/Garradin/Entities/Accounting/Transaction.php from [d169fbe57f] to [d0d8ba7f1b].

1
2
3
4
5
6
7
8
9
10
11
12

13
14
15
16
17
18
19
<?php

namespace Garradin\Entities\Accounting;

use KD2\DB\EntityManager;
use Garradin\Entity;
use Garradin\Fichiers;
use Garradin\Accounting\Accounts;
use Garradin\ValidationException;
use Garradin\DB;
use Garradin\Config;
use Garradin\Utils;


class Transaction extends Entity
{
	const TABLE = 'acc_transactions';

	const TYPE_ADVANCED = 0;
	const TYPE_REVENUE = 1;












>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace Garradin\Entities\Accounting;

use KD2\DB\EntityManager;
use Garradin\Entity;
use Garradin\Fichiers;
use Garradin\Accounting\Accounts;
use Garradin\ValidationException;
use Garradin\DB;
use Garradin\Config;
use Garradin\Utils;
use Garradin\UserException;

class Transaction extends Entity
{
	const TABLE = 'acc_transactions';

	const TYPE_ADVANCED = 0;
	const TYPE_REVENUE = 1;