Merge pull request 'Adicionar método de pago a instrucciones de planilla de una compra #35' (#36) from add_payment_method_summary_purchase_#35 into main
Reviewed-on: #36
This commit is contained in:
@@ -52,6 +52,7 @@
|
|||||||
<td>{{ item.id }}</td>
|
<td>{{ item.id }}</td>
|
||||||
<td>{{ item.date }}</td>
|
<td>{{ item.date }}</td>
|
||||||
<td><span v-if="item.customer">{{ item.customer.name }}</span></td>
|
<td><span v-if="item.customer">{{ item.customer.name }}</span></td>
|
||||||
|
<td><span v-if="item.payment_method">{{ item.payment_method }}</span></td>
|
||||||
<td><span v-if="item.lines">{{ currencyFormat(calculateTotal(item.lines)) }}</span></td>
|
<td><span v-if="item.lines">{{ currencyFormat(calculateTotal(item.lines)) }}</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</template>
|
</template>
|
||||||
@@ -87,6 +88,7 @@
|
|||||||
{title: 'Compra', value: 'id'},
|
{title: 'Compra', value: 'id'},
|
||||||
{title: 'Fecha', value: 'date'},
|
{title: 'Fecha', value: 'date'},
|
||||||
{title: 'Nombre', value: 'customer.name'},
|
{title: 'Nombre', value: 'customer.name'},
|
||||||
|
{title: 'Método de pago', value: 'payment_method'},
|
||||||
{title: 'Valor', value: ''},
|
{title: 'Valor', value: ''},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user