mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Rework TZe labels for Asset Tag support
This commit is contained in:
parent
f5fac50e91
commit
53513d93fa
|
@ -4,16 +4,16 @@ namespace App\Models\Labels\Tapes\Brother;
|
||||||
|
|
||||||
class TZe_12mm_A extends TZe_12mm
|
class TZe_12mm_A extends TZe_12mm
|
||||||
{
|
{
|
||||||
private const BARCODE_SIZE = 2.50;
|
private const BARCODE_SIZE = 3.20;
|
||||||
private const BARCODE_MARGIN = 0.30;
|
private const BARCODE_MARGIN = 0.30;
|
||||||
private const FIELD_SIZE_MOD = 1.00;
|
private const TEXT_SIZE_MOD = 1.00;
|
||||||
|
|
||||||
public function getUnit() { return 'mm'; }
|
public function getUnit() { return 'mm'; }
|
||||||
public function getWidth() { return 50.0; }
|
public function getWidth() { return 50.0; }
|
||||||
public function getSupportAssetTag() { return false; }
|
public function getSupportAssetTag() { return true; }
|
||||||
public function getSupport1DBarcode() { return true; }
|
public function getSupport1DBarcode() { return true; }
|
||||||
public function getSupport2DBarcode() { return false; }
|
public function getSupport2DBarcode() { return false; }
|
||||||
public function getSupportFields() { return 2; }
|
public function getSupportFields() { return 1; }
|
||||||
public function getSupportLogo() { return false; }
|
public function getSupportLogo() { return false; }
|
||||||
public function getSupportTitle() { return false; }
|
public function getSupportTitle() { return false; }
|
||||||
|
|
||||||
|
@ -29,25 +29,26 @@ class TZe_12mm_A extends TZe_12mm
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$fields = $record->get('fields');
|
$currentY = $pa->y1 + self::BARCODE_SIZE + self::BARCODE_MARGIN;
|
||||||
$y = $pa->y1 + self::BARCODE_SIZE + self::BARCODE_MARGIN;
|
$usableHeight = $pa->h - self::BARCODE_SIZE - self::BARCODE_MARGIN;
|
||||||
$realSize = $pa->h - self::BARCODE_SIZE - self::BARCODE_MARGIN;
|
$fontSize = $usableHeight + self::TEXT_SIZE_MOD;
|
||||||
$fontSize = $realSize + self::FIELD_SIZE_MOD;
|
|
||||||
|
$tagWidth = $pa->w / 3;
|
||||||
|
$fieldWidth = $pa->w / 3 * 2;
|
||||||
|
|
||||||
if ($fields->count() >= 1) {
|
|
||||||
static::writeText(
|
static::writeText(
|
||||||
$pdf, $fields->values()->get(0),
|
$pdf, $record->get('tag'),
|
||||||
$pa->x1, $y,
|
$pa->x1, $currentY,
|
||||||
'freemono', 'B', $fontSize, 'L',
|
'freemono', 'b', $fontSize, 'L',
|
||||||
$pa->w, $realSize, true, 0, 0.1
|
$tagWidth, $usableHeight, true, 0, 0
|
||||||
);
|
);
|
||||||
}
|
|
||||||
if ($fields->count() >= 2) {
|
if ($record->get('fields')->count() >= 1) {
|
||||||
static::writeText(
|
static::writeText(
|
||||||
$pdf, $fields->values()->get(1),
|
$pdf, $record->get('fields')->values()->get(0),
|
||||||
$pa->x1, $y,
|
$pa->x1 + ($tagWidth), $currentY,
|
||||||
'freemono', 'B', $fontSize, 'R',
|
'freemono', 'b', $fontSize, 'R',
|
||||||
$pa->w, $realSize, true, 0, 0.1
|
$fieldWidth, $usableHeight, true, 0, 0
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,16 +5,17 @@ namespace App\Models\Labels\Tapes\Brother;
|
||||||
class TZe_24mm_A extends TZe_24mm
|
class TZe_24mm_A extends TZe_24mm
|
||||||
{
|
{
|
||||||
private const BARCODE_MARGIN = 1.40;
|
private const BARCODE_MARGIN = 1.40;
|
||||||
|
private const TAG_SIZE = 2.80;
|
||||||
private const TITLE_SIZE = 2.80;
|
private const TITLE_SIZE = 2.80;
|
||||||
private const TITLE_MARGIN = 0.60;
|
private const TITLE_MARGIN = 0.50;
|
||||||
private const LABEL_SIZE = 1.90;
|
private const LABEL_SIZE = 2.00;
|
||||||
private const LABEL_MARGIN = - 0.30;
|
private const LABEL_MARGIN = - 0.35;
|
||||||
private const FIELD_SIZE = 3.20;
|
private const FIELD_SIZE = 3.20;
|
||||||
private const FIELD_MARGIN = 0.30;
|
private const FIELD_MARGIN = 0.15;
|
||||||
|
|
||||||
public function getUnit() { return 'mm'; }
|
public function getUnit() { return 'mm'; }
|
||||||
public function getWidth() { return 65.0; }
|
public function getWidth() { return 65.0; }
|
||||||
public function getSupportAssetTag() { return false; }
|
public function getSupportAssetTag() { return true; }
|
||||||
public function getSupport1DBarcode() { return false; }
|
public function getSupport1DBarcode() { return false; }
|
||||||
public function getSupport2DBarcode() { return true; }
|
public function getSupport2DBarcode() { return true; }
|
||||||
public function getSupportFields() { return 3; }
|
public function getSupportFields() { return 3; }
|
||||||
|
@ -26,45 +27,61 @@ class TZe_24mm_A extends TZe_24mm
|
||||||
public function write($pdf, $record) {
|
public function write($pdf, $record) {
|
||||||
$pa = $this->getPrintableArea();
|
$pa = $this->getPrintableArea();
|
||||||
|
|
||||||
$x = $pa->x1;
|
$currentX = $pa->x1;
|
||||||
$y = $pa->y1;
|
$currentY = $pa->y1;
|
||||||
$w = $pa->w;
|
$usableWidth = $pa->w;
|
||||||
|
|
||||||
|
$barcodeSize = $pa->h - self::TAG_SIZE;
|
||||||
|
|
||||||
if ($record->has('barcode2d')) {
|
if ($record->has('barcode2d')) {
|
||||||
|
static::writeText(
|
||||||
|
$pdf, $record->get('tag'),
|
||||||
|
$pa->x1, $pa->y2 - self::TAG_SIZE,
|
||||||
|
'freemono', 'b', self::TAG_SIZE, 'C',
|
||||||
|
$barcodeSize, self::TAG_SIZE, true, 0
|
||||||
|
);
|
||||||
static::write2DBarcode(
|
static::write2DBarcode(
|
||||||
$pdf, $record->get('barcode2d')->content, $record->get('barcode2d')->type,
|
$pdf, $record->get('barcode2d')->content, $record->get('barcode2d')->type,
|
||||||
$x, $y, $pa->h, $pa->h
|
$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,
|
||||||
|
'freemono', 'b', self::TAG_SIZE, 'R',
|
||||||
|
$usableWidth, self::TAG_SIZE, true, 0
|
||||||
);
|
);
|
||||||
$x += $pa->h + self::BARCODE_MARGIN;
|
|
||||||
$w -= $pa->h + self::BARCODE_MARGIN;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($record->has('title')) {
|
if ($record->has('title')) {
|
||||||
static::writeText(
|
static::writeText(
|
||||||
$pdf, $record->get('title'),
|
$pdf, $record->get('title'),
|
||||||
$x, $y,
|
$currentX, $currentY,
|
||||||
'freesans', '', self::TITLE_SIZE, 'L',
|
'freesans', '', self::TITLE_SIZE, 'L',
|
||||||
$w, self::TITLE_SIZE, true, 0
|
$usableWidth, self::TITLE_SIZE, true, 0
|
||||||
);
|
);
|
||||||
$y += self::TITLE_SIZE + self::TITLE_MARGIN;
|
$currentY += self::TITLE_SIZE + self::TITLE_MARGIN;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($record->get('fields') as $label => $value) {
|
foreach ($record->get('fields') as $label => $value) {
|
||||||
static::writeText(
|
static::writeText(
|
||||||
$pdf, $label,
|
$pdf, $label,
|
||||||
$x, $y,
|
$currentX, $currentY,
|
||||||
'freesans', '', self::LABEL_SIZE, 'L',
|
'freesans', '', self::LABEL_SIZE, 'L',
|
||||||
$w, self::LABEL_SIZE, true, 0
|
$usableWidth, self::LABEL_SIZE, true, 0, 0
|
||||||
);
|
);
|
||||||
$y += self::LABEL_SIZE + self::LABEL_MARGIN;
|
$currentY += self::LABEL_SIZE + self::LABEL_MARGIN;
|
||||||
|
|
||||||
static::writeText(
|
static::writeText(
|
||||||
$pdf, $value,
|
$pdf, $value,
|
||||||
$x, $y,
|
$currentX, $currentY,
|
||||||
'freemono', 'B', self::FIELD_SIZE, 'L',
|
'freemono', 'B', self::FIELD_SIZE, 'L',
|
||||||
$w, self::FIELD_SIZE, true, 0, 0.3
|
$usableWidth, self::FIELD_SIZE, true, 0, 0.3
|
||||||
);
|
);
|
||||||
$y += self::FIELD_SIZE + self::FIELD_MARGIN;
|
$currentY += self::FIELD_SIZE + self::FIELD_MARGIN;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue