hurah/invoice

基于wkhtmltopdf和twig的Hurah简单发票生成器。


README

基于twig模板引擎和wkhtmltopdf的Hurah发票生成库。

翻译

可以通过传递包含翻译的数组到Environment对象来翻译发票。如果翻译缺失,将显示默认值,该值也作为键。

$translation = [
    'VAT percentage' => 'BTW percentage'
];
$structure = new Structure();
$structure->setInvoice($yourInvoiceData);
$environment = $structure->getEnvironment();
$environment->setTranslation($translation);

// See tests for full invoice generation example.
{{ 'VAT percentage'|translate }} "BTW percentage" 
{{ 'I am missing'|translate }} becomes "I am missing" 

circleci