-
Notifications
You must be signed in to change notification settings - Fork 0
/
invf-inv-create
executable file
·80 lines (65 loc) · 1.08 KB
/
invf-inv-create
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/bash
#generated by gen-scripts.r defined by definitions.r
usage()
{
cat <<EOF
usage: $0 options
Creates an invoice head.
options:
-n Docnum (required)
-c Contact ID (required)
-d Date sent (required)
-p Payment deadline (required)
-s Payment deadline (required)
-f Response format: json, csv, html, xml (optional)
EOF
}
NVAL="11-0001"
CVAL=
DVAL=
PVAL=
SVAL=
FVAL="json"
while getopts hn:c:d:p:s:f: OPTION
do
case $OPTION in
h)
usage
exit 1
;;
n)
NVAL=$OPTARG
;;
c)
CVAL=$OPTARG
;;
d)
DVAL=$OPTARG
;;
p)
PVAL=$OPTARG
;;
s)
SVAL=$OPTARG
;;
f)
FVAL=$OPTARG
;;
?)
usage
exit
;;
esac
done
if [[ -z $NVAL ]] || [[ -z $CVAL ]] || [[ -z $DVAL ]] || [[ -z $PVAL ]] || [[ -z $SVAL ]]
then
usage
cat <<EOF
- One or more of required params are missing.
EOF
exit 1
fi
curl -k \
-u `cat .invfpwd`:x \
-d "title=${NVAL}&id_partner=${CVAL}&date_sent=${DVAL}&date_to_pay=${PVAL}&date_served=${SVAL}" \
"https://www.cebelca.biz/API?_r=invoice-sent&_m=insert-into&_f=${FVAL}"