25 lines
651 B
Plaintext
25 lines
651 B
Plaintext
<%@ language = "JavaScript" %>
|
|
<% /*
|
|
$Revision$
|
|
$Id$
|
|
|
|
File: api_invoices.asp
|
|
|
|
Description: FIN_FACTUUR API
|
|
Parameters:
|
|
Context: Door een remote systeem (geen persoon) om info uit FACILITOR te halen aan te roepen
|
|
|
|
Notes:
|
|
*/
|
|
DOCTYPE_Disable = true;
|
|
ANONYMOUS_Allowed = 1; // Eigenlijk niet waar. We regelen echter alles zelf
|
|
THIS_FILE = "appl/api2/api_invoices.asp";
|
|
|
|
%>
|
|
<!-- #include file="../Shared/common.inc" -->
|
|
<!-- #include file="./api2_rest.inc" -->
|
|
<!-- #include file="./model_invoices.inc" -->
|
|
<%
|
|
api2_rest.process(model_invoices);
|
|
%><% ASPPAGE_END(); %>
|