-- name: CreatePurchaseOrder :one
INSERT INTO purchase_order (
  merchant_id, 
  supplier_id,
  code,
  is_paid,
  total,
  paid_nominal,
  note
) VALUES (
  $1, $2, $3, $4, $5, $6, $7
)
RETURNING *;