Romania Invoice

Romania Invoice

Changes to standard fields

  • lines[].unit is required
  • recipient.address.line1 is required.
  • recipient.address.city is required.
  • recipient.address.state is required.
  • recipient.address.postalCode is required.

Romania-specific fields

type Invoice {
  // ...everything from invoice
  lines: [
    { 
      // ..other line item fields
      unit: UnitsOfMeasure;
    }
  ];
  recipient: {
    // ...everything from invoice.recipient,
    companyId?: string;
  },
  customInfo?: {
    rou?: {
      dueDate?: string;
    }
  }
};

NameTypeRequiredDescription
customInfo.rou.dueDatestring (ISO 8601 date)YesDue date of invoice
lines[].unitstringYesA value from an enumerated list as outlined on Units of Measure
recipient.companyIdstringNoRegistered company ID
recipient.address.line1stringYesAddress line 1 (Street address/PO Box/Company name).
recipient.address.citystringYesCity name. If the city is Bucharest, then the city Sector Code needs to be provided, e.g. Sector 5
recipient.address.statestringYesCounty code as per ISO3166-2:RO, e.g. RO-AB. This also includes the city of Bucharest (RO-B)
recipient.address.postalCodestringYesZIP or postal code

Example CSV file

Invoice - Romania.csv