插入代码在1.6中工作的1.7不起作用

时间:2018-01-28 13:39:00

标签: barcode prestashop-1.7

我有一个Prestashop 1.6模块,它在一个点上准备了带条形码的PDF。 同样的模块我升级到1.7但现在PDF生成没有条形码。我没有更改模板和控制器中的任何内容,但条形码没有出现。

我按照this链接准备了1.6版的条形码。

以下是我的控制器代码,其中准备了条形码。

map:cameraZoom="13"

以下是模板代码,

// Initiat PDF class
$pdf = new PDFGenerator((bool)Configuration::get('PS_PDF_USE_CACHE'));

// Prepare barcode
$barcode_params = $pdf->serializeTCPDFtagParameters(array(
   '123456789',
  'C39',
  '',
  '',
  50,
  20,
  0.2,
  array(
   'position'=>'S',
   'border'=>false,
   'padding'=>0,
   'fgcolor'=>array(0,0,0),
   'bgcolor'=>array(255,255,255),
   'text'=>true,
   'font'=>'Helvetica',
   'fontsize'=>8,
   'stretchtext'=>0),
   'N'));

非常感谢任何建议。

1 个答案:

答案 0 :(得分:0)

好的,我自己解决了这个问题。

但不是这种方法。由于某种原因

<tcpd method="write1DBarcode" ... ' 

似乎不起作用。

所以我做的是我绕过'HTMLTemplate ..'类创建和智能模板一起用于标签,而是使用普通方法使用TCPD类的本机函数输出PDF自定义HTML标签。

所以这是我用来制作PDF标签的代码。

$style = array(
'position' => 'C',
'align' => 'C',
'stretch' => false,
'fitwidth' => true,
'cellfitalign' => '',
'border' => true,
'hpadding' => 'auto',
'vpadding' => 'auto',
'fgcolor' => array(0,0,0),
'bgcolor' => array(255,255,255),
'text' => true,
'font' => 'helvetica',
'fontsize' => 8,
'stretchtext' => 4
);

$html = '<html><head><title></title><style>table { border-collapse: 
collapse;font-family:arial;}td {padding: 10px; vertical-align: center;}';
$html .= '</style></head><body>';

foreach ($orders_array as $order)
{
 $html = $this->prepare_html_label($order); //  this is where my html 
 template is prepared with actual values
 $pdf->setXY(93,472);
 $pdf->Ln(5);
 $pdf->write1DBarcode('*'.$order['awb'].'*', 'C128', '', '', '', 18, 0.4, 
 $style, 'N');
 $pdf->Ln(10);
 $pdf->writeHTML($html, true, false, true, false, '');
}

$pdf->Output('labels.pdf', 'D');
}


Problem solved.! 
Hope this helps some one.