youngguns-nl / moneybird_php_api

A PHP Library for the MoneyBird API
http://www.moneybird.nl
MIT License
37 stars 14 forks source link

pricesAreInclTax not implemented #64

Closed hiddeco closed 9 years ago

pluijm commented 9 years ago

yes it is

hiddeco commented 9 years ago
$details->append(new Moneybird\Invoice\Detail(array(
            'amount' => 1, 
            'description' => 'Description',
            'price' => $price,
            'taxRateId' => TAXRATEID_HIGH,
            'pricesAreInclTax' => true,
 )));

I used the code above and it did not work.

pluijm commented 9 years ago

pricesAreInclTax is a property of Moneybird\Invoice, not Moneybird\Invoice\Detail

hiddeco commented 9 years ago

My bad.