feat: เปลี่ยน สถานะของ สินค้าและบริการ

This commit is contained in:
Net 2024-06-24 14:29:31 +07:00
parent fe2fa5e4bc
commit 247549e176
2 changed files with 31 additions and 3 deletions

View file

@ -335,6 +335,21 @@ const itemCard = [
},
];
async function toggleStatusProduct(id: string, status: Status) {
await editProduct(id, {
status: status === 'INACTIVE' ? 'ACTIVE' : 'INACTIVE',
});
await fetchListOfProduct(currentIdType.value);
}
async function toggleStatusService(id: string, status: Status) {
await editService(id, {
status: status === 'INACTIVE' ? 'ACTIVE' : 'INACTIVE',
});
await fetchListOfService();
}
async function toggleStatusType(id: string, status: Status) {
await editProductServiceType(id, {
status: status === 'INACTIVE' ? 'ACTIVE' : 'INACTIVE',
@ -1202,6 +1217,11 @@ watch(currentStatus, async () => {
typeProduct="product"
:title="i.name"
:isDisabled="i.status === 'INACTIVE' ? true : false"
@toggleStatus="
() => {
toggleStatusProduct(i.id, i.status);
}
"
@menuViewDetail="
() => {
currentIdProduct = i.id;
@ -1255,6 +1275,11 @@ watch(currentStatus, async () => {
:title="i.name"
:isDisabled="i.status === 'INACTIVE' ? true : false"
:created-at="i.createdAt"
@toggleStatus="
() => {
toggleStatusService(i.id, i.status);
}
"
@menuViewDetail="
() => {
currentIdService = i.id;