コード例 #1
0
def dumploopinvoice():
    data = invoice_call()
    app.logger.debug(data)
    return render_template("loopinvoice.html", invoice=data)
コード例 #2
0
def jsoninvoice():
    data = invoice_call()
    print(data)
    return jsonify(data), 200
コード例 #3
0
def dumpinvoice():
    return render_template("dump.html", customer=invoice_call())