mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 13:44:06 -08:00
puts textY outside of the forloop
This commit is contained in:
parent
c0215baca5
commit
b7850ab839
|
@ -164,18 +164,17 @@ class DefaultLabel extends RectangleSheet
|
|||
$fieldsDone = 0;
|
||||
|
||||
if ($settings->labels_display_name && $fieldsDone < $this->getSupportFields()) {
|
||||
foreach($record->get('fields') as $field)
|
||||
if ($asset->name) {
|
||||
foreach ($record->get('fields') as $field){
|
||||
static::writeText(
|
||||
$pdf, $field['label'][0].': '.$field['value'],
|
||||
$pdf, $field['label'][0] . ': ' . $field['value'],
|
||||
$textX1, $textY,
|
||||
'freesans', '', $this->textSize, 'L',
|
||||
$textW, $this->textSize,
|
||||
true, 0
|
||||
);
|
||||
$textY += $this->textSize + self::TEXT_MARGIN;
|
||||
$fieldsDone++;
|
||||
}
|
||||
}
|
||||
$textY += $this->textSize + self::TEXT_MARGIN;
|
||||
$fieldsDone++;
|
||||
}
|
||||
// if ($settings->labels_display_company_name && $fieldsDone < $this->getSupportFields()) {
|
||||
// if ($asset->company) {
|
||||
|
|
Loading…
Reference in a new issue