form builder module

This commit is contained in:
2026-01-28 14:59:25 +03:30
parent e44a239ef0
commit 8121b27248
27 changed files with 151 additions and 129 deletions
@@ -285,10 +285,7 @@ export class OrderService {
}
async createInvoice(orderId: string) {
const order = await this.findOrderOrFail(orderId)
await this.updateStatus(orderId, OrderStatusEnum.INVOICED)
// await this.calculateOrder(order)
await this.em.flush()
}
async getOrderAsUser(userId: string, orderId: string) {