@5stones/onix
Version:
A strongly typed library for parsing ONIX feeds.
34 lines (33 loc) • 1.82 kB
text/typescript
// https://ns.editeur.org/onix/en/58
export enum PriceType {
_01 = '01', // RRP excluding tax
_02 = '02', // RRP including tax
_03 = '03', // FRP excluding tax
_04 = '04', // FRP including tax
_05 = '05', // Supplier’s Net price excluding tax
_06 = '06', // Supplier’s Net price excluding tax: rental goods
_07 = '07', // Supplier’s Net price including tax
_08 = '08', // Supplier’s alternative Net price excluding tax
_09 = '09', // Supplier’s alternative net price including tax
_11 = '11', // Special sale RRP excluding tax
_12 = '12', // Special sale RRP including tax
_13 = '13', // Special sale fixed retail price excluding tax
_14 = '14', // Special sale fixed retail price including tax
_15 = '15', // Supplier’s net price for special sale excluding tax
_17 = '17', // Supplier’s net price for special sale including tax
_21 = '21', // Pre-publication RRP excluding tax
_22 = '22', // Pre-publication RRP including tax
_23 = '23', // Pre-publication fixed retail price excluding tax
_24 = '24', // Pre-publication fixed retail price including tax
_25 = '25', // Supplier’s pre-publication net price excluding tax
_27 = '27', // Supplier’s pre-publication net price including tax
_31 = '31', // Freight-pass-through RRP excluding tax
_32 = '32', // Freight-pass-through billing price excluding tax
_33 = '33', // Importer’s Fixed retail price excluding tax
_34 = '34', // Importer’s Fixed retail price including tax
_35 = '35', // Nominal gratis copy value for customs purposes, excluding tax
_36 = '36', // Nominal value for claims purposes, excluding tax
_37 = '37', // Nominal value for customs purposes, excluding tax
_41 = '41', // Publishers retail price excluding tax
_42 = '42', // Publishers retail price including tax
}