package models; public class InvoiceLine { public String brudd = ""; public String foretak = "MET"; // MET public String resknr; // customer.customer_number public String periode; // yyMM public String bildato; // yyyyddMM public String varref; // brukers fulle navn + telefonnr public String kunref; // po_calloff public String ordre; // met_ref public String varenr; // 30305 || T public String tekst; // (o.alias || p.navn ) || "Vær vennlig å oppgi fakturanummer ved betaling" public String lktodel2; // k2 public String lktodel3; // k3 public int antall; // antall varsel public int sats; // produkt.pris public InvoiceLine() { } public InvoiceLine(String resknr, String periode, String bildato, String varref, String kunref, String ordre, String varenr, String tekst, String lktodel2, String lktodel3, int antall, int sats) { this.resknr = resknr; this.periode = periode; this.bildato = bildato; this.varref = varref; this.kunref = kunref; this.ordre = ordre; this.varenr = varenr; this.tekst = tekst; this.lktodel2 = lktodel2; this.lktodel3 = lktodel3; this.antall = antall; this.sats = sats; } }