you can now print reminders.
This commit is contained in:
@@ -95,6 +95,13 @@ html {
|
||||
overflow: visible;
|
||||
z-index: 1030;
|
||||
}
|
||||
.reminderSticker {
|
||||
width: 98%;
|
||||
aspect-ratio: 1/1;
|
||||
border-style: dashed;
|
||||
border-width: 2px;
|
||||
page-break-after: always;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #fff !important;
|
||||
@@ -492,6 +499,12 @@ html[data-bs-theme="light"] .api-method:hover {
|
||||
object-fit: scale-down;
|
||||
pointer-events: none;
|
||||
}
|
||||
.lubelogger-logo-sticker {
|
||||
height: 6rem;
|
||||
width: auto;
|
||||
object-fit: scale-down;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none;
|
||||
|
||||
@@ -631,7 +631,16 @@ function printContainer(htmlData) {
|
||||
}, 500);
|
||||
}
|
||||
function printTabStickers(ids, source) {
|
||||
printContainer("");
|
||||
var vehicleId = GetVehicleId().vehicleId;
|
||||
$.post('/Vehicle/PrintRecordStickers', {
|
||||
vehicleId: vehicleId,
|
||||
recordIds: ids,
|
||||
importMode: source
|
||||
}, function (data) {
|
||||
if (data) {
|
||||
printContainer(data);
|
||||
}
|
||||
})
|
||||
}
|
||||
function exportVehicleData(mode) {
|
||||
var vehicleId = GetVehicleId().vehicleId;
|
||||
|
||||
Reference in New Issue
Block a user