4213-item.summary #1011

Merged
joan merged 5 commits from 4213-item.summary into dev 2022-07-01 09:25:07 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit d49a2666f1 - Show all commits

View File

@ -1 +1 @@
ALTER TABLE `vn`.`item` MODIFY COLUMN description varchar(512) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL NULL;
ALTER TABLE `vn`.`item` MODIFY COLUMN description TEXT CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL NULL;
vicent marked this conversation as resolved Outdated
Outdated
Review

Puedes utilizar tipo text, en vez de un varchar()

Puedes utilizar tipo text, en vez de un varchar()

View File

@ -117,7 +117,7 @@
value="{{tag.value}}">
</vn-label-value>
</vn-one>
<vn-one name="description">
<vn-one name="description" ng-if="$ctrl.summary.item.description">
vicent marked this conversation as resolved Outdated
Outdated
Review

Quizas estaría bien ocultar el bloque si no tiene una descripción, para evitar que se muestre un encabezado pero sin contenido.

Quizas estaría bien ocultar el bloque si no tiene una descripción, para evitar que se muestre un encabezado pero sin contenido.
<h4 ng-show="$ctrl.isBuyer">
<a
ui-sref="item.card.basicData({id:$ctrl.item.id})"