Browse Source

[Backend] Distributions : afficher "payé/non réglé" en version mobile #968

feature/souke
Guillaume 1 year ago
parent
commit
b8348d8dd9
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      backend/views/distribution/index.php
  2. +1
    -1
      backend/web/js/vuejs/distribution-index.js

+ 1
- 1
backend/views/distribution/index.php View File



<span class="glyphicon glyphicon-time" title="Paiement automatique" v-if="order.auto_payment && producer && producer.credit && (order.amount_paid == 0 || order.amount_paid < order.amount)"></span> <span class="glyphicon glyphicon-time" title="Paiement automatique" v-if="order.auto_payment && producer && producer.credit && (order.amount_paid == 0 || order.amount_paid < order.amount)"></span>
</div> </div>
<script type="text/x-template" id="order-form-template">
</script>


<!-- template for the order-form component --> <!-- template for the order-form component -->
<script type="text/x-template" id="order-form-template"> <script type="text/x-template" id="order-form-template">

+ 1
- 1
backend/web/js/vuejs/distribution-index.js View File



Vue.component('modal', { Vue.component('modal', {
template: '#modal-template' template: '#modal-template'
})
});


Vue.component('order-form',{ Vue.component('order-form',{
props: ['date', 'dateFormat', 'pointsSale', 'idActivePointSale', 'meansPayment', 'users', 'products', 'order', 'producer', 'loadingUpdateProductOrder'], props: ['date', 'dateFormat', 'pointsSale', 'idActivePointSale', 'meansPayment', 'users', 'products', 'order', 'producer', 'loadingUpdateProductOrder'],

Loading…
Cancel
Save