Jump to content

Где генерируется PDF


Recommended Posts

Можете подробнее описать как решили проблему. Новичкам пригодится.

 

Моя задача была следующей, нужно было из PDF файла заказа убрать отображение страны и области. За генерацию этого самого файла отвечает PDF.php, который находится в папке Classes. Открываем его и комментим то что нам не нужно. В моем случае нужно было закомментить две строчки кода:

 

$pdf->Cell($width, 10, Tools::iconv('utf-8', self::encoding(), $delivery_address->country.($deliveryState ? ' - '.$deliveryState->name : '')), 0, 'L');
$pdf->Cell($width, 10, Tools::iconv('utf-8', self::encoding(), $invoice_address->country.($invoiceState ? ' - '.$invoiceState->name : '')), 0, 'L');

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...