UNPKG

@accounter/server

Version:
73 lines 2.16 kB
export var EntryType; (function (EntryType) { /** * Sales – "regular" sale * identified commercial customer * עסקה רגילה - מזוהה * */ EntryType["SALE_REGULAR"] = "S1"; /** * Sales – "Zero Value/Exempt" sale * not export * עסקה אפס - מזוהה * */ EntryType["SALE_ZERO_OR_EXEMPT"] = "S2"; /** * Sales – for unidentified (private) customer * /unidentified-cash * register aggregation etc * עסקה רגילה - לא מזוהה * */ EntryType["SALE_UNIDENTIFIED_CUSTOMER"] = "L1"; /** * Sales – for unidentified Zero Value/Exempt * private customer – aggregated * עסקה אפס - לא מזוהה * */ EntryType["SALE_UNIDENTIFIED_ZERO_OR_EXEMPT"] = "L2"; /** * Sales – self invoice * חשבונית עצמית (עסקה) * */ EntryType["SALE_SELF_INVOICE"] = "M"; /** * Sales – export * */ EntryType["SALE_EXPORT"] = "Y"; /** * Sales – Palestinian Authority customer. Palestinian customer – Invoice I * לקוח רש"פ * */ EntryType["SALE_PALESTINIAN_CUSTOMER"] = "I"; /** * Input – "regular" from Israeli Supplier * תשומה רגילה * */ EntryType["INPUT_REGULAR"] = "T"; /** * Input – Petty Cash. Various suppliers – Petty Cash * קופה קטנה * */ EntryType["INPUT_PETTY_CASH"] = "K"; /** * Input – Import. Overseas supplier * רשימון יבוא * */ EntryType["INPUT_IMPORT"] = "R"; /** * Input – Supplier from Palestinian Authority. Palestinian supplier – Invoice P * ספק רש"פ * */ EntryType["INPUT_PALESTINIAN_SUPPLIER"] = "P"; /** * Input – Single document by law. Such as Import entry, bank document etc. * מסמך אחר * */ EntryType["INPUT_SINGLE_DOC_BY_LAW"] = "H"; /** * Input – self invoice * חשבונית עצמית (תשומה) * */ EntryType["INPUT_SELF_INVOICE"] = "C"; })(EntryType || (EntryType = {})); //# sourceMappingURL=types.js.map