Web Documents
呢個 project 只做超簡單 SSR 文件頁,唔做 auth,唔拆 component。
Pages
- /oneflash-quotation `POST only`
- /oneflash-invoice `POST only`
- /oneflash-receipt `POST only`
POST Flow
每個 document page 都只接受 `POST` JSON,收到 body 之後會喺 SSR 直接 render HTML。
curl -X POST "http://localhost:3000/oneflash-invoice" \
-H "Content-Type: application/json" \
-d "{\"document_type\":\"invoice\",\"meta\":{\"document_no\":\"Quo/R(001)8687\"},\"client\":{\"name\":\"恩懿工程有限公司\"},\"items\":[{\"title\":\"網站設計服務\",\"content\":\"首頁、產品頁、聯絡頁\",\"qty\":1,\"price\":5600,\"discount\":0}]}"