design invoice

This commit is contained in:
hamid zarghami
2026-02-21 11:38:39 +03:30
parent 7d702c41f8
commit 8a0a62b6d7
10 changed files with 427 additions and 5 deletions
@@ -0,0 +1,7 @@
import axios from "@/config/axios";
import type { CreatePreInvoiceType } from "../types/Types";
export const createPreInvoice = async (params: CreatePreInvoiceType) => {
const { data } = await axios.post("/admin/pre-invoice", params);
return data;
};