- Открыть созданный шаблон.
- Перейти в режим редактирования:
...
table.main-info td {
border: 1px solid #222B35; - Рамка вокруг таблицы
padding: 2px 5px; - Поля вокруг текста
white-space: nowrap; - устанавливает, как отображать пробелы между словами. Пробелы не учитываются, переносы строк в коде HTML игнорируются, весь текст отображается одной строкой; вместе с тем, добавление тега <br> переносит текст на новую строку.
text-align: left; - выравнивание текста
}
...
table.vehicle tfoot {
border-top: 1px solid #222B35;
}
Смотрим:
Добавление логотипа компании
Для того, чтобы добавить логотип компании к шаблону подтверждения доставки, прежде всего нужно совершить несколько подготовительх шагов.
...
Так выглядит результат:
Работа с функциями
Helpers are special attributes that help to aggregate different functions in POD or Manifest templates to show additional parameters. The Helpers block is located at the bottom of the parameters section on the template edit screenФункции - это специальные атрибуты, помогающие аггрегировать данные по различным параметрам. Блок Функции находится внизу списка параметров на экране редактирования шаблона.
The list of helpers is the same for both POD and Manifest templates. It includes the following parameters:
- sum - shows the specific quantity of any listed elements (items, runs etc.). Here you need to specify the summed element (array) and the specific quantity. For instance, the planned/actual quantity of order items.
- avg - shows the average quantity of any listed elements (items, runs etc.)
- count - shows the total quantity of any listed elements (items, runs etc.)
- range - use this helper, if you need some data to be repeated several times (text, numbers etc.). It accepts up to three parameters: from, to, step.
- format - customises the date and time format. For instance, if you want to set the time in hours and minutes 'HH:mm' or in hours, minutes and seconds 'HH:mm:ss'.
- translate - shows the specified parameter in its proper localisation.
...
Пример применения функций
For example, we want the planned and actual quantity of order items to be displayed on our POD. To do it:
...