Skip to content

Commit

Permalink
sf_mobile: checkout handle package_allowed param
Browse files Browse the repository at this point in the history
  • Loading branch information
TDu committed Nov 17, 2023
1 parent 240a521 commit 6a8f1c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shopfloor_mobile/static/wms/src/scenario/checkout.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ const Checkout = {
:key="make_state_component_key(['detail-picking-select'])"
/>
<div class="button-list button-vertical-list full">
<v-row align="center">
<v-row align="center" v-if="state.data.package_allowed">
<v-col class="text-center" cols="12">
<btn-action
@click="state.on_existing_pack"
:disabled="_.isEmpty(selected_lines())"
>Existing pack</btn-action>
</v-col>
</v-row>
<v-row align="center">
<v-row align="center" v-if="state.data.package_allowed">
<v-col class="text-center" cols="12">
<btn-action
@click="state.on_new_pack"
Expand Down

0 comments on commit 6a8f1c5

Please sign in to comment.