Skip to content

Commit

Permalink
shopfloor_mobile: display vendor code in single_pack_transfer card
Browse files Browse the repository at this point in the history
  • Loading branch information
JuMiSanAr authored and sebalix committed Jan 9, 2024
1 parent c114af4 commit 595f222
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions shopfloor_mobile/static/wms/src/scenario/single_pack_transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,28 @@ const SinglePackTransfer = {
:card_color="utils.colors.color_for('screen_step_done')"
>
<template v-slot:after_details>
<v-card-subtitle>
<v-card-subtitle class="pb-0">
<span class="font-weight-bold">Weight:</span>
<span>
{{ _get_pack_weight() }}
</span>
</v-card-subtitle>
<v-card-text class="details pt-0">
<div v-for="product in state.data.products" class="field-detail">
{{ product.display_name}}
<div v-for="product in state.data.products" class="field-detail pt-2">
<div>
<span class="font-weight-bold">Product:</span>
<span>
{{ product.display_name }}
</span>
</span>
</div>
<div class='ml-2'>
<span class="font-weight-bold">Vendor code:</span>
<span>
{{ product.supplier_code }}
</span>
</span>
</div>
</div>
</v-card-text>
</template>
Expand Down

0 comments on commit 595f222

Please sign in to comment.