-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14491 from PP-JN-RL/patch-1
Added Dymo Labelwriter 1933081
- Loading branch information
Showing
1 changed file
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
<?php | ||
|
||
namespace App\Models\Labels\Tapes\Dymo; | ||
|
||
|
||
class LabelWriter_1933081 extends LabelWriter | ||
{ | ||
private const BARCODE_MARGIN = 1.80; | ||
private const TAG_SIZE = 2.80; | ||
private const TITLE_SIZE = 2.80; | ||
private const TITLE_MARGIN = 0.50; | ||
private const LABEL_SIZE = 2.80; | ||
private const LABEL_MARGIN = - 0.35; | ||
private const FIELD_SIZE = 2.80; | ||
private const FIELD_MARGIN = 0.15; | ||
|
||
public function getUnit() { return 'mm'; } | ||
public function getWidth() { return 89; } | ||
public function getHeight() { return 25; } | ||
public function getSupportAssetTag() { return true; } | ||
public function getSupport1DBarcode() { return true; } | ||
public function getSupport2DBarcode() { return true; } | ||
public function getSupportFields() { return 5; } | ||
public function getSupportLogo() { return false; } | ||
public function getSupportTitle() { return true; } | ||
|
||
public function preparePDF($pdf) {} | ||
|
||
public function write($pdf, $record) { | ||
$pa = $this->getPrintableArea(); | ||
|
||
$currentX = $pa->x1; | ||
$currentY = $pa->y1; | ||
$usableWidth = $pa->w; | ||
|
||
$barcodeSize = $pa->h - self::TAG_SIZE; | ||
|
||
if ($record->has('barcode2d')) { | ||
static::writeText( | ||
$pdf, $record->get('tag'), | ||
$pa->x1, $pa->y2 - self::TAG_SIZE, | ||
'freesans', 'b', self::TAG_SIZE, 'C', | ||
$barcodeSize, self::TAG_SIZE, true, 0 | ||
); | ||
static::write2DBarcode( | ||
$pdf, $record->get('barcode2d')->content, $record->get('barcode2d')->type, | ||
$currentX, $currentY, | ||
$barcodeSize, $barcodeSize | ||
); | ||
$currentX += $barcodeSize + self::BARCODE_MARGIN; | ||
$usableWidth -= $barcodeSize + self::BARCODE_MARGIN; | ||
} else { | ||
static::writeText( | ||
$pdf, $record->get('tag'), | ||
$pa->x1, $pa->y2 - self::TAG_SIZE, | ||
'freesans', 'b', self::TAG_SIZE, 'R', | ||
$usableWidth, self::TAG_SIZE, true, 0 | ||
); | ||
} | ||
|
||
if ($record->has('title')) { | ||
static::writeText( | ||
$pdf, $record->get('title'), | ||
$currentX, $currentY, | ||
'freesans', 'b', self::TITLE_SIZE, 'L', | ||
$usableWidth, self::TITLE_SIZE, true, 0 | ||
); | ||
$currentY += self::TITLE_SIZE + self::TITLE_MARGIN; | ||
} | ||
|
||
foreach ($record->get('fields') as $field) { | ||
static::writeText( | ||
$pdf, (($field['label']) ? $field['label'].' ' : '') . $field['value'], | ||
$currentX, $currentY, | ||
'freesans', '', self::FIELD_SIZE, 'L', | ||
$usableWidth, self::FIELD_SIZE, true, 0, 0.3 | ||
); | ||
$currentY += self::FIELD_SIZE + self::FIELD_MARGIN; | ||
} | ||
|
||
if ($record->has('barcode1d')) { | ||
static::write1DBarcode( | ||
$pdf, $record->get('barcode1d')->content, $record->get('barcode1d')->type, | ||
$currentX, $barcodeSize + self::BARCODE_MARGIN, $usableWidth - self::TAG_SIZE, self::TAG_SIZE | ||
); | ||
} | ||
} | ||
|
||
} |