Forum

Ask, reply and learn. Join the community of Akaunting.

New Discussion

Invoice allows max quantity of 5 in version 3.0.3

Juan Torres   ( User )

Commented 1 year ago

New 3.0.3 version update has issues. Our hosted solution only allows max 5 quantities pero item. So if you need to sell 15 units of something you will have to create 3 same item, each with max of 5 units. This is insane.

My temporal solution was to update /app/Http/Requests/Document/Document.php in lines 72 and 75. I put 100 size, which is enough for my job. Any clue for a definate solution?

if ($items) {
foreach ($items as $key => $item) {
$size = 100;

if (Str::contains($item['quantity'], ['.', ','])) {
$size = 100;
}

Please login or register to leave a response.

Showing 1 to 1 of 1 discussions