updated
This commit is contained in:
		| @@ -44,7 +44,9 @@ | ||||
|             <tr v-for="oil in deliveries" :key="oil['id']"> | ||||
|               <td>{{ oil['id'] }} </td> | ||||
|               <router-link :to="{ name: 'customerProfile', params: { id: oil['customer_id'] } }"> | ||||
|                 <td>{{ oil['customer_name'] }} </td> | ||||
|                 <td>  | ||||
|                   <div class="hover:text-accent">{{ oil['customer_name'] }} </div>  | ||||
|                 </td> | ||||
|               </router-link> | ||||
|               <td> | ||||
|                 <div v-if="oil['delivery_status'] == 0">Waiting</div> | ||||
| @@ -84,8 +86,9 @@ | ||||
|                 <router-link :to="{ name: 'deliveryEdit', params: { id: oil['id'] } }"> | ||||
|                   <button class="btn btn-accent btn-sm">Edit</button> | ||||
|                 </router-link> | ||||
|                 <button @click.prevent="deleteCall(oil['id'])" class="btn btn-accent btn-sm">Delete</button> | ||||
|                  | ||||
|                 <button @click.prevent="printTicket(oil['id'])" class="btn btn-accent btn-sm">Print</button> | ||||
|                 <button @click.prevent="deleteCall(oil['id'])" class="btn btn-error btn-sm">Delete</button> | ||||
|               </td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user