├── pos_keyboard ├── .bzr │ ├── branch │ │ ├── tags │ │ ├── format │ │ ├── last-revision │ │ └── branch.conf │ ├── checkout │ │ ├── views │ │ ├── conflicts │ │ └── format │ ├── branch-format │ ├── repository │ │ ├── format │ │ ├── pack-names │ │ ├── indices │ │ │ ├── cab2373ac0cf9a58fde5f46dd16977e8.six │ │ │ ├── cab2373ac0cf9a58fde5f46dd16977e8.cix │ │ │ ├── cab2373ac0cf9a58fde5f46dd16977e8.iix │ │ │ ├── cab2373ac0cf9a58fde5f46dd16977e8.rix │ │ │ └── cab2373ac0cf9a58fde5f46dd16977e8.tix │ │ └── packs │ │ │ └── cab2373ac0cf9a58fde5f46dd16977e8.pack │ └── README └── style.css ├── hw_escpos ├── controllers │ ├── __init__.py │ ├── main.pyc │ └── __init__.pyc ├── escpos │ ├── __init__.py │ ├── escpos.pyc │ ├── __init__.pyc │ ├── printer.pyc │ ├── constants.pyc │ └── exceptions.pyc ├── __init__.pyc ├── README.md └── __init__.py ├── hw_serialescpos ├── controllers │ ├── __init__.py │ ├── main.pyc │ └── __init__.pyc ├── escpos │ ├── __init__.py │ ├── escpos.pyc │ ├── printer.pyc │ ├── __init__.pyc │ ├── constants.pyc │ └── exceptions.pyc ├── __init__.pyc ├── README.md └── __init__.py ├── point_of_sale_enhanced-70 └── .bzr │ ├── branch-format │ ├── repository │ ├── format │ └── pack-names │ └── README ├── pos_invoice ├── __init__.pyc └── report │ ├── __init__.pyc │ ├── pos_invoice.pyc │ └── pos_invoice.sxw ├── point_of_sale ├── __init__.pyc ├── res_users.pyc ├── controllers │ ├── __init__.py │ ├── main.pyc │ └── __init__.pyc ├── res_partner.pyc ├── point_of_sale.pyc ├── wizard │ ├── pos_box.pyc │ ├── __init__.pyc │ ├── pos_confirm.pyc │ ├── pos_details.pyc │ ├── pos_discount.pyc │ ├── pos_payment.pyc │ ├── pos_open_statement.pyc │ └── pos_session_opening.pyc ├── report │ ├── __init__.pyc │ ├── pos_lines.pyc │ ├── pos_details.pyc │ ├── pos_invoice.pyc │ ├── pos_receipt.pyc │ ├── pos_report.pyc │ ├── account_statement.pyc │ ├── pos_order_report.pyc │ ├── pos_users_product.pyc │ ├── session_details.pyc │ ├── pos_payment_report.pyc │ └── user_label.xml ├── static │ ├── img │ │ ├── computer.png │ │ ├── coke-image.jpg │ │ ├── food-image.jpg │ │ ├── pils-image.jpg │ │ ├── soda-image.jpg │ │ ├── Onions-image.jpg │ │ ├── beers-image.jpg │ │ ├── carotte-image.jpg │ │ ├── chips-image.jpg │ │ ├── citron-image.jpg │ │ ├── fruits-image.jpg │ │ ├── legumes-image.jpg │ │ ├── limon-image.jpg │ │ ├── oranges-image.jpg │ │ ├── peche-image.jpg │ │ ├── pizza-image.jpg │ │ ├── poire-image.jpg │ │ ├── pomme-image.jpg │ │ ├── raisins-image.jpg │ │ ├── spa_1l-image.jpg │ │ ├── spa_2l-image.jpg │ │ ├── tomates-image.jpg │ │ ├── water-image.jpg │ │ ├── beverage-image.jpg │ │ ├── courgette-image.jpg │ │ ├── evian_1l-image.jpg │ │ ├── evian_2l-image.jpg │ │ ├── ice_cream-image.jpg │ │ ├── maes_33cl-image.jpg │ │ ├── maes_50cl-image.jpg │ │ ├── nectarine-image.jpg │ │ ├── pepsi_2l-image.jpg │ │ ├── spa_33cl-image.jpg │ │ ├── spa_50cl-image.jpg │ │ ├── boni_orange-image.jpg │ │ ├── coca_zero_1l-image.jpg │ │ ├── coca_zero_2l-image.jpg │ │ ├── evian_50cl-image.jpg │ │ ├── fruity_beers-image.jpg │ │ ├── jupiler_33cl-image.jpg │ │ ├── jupiler_50cl-image.jpg │ │ ├── leffe_9_33cl-image.jpg │ │ ├── oetker_pollo-image.jpg │ │ ├── oetker_tonno-image.jpg │ │ ├── orval_33cl-image.jpg │ │ ├── pepsi_33cl-image.jpg │ │ ├── pepsi_max_2l-image.jpg │ │ ├── perrier_1l-image.jpg │ │ ├── perrier_50cl-image.jpg │ │ ├── plain_water-image.jpg │ │ ├── raisins_noir-image.jpg │ │ ├── soda_orange-image.jpg │ │ ├── stella_33cl-image.jpg │ │ ├── stella_50cl-image.jpg │ │ ├── autres_agrumes-image.jpg │ │ ├── coca_light_1l-image.jpg │ │ ├── coca_light_2l-image.jpg │ │ ├── coca_zero_33cl-image.jpg │ │ ├── coca_zero_50cl-image.jpg │ │ ├── legumes_racine-image.jpg │ │ ├── oetker_funghi-image.jpg │ │ ├── oetker_hawaii-image.jpg │ │ ├── oetker_spinaci-image.jpg │ │ ├── orangina_1,5l-image.jpg │ │ ├── orangina_33cl-image.jpg │ │ ├── pepsi_max_33cl-image.jpg │ │ ├── pepsi_max_50cl-image.jpg │ │ ├── poivron_jaunes-image.jpg │ │ ├── poivron_rouges-image.jpg │ │ ├── poivron_verts-image.jpg │ │ ├── pomme_de_terre-image.jpg │ │ ├── pomme_jonagold-image.jpg │ │ ├── special_beers-image.jpg │ │ ├── chimay_bleu_33cl-image.jpg │ │ ├── chimay_bleu_75cl-image.jpg │ │ ├── chimay_rouge_33cl-image.jpg │ │ ├── coca_light_33cl-image.jpg │ │ ├── coca_light_50cl-image.jpg │ │ ├── coca_regular_1l-image.jpg │ │ ├── coca_regular_2l-image.jpg │ │ ├── coca_regular_33cl-image.jpg │ │ ├── coca_regular_50cl-image.jpg │ │ ├── croky_naturel_45g-image.jpg │ │ ├── croky_paprika_45g-image.jpg │ │ ├── fanta_orange_25cl-image.jpg │ │ ├── fanta_orange_2l-image.jpg │ │ ├── fanta_orange_33cl-image.jpg │ │ ├── fanta_orange_50cl-image.jpg │ │ ├── fenouil_fenouil-image.jpg │ │ ├── lays_ketchup_250g-image.jpg │ │ ├── lays_naturel_170g-image.jpg │ │ ├── lays_naturel_300g-image.jpg │ │ ├── lays_naturel_45g-image.jpg │ │ ├── lays_paprika_170g-image.jpg │ │ ├── lays_paprika_300g-image.jpg │ │ ├── lays_paprika_45g-image.jpg │ │ ├── lays_pickles_250g-image.jpg │ │ ├── leffe_blonde_33cl-image.jpg │ │ ├── leffe_brune_33cl-image.jpg │ │ ├── oetker_4formaggi-image.jpg │ │ ├── oetker_bolognese-image.jpg │ │ ├── oetker_margherita-image.jpg │ │ ├── oetker_mozzarella-image.jpg │ │ ├── oetker_prosciutto-image.jpg │ │ ├── oetker_speciale-image.jpg │ │ ├── oetker_vegetale-image.jpg │ │ ├── papillon_orange-image.jpg │ │ ├── poire_conference-image.jpg │ │ ├── poireaux_poireaux-image.jpg │ │ ├── pommes_de_terre-image.jpg │ │ ├── rochefort_8_33cl-image.jpg │ │ ├── san_pellegrino_1l-image.jpg │ │ ├── spa_et_fruit_50cl-image.jpg │ │ ├── spa_gazeuse_1,5l-image.jpg │ │ ├── spa_gazeuse_33cl-image.jpg │ │ ├── spa_gazeuse_50cl-image.jpg │ │ ├── sparkling_water-image.jpg │ │ ├── tomate_en_grappe-image.jpg │ │ ├── chaudfontaine_1,5l-image.jpg │ │ ├── chaudfontaine_33cl-image.jpg │ │ ├── chaudfontaine_50cl-image.jpg │ │ ├── coca_light_lemon_2l-image.jpg │ │ ├── ijsboerke_moka_2,5l-image.jpg │ │ ├── pomme_golden_perlim-image.jpg │ │ ├── pomme_granny_smith-image.jpg │ │ ├── rouges_noyau_fruits-image.jpg │ │ ├── autres_legumes_frais-image.jpg │ │ ├── belle_vue_kriek_25cl-image.jpg │ │ ├── boon_framboise_37,5cl-image.jpg │ │ ├── chicon_flandria_extra-image.jpg │ │ ├── coca_light_decaf_33cl-image.jpg │ │ ├── coca_light_lemon_33cl-image.jpg │ │ ├── coca_light_lemon_50cl-image.jpg │ │ ├── coca_zero_decaf_33cl-image.jpg │ │ ├── croky_bolognaise_250g-image.jpg │ │ ├── fanta_zero_orange_1,5l-image.jpg │ │ ├── fanta_zero_orange_33cl-image.jpg │ │ ├── grisette_cerise_25cl-image.jpg │ │ ├── ijsboerke_vanille_2,5l-image.jpg │ │ ├── lays_naturel_oven_150g-image.jpg │ │ ├── lays_paprika_oven_150g-image.jpg │ │ ├── lindemans_kriek_37,5cl-image.jpg │ │ ├── oignons_ail_echalotes-image.jpg │ │ ├── pepsi_max_lemon_33cl-image.jpg │ │ ├── timmermans_faro_37,5cl-image.jpg │ │ ├── ijsboerke_chocolat_2,5l-image.jpg │ │ ├── lays_light_naturel_170g-image.jpg │ │ ├── lays_light_paprika_170g-image.jpg │ │ ├── timmermans_geuze_37,5cl-image.jpg │ │ ├── timmermans_kriek_37,5cl-image.jpg │ │ ├── ijsboerke_dame_blanche_2,5l-image.jpg │ │ ├── lays_poivre_sel_oven_150g-image.jpg │ │ ├── chaudfontaine_petillante_1,5l-image.jpg │ │ ├── chaudfontaine_petillante_33cl-image.jpg │ │ ├── chaudfontaine_petillante_50cl-image.jpg │ │ ├── ijsboerke_stracciatella_2,5l-image.jpg │ │ ├── lindemans_pecheresse_37,,5cl-image.jpg │ │ └── pamplemousse_rouge_pamplemousse-image.jpg │ ├── src │ │ ├── img │ │ │ ├── bg.png │ │ │ ├── grid.png │ │ │ ├── home.png │ │ │ ├── logo.png │ │ │ ├── plus.png │ │ │ ├── scan.png │ │ │ ├── minus.png │ │ │ ├── scale.png │ │ │ ├── search.png │ │ │ ├── backspace.png │ │ │ ├── barcode.png │ │ │ ├── bc-arrow.png │ │ │ ├── scroll-up.png │ │ │ ├── steps-bg.png │ │ │ ├── bancontact.png │ │ │ ├── grid-purple.png │ │ │ ├── scroll-down.png │ │ │ ├── steps-arrow.png │ │ │ ├── bc-arrow-big.png │ │ │ ├── open-cashbox.png │ │ │ ├── pos_screenshot.jpg │ │ │ ├── search_reset.gif │ │ │ ├── touch-icon-128.png │ │ │ ├── touch-icon-196.png │ │ │ ├── validate-icon.png │ │ │ ├── headerbackground.jpg │ │ │ ├── icons │ │ │ │ └── png48 │ │ │ │ │ ├── help.png │ │ │ │ │ ├── go-next.png │ │ │ │ │ ├── invoice.png │ │ │ │ │ ├── printer.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── shut-down.png │ │ │ │ │ ├── validate.png │ │ │ │ │ ├── face-monkey.png │ │ │ │ │ ├── go-previous.png │ │ │ │ │ └── system-log-out.png │ │ │ ├── touch-icon-ipad.png │ │ │ ├── touch-icon-iphone.png │ │ │ ├── default_category_photo.png │ │ │ ├── touch-icon-ipad-retina.png │ │ │ └── touch-icon-iphone-retina.png │ │ ├── sounds │ │ │ └── error.wav │ │ ├── fonts │ │ │ ├── Inconsolata.otf │ │ │ ├── lato │ │ │ │ ├── Lato-Bla-webfont.eot │ │ │ │ ├── Lato-Bla-webfont.ttf │ │ │ │ ├── Lato-Bla-webfont.woff │ │ │ │ ├── Lato-Bol-webfont.eot │ │ │ │ ├── Lato-Bol-webfont.ttf │ │ │ │ ├── Lato-Bol-webfont.woff │ │ │ │ ├── Lato-Hai-webfont.eot │ │ │ │ ├── Lato-Hai-webfont.ttf │ │ │ │ ├── Lato-Hai-webfont.woff │ │ │ │ ├── Lato-Lig-webfont.eot │ │ │ │ ├── Lato-Lig-webfont.ttf │ │ │ │ ├── Lato-Lig-webfont.woff │ │ │ │ ├── Lato-Reg-webfont.eot │ │ │ │ ├── Lato-Reg-webfont.ttf │ │ │ │ ├── Lato-Reg-webfont.woff │ │ │ │ ├── Lato-BlaIta-webfont.eot │ │ │ │ ├── Lato-BlaIta-webfont.ttf │ │ │ │ ├── Lato-BolIta-webfont.eot │ │ │ │ ├── Lato-BolIta-webfont.ttf │ │ │ │ ├── Lato-HaiIta-webfont.eot │ │ │ │ ├── Lato-HaiIta-webfont.ttf │ │ │ │ ├── Lato-LigIta-webfont.eot │ │ │ │ ├── Lato-LigIta-webfont.ttf │ │ │ │ ├── Lato-RegIta-webfont.eot │ │ │ │ ├── Lato-RegIta-webfont.ttf │ │ │ │ ├── Lato-BlaIta-webfont.woff │ │ │ │ ├── Lato-BolIta-webfont.woff │ │ │ │ ├── Lato-HaiIta-webfont.woff │ │ │ │ ├── Lato-LigIta-webfont.woff │ │ │ │ └── Lato-RegIta-webfont.woff │ │ │ ├── font-awesome-4.0.3 │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ └── font-awesome-4.2.0 │ │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ └── xml │ │ │ └── notes.xml │ └── description │ │ ├── icon.png │ │ ├── pos_sc_01.jpg │ │ ├── pos_sc_02.jpg │ │ ├── pos_sc_03.jpg │ │ ├── pos_ui_01.png │ │ ├── pos_ui_02.png │ │ ├── pos_ui_03.png │ │ ├── pos_checkout.jpg │ │ ├── pos_devices.png │ │ ├── pos_invoice.png │ │ ├── pos_offline.png │ │ ├── pos_products.png │ │ ├── pos_customers.png │ │ ├── pos_customer_form.png │ │ ├── pos_product_form.png │ │ └── ebook-manufacturing.png ├── security │ └── .~lock.ir.model.access.csv# ├── account_bank_statement.pyc ├── doc │ ├── barcode_test_sheet.pdf │ └── barcode_test_sheet4.pdf ├── test │ ├── test_frontend.py │ └── 00_register_open.yml ├── account_statement_demo.xml └── res_partner.py ├── pos_sales_summary ├── campo input .txt ├── __init__.pyc ├── report │ ├── __init__.pyc │ ├── pos_summary.pyc │ └── so_pos_order_report.pyc ├── wizard │ ├── __init__.pyc │ └── pos_summary.pyc └── security │ └── ir.model.access.csv ├── pos_transfer ├── __init__.pyc ├── transfer.pyc ├── static │ └── src │ │ └── xml │ │ └── transfer.xml └── views │ └── templates.xml ├── pos_sales_summary_cmmi ├── campo input .txt ├── __init__.pyc ├── point_of_sale.pyc ├── report │ ├── __init__.pyc │ ├── pos_summary.pyc │ └── so_pos_order_report.pyc ├── wizard │ ├── __init__.pyc │ └── pos_summary.pyc └── security │ └── ir.model.access.csv ├── pos_sales_summary_tropical ├── campo input .txt ├── __init__.pyc ├── point_of_sale.pyc ├── report │ ├── __init__.pyc │ ├── pos_summary.pyc │ └── so_pos_order_report.pyc ├── wizard │ ├── __init__.pyc │ └── pos_summary.pyc └── security │ └── ir.model.access.csv ├── pos_sales_summary_tukis ├── campo input .txt ├── __init__.pyc ├── report │ ├── __init__.pyc │ ├── pos_summary.pyc │ └── so_pos_order_report.pyc ├── wizard │ ├── __init__.pyc │ └── pos_summary.pyc └── security │ └── ir.model.access.csv ├── point_of_sale_v9_backport ├── controllers │ ├── __init__.py │ ├── main.pyc │ └── __init__.pyc ├── __init__.pyc ├── res_users.pyc ├── res_partner.pyc ├── point_of_sale.pyc ├── wizard │ ├── pos_box.pyc │ ├── __init__.pyc │ ├── pos_confirm.pyc │ ├── pos_details.pyc │ ├── pos_discount.pyc │ ├── pos_payment.pyc │ ├── pos_open_statement.pyc │ └── pos_session_opening.pyc ├── report │ ├── __init__.pyc │ ├── pos_lines.pyc │ ├── pos_report.pyc │ ├── pos_details.pyc │ ├── pos_invoice.pyc │ ├── pos_receipt.pyc │ ├── session_details.pyc │ ├── account_statement.pyc │ ├── pos_order_report.pyc │ ├── pos_users_product.pyc │ ├── pos_payment_report.pyc │ └── user_label.xml ├── security │ └── .~lock.ir.model.access.csv# ├── static │ ├── src │ │ ├── img │ │ │ ├── bg.png │ │ │ ├── grid.png │ │ │ ├── home.png │ │ │ ├── logo.png │ │ │ ├── plus.png │ │ │ ├── scan.png │ │ │ ├── barcode.png │ │ │ ├── minus.png │ │ │ ├── scale.png │ │ │ ├── search.png │ │ │ ├── backspace.png │ │ │ ├── bc-arrow.png │ │ │ ├── scroll-up.png │ │ │ ├── steps-bg.png │ │ │ ├── bancontact.png │ │ │ ├── bc-arrow-big.png │ │ │ ├── grid-purple.png │ │ │ ├── open-cashbox.png │ │ │ ├── scroll-down.png │ │ │ ├── search_reset.gif │ │ │ ├── steps-arrow.png │ │ │ ├── pos_screenshot.jpg │ │ │ ├── touch-icon-128.png │ │ │ ├── touch-icon-196.png │ │ │ ├── validate-icon.png │ │ │ ├── headerbackground.jpg │ │ │ ├── icons │ │ │ │ └── png48 │ │ │ │ │ ├── help.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── go-next.png │ │ │ │ │ ├── invoice.png │ │ │ │ │ ├── printer.png │ │ │ │ │ ├── shut-down.png │ │ │ │ │ ├── validate.png │ │ │ │ │ ├── face-monkey.png │ │ │ │ │ ├── go-previous.png │ │ │ │ │ └── system-log-out.png │ │ │ ├── touch-icon-ipad.png │ │ │ ├── touch-icon-iphone.png │ │ │ ├── default_category_photo.png │ │ │ ├── touch-icon-ipad-retina.png │ │ │ └── touch-icon-iphone-retina.png │ │ ├── sounds │ │ │ └── error.wav │ │ ├── fonts │ │ │ ├── Inconsolata.otf │ │ │ ├── lato │ │ │ │ ├── Lato-Bla-webfont.eot │ │ │ │ ├── Lato-Bla-webfont.ttf │ │ │ │ ├── Lato-Bla-webfont.woff │ │ │ │ ├── Lato-Bol-webfont.eot │ │ │ │ ├── Lato-Bol-webfont.ttf │ │ │ │ ├── Lato-Bol-webfont.woff │ │ │ │ ├── Lato-Hai-webfont.eot │ │ │ │ ├── Lato-Hai-webfont.ttf │ │ │ │ ├── Lato-Hai-webfont.woff │ │ │ │ ├── Lato-Lig-webfont.eot │ │ │ │ ├── Lato-Lig-webfont.ttf │ │ │ │ ├── Lato-Lig-webfont.woff │ │ │ │ ├── Lato-Reg-webfont.eot │ │ │ │ ├── Lato-Reg-webfont.ttf │ │ │ │ ├── Lato-Reg-webfont.woff │ │ │ │ ├── Lato-BlaIta-webfont.eot │ │ │ │ ├── Lato-BlaIta-webfont.ttf │ │ │ │ ├── Lato-BlaIta-webfont.woff │ │ │ │ ├── Lato-BolIta-webfont.eot │ │ │ │ ├── Lato-BolIta-webfont.ttf │ │ │ │ ├── Lato-BolIta-webfont.woff │ │ │ │ ├── Lato-HaiIta-webfont.eot │ │ │ │ ├── Lato-HaiIta-webfont.ttf │ │ │ │ ├── Lato-HaiIta-webfont.woff │ │ │ │ ├── Lato-LigIta-webfont.eot │ │ │ │ ├── Lato-LigIta-webfont.ttf │ │ │ │ ├── Lato-LigIta-webfont.woff │ │ │ │ ├── Lato-RegIta-webfont.eot │ │ │ │ ├── Lato-RegIta-webfont.ttf │ │ │ │ └── Lato-RegIta-webfont.woff │ │ │ ├── font-awesome-4.0.3 │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ └── font-awesome-4.2.0 │ │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ └── xml │ │ │ └── notes.xml │ ├── img │ │ ├── computer.png │ │ ├── beers-image.jpg │ │ ├── chips-image.jpg │ │ ├── coke-image.jpg │ │ ├── food-image.jpg │ │ ├── limon-image.jpg │ │ ├── peche-image.jpg │ │ ├── pils-image.jpg │ │ ├── pizza-image.jpg │ │ ├── poire-image.jpg │ │ ├── pomme-image.jpg │ │ ├── soda-image.jpg │ │ ├── water-image.jpg │ │ ├── Onions-image.jpg │ │ ├── carotte-image.jpg │ │ ├── citron-image.jpg │ │ ├── fruits-image.jpg │ │ ├── legumes-image.jpg │ │ ├── oranges-image.jpg │ │ ├── raisins-image.jpg │ │ ├── spa_1l-image.jpg │ │ ├── spa_2l-image.jpg │ │ ├── tomates-image.jpg │ │ ├── beverage-image.jpg │ │ ├── courgette-image.jpg │ │ ├── evian_1l-image.jpg │ │ ├── evian_2l-image.jpg │ │ ├── evian_50cl-image.jpg │ │ ├── ice_cream-image.jpg │ │ ├── maes_33cl-image.jpg │ │ ├── maes_50cl-image.jpg │ │ ├── nectarine-image.jpg │ │ ├── orval_33cl-image.jpg │ │ ├── pepsi_2l-image.jpg │ │ ├── pepsi_33cl-image.jpg │ │ ├── perrier_1l-image.jpg │ │ ├── spa_33cl-image.jpg │ │ ├── spa_50cl-image.jpg │ │ ├── boni_orange-image.jpg │ │ ├── coca_zero_1l-image.jpg │ │ ├── coca_zero_2l-image.jpg │ │ ├── fruity_beers-image.jpg │ │ ├── jupiler_33cl-image.jpg │ │ ├── jupiler_50cl-image.jpg │ │ ├── leffe_9_33cl-image.jpg │ │ ├── oetker_pollo-image.jpg │ │ ├── oetker_tonno-image.jpg │ │ ├── pepsi_max_2l-image.jpg │ │ ├── perrier_50cl-image.jpg │ │ ├── plain_water-image.jpg │ │ ├── raisins_noir-image.jpg │ │ ├── soda_orange-image.jpg │ │ ├── stella_33cl-image.jpg │ │ ├── stella_50cl-image.jpg │ │ ├── autres_agrumes-image.jpg │ │ ├── coca_light_1l-image.jpg │ │ ├── coca_light_2l-image.jpg │ │ ├── coca_light_33cl-image.jpg │ │ ├── coca_light_50cl-image.jpg │ │ ├── coca_regular_1l-image.jpg │ │ ├── coca_regular_2l-image.jpg │ │ ├── coca_zero_33cl-image.jpg │ │ ├── coca_zero_50cl-image.jpg │ │ ├── fanta_orange_2l-image.jpg │ │ ├── fenouil_fenouil-image.jpg │ │ ├── legumes_racine-image.jpg │ │ ├── oetker_funghi-image.jpg │ │ ├── oetker_hawaii-image.jpg │ │ ├── oetker_speciale-image.jpg │ │ ├── oetker_spinaci-image.jpg │ │ ├── oetker_vegetale-image.jpg │ │ ├── orangina_1,5l-image.jpg │ │ ├── orangina_33cl-image.jpg │ │ ├── papillon_orange-image.jpg │ │ ├── pepsi_max_33cl-image.jpg │ │ ├── pepsi_max_50cl-image.jpg │ │ ├── poivron_jaunes-image.jpg │ │ ├── poivron_rouges-image.jpg │ │ ├── poivron_verts-image.jpg │ │ ├── pomme_de_terre-image.jpg │ │ ├── pomme_jonagold-image.jpg │ │ ├── pommes_de_terre-image.jpg │ │ ├── sparkling_water-image.jpg │ │ ├── special_beers-image.jpg │ │ ├── chimay_bleu_33cl-image.jpg │ │ ├── chimay_bleu_75cl-image.jpg │ │ ├── chimay_rouge_33cl-image.jpg │ │ ├── coca_regular_33cl-image.jpg │ │ ├── coca_regular_50cl-image.jpg │ │ ├── croky_naturel_45g-image.jpg │ │ ├── croky_paprika_45g-image.jpg │ │ ├── fanta_orange_25cl-image.jpg │ │ ├── fanta_orange_33cl-image.jpg │ │ ├── fanta_orange_50cl-image.jpg │ │ ├── lays_ketchup_250g-image.jpg │ │ ├── lays_naturel_170g-image.jpg │ │ ├── lays_naturel_300g-image.jpg │ │ ├── lays_naturel_45g-image.jpg │ │ ├── lays_paprika_170g-image.jpg │ │ ├── lays_paprika_300g-image.jpg │ │ ├── lays_paprika_45g-image.jpg │ │ ├── lays_pickles_250g-image.jpg │ │ ├── leffe_blonde_33cl-image.jpg │ │ ├── leffe_brune_33cl-image.jpg │ │ ├── oetker_4formaggi-image.jpg │ │ ├── oetker_bolognese-image.jpg │ │ ├── oetker_margherita-image.jpg │ │ ├── oetker_mozzarella-image.jpg │ │ ├── oetker_prosciutto-image.jpg │ │ ├── poire_conference-image.jpg │ │ ├── poireaux_poireaux-image.jpg │ │ ├── rochefort_8_33cl-image.jpg │ │ ├── san_pellegrino_1l-image.jpg │ │ ├── spa_et_fruit_50cl-image.jpg │ │ ├── spa_gazeuse_1,5l-image.jpg │ │ ├── spa_gazeuse_33cl-image.jpg │ │ ├── spa_gazeuse_50cl-image.jpg │ │ ├── tomate_en_grappe-image.jpg │ │ ├── autres_legumes_frais-image.jpg │ │ ├── belle_vue_kriek_25cl-image.jpg │ │ ├── chaudfontaine_1,5l-image.jpg │ │ ├── chaudfontaine_33cl-image.jpg │ │ ├── chaudfontaine_50cl-image.jpg │ │ ├── coca_light_lemon_2l-image.jpg │ │ ├── coca_zero_decaf_33cl-image.jpg │ │ ├── grisette_cerise_25cl-image.jpg │ │ ├── ijsboerke_moka_2,5l-image.jpg │ │ ├── pepsi_max_lemon_33cl-image.jpg │ │ ├── pomme_golden_perlim-image.jpg │ │ ├── pomme_granny_smith-image.jpg │ │ ├── rouges_noyau_fruits-image.jpg │ │ ├── boon_framboise_37,5cl-image.jpg │ │ ├── chicon_flandria_extra-image.jpg │ │ ├── coca_light_decaf_33cl-image.jpg │ │ ├── coca_light_lemon_33cl-image.jpg │ │ ├── coca_light_lemon_50cl-image.jpg │ │ ├── croky_bolognaise_250g-image.jpg │ │ ├── fanta_zero_orange_1,5l-image.jpg │ │ ├── fanta_zero_orange_33cl-image.jpg │ │ ├── ijsboerke_vanille_2,5l-image.jpg │ │ ├── lays_naturel_oven_150g-image.jpg │ │ ├── lays_paprika_oven_150g-image.jpg │ │ ├── lindemans_kriek_37,5cl-image.jpg │ │ ├── oignons_ail_echalotes-image.jpg │ │ ├── timmermans_faro_37,5cl-image.jpg │ │ ├── ijsboerke_chocolat_2,5l-image.jpg │ │ ├── lays_light_naturel_170g-image.jpg │ │ ├── lays_light_paprika_170g-image.jpg │ │ ├── lays_poivre_sel_oven_150g-image.jpg │ │ ├── timmermans_geuze_37,5cl-image.jpg │ │ ├── timmermans_kriek_37,5cl-image.jpg │ │ ├── ijsboerke_dame_blanche_2,5l-image.jpg │ │ ├── chaudfontaine_petillante_1,5l-image.jpg │ │ ├── chaudfontaine_petillante_33cl-image.jpg │ │ ├── chaudfontaine_petillante_50cl-image.jpg │ │ ├── ijsboerke_stracciatella_2,5l-image.jpg │ │ ├── lindemans_pecheresse_37,,5cl-image.jpg │ │ └── pamplemousse_rouge_pamplemousse-image.jpg │ └── description │ │ ├── icon.png │ │ ├── pos_sc_01.jpg │ │ ├── pos_sc_02.jpg │ │ ├── pos_sc_03.jpg │ │ ├── pos_ui_01.png │ │ ├── pos_ui_02.png │ │ ├── pos_ui_03.png │ │ ├── pos_checkout.jpg │ │ ├── pos_customers.png │ │ ├── pos_devices.png │ │ ├── pos_invoice.png │ │ ├── pos_offline.png │ │ ├── pos_products.png │ │ ├── pos_customer_form.png │ │ ├── pos_product_form.png │ │ └── ebook-manufacturing.png ├── account_bank_statement.pyc ├── doc │ ├── barcode_test_sheet.pdf │ └── barcode_test_sheet4.pdf ├── test │ ├── test_frontend.py │ └── 00_register_open.yml ├── account_statement_demo.xml └── res_partner.py ├── pos_session_print_by_proxy ├── security │ └── ir.model.access.csv ├── __init__.pyc ├── pos_session.pyc └── static │ ├── description │ ├── icon.jpg │ └── icon.png │ └── src │ └── js │ ├── main.js │ └── main.js~ ├── purple_pos_invoice_qweb ├── __init__.pyc ├── pos_payment.pyc └── report │ ├── __init__.pyc │ ├── .~lock.account_voucher_print1.sxw# │ └── pos_invoice_print_xml.pyc ├── account_invoice_print_by_proxy ├── security │ └── ir.model.access.csv └── static │ ├── description │ └── icon.png │ └── src │ └── js │ └── main.js ├── pos_session_print_by_proxy_cmmi ├── security │ └── ir.model.access.csv ├── __init__.pyc ├── pos_session.pyc └── static │ ├── description │ ├── icon.jpg │ └── icon.png │ └── src │ └── js │ ├── main.js │ └── main.js~ ├── posbox_proxy_backend ├── static │ └── src │ │ └── js │ │ └── main.js └── posbox_proxy_device_data.xml ├── pos_discount ├── static │ └── src │ │ └── xml │ │ └── discount.xml └── views │ └── templates.xml ├── pos_reprint_v9_backport ├── static │ └── src │ │ └── xml │ │ └── reprint.xml └── views │ └── templates.xml ├── pos_restaurant_v9_backport └── static │ └── src │ └── js │ └── main.js ├── pos_barcodes ├── views │ └── templates.xml └── security │ └── ir.model.access.csv ├── pos_loyalty_v9_backport └── static │ └── src │ └── css │ └── loyalty.css └── pos_session_cashier_account_payable └── __openerp__.py /pos_keyboard/.bzr/branch/tags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_keyboard/.bzr/checkout/views: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hw_escpos/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | import main 2 | -------------------------------------------------------------------------------- /hw_serialescpos/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | import main 2 | -------------------------------------------------------------------------------- /pos_keyboard/.bzr/checkout/conflicts: -------------------------------------------------------------------------------- 1 | BZR conflict list format 1 2 | -------------------------------------------------------------------------------- /pos_keyboard/.bzr/branch-format: -------------------------------------------------------------------------------- 1 | Bazaar-NG meta directory, format 1 2 | -------------------------------------------------------------------------------- /pos_keyboard/.bzr/branch/format: -------------------------------------------------------------------------------- 1 | Bazaar Branch Format 7 (needs bzr 1.6) 2 | -------------------------------------------------------------------------------- /pos_keyboard/.bzr/checkout/format: -------------------------------------------------------------------------------- 1 | Bazaar Working Tree Format 6 (bzr 1.14) 2 | -------------------------------------------------------------------------------- /point_of_sale_enhanced-70/.bzr/branch-format: -------------------------------------------------------------------------------- 1 | Bazaar-NG meta directory, format 1 2 | -------------------------------------------------------------------------------- /hw_escpos/escpos/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["constants","escpos","exceptions","printer"] 2 | -------------------------------------------------------------------------------- /pos_keyboard/.bzr/repository/format: -------------------------------------------------------------------------------- 1 | Bazaar repository format 2a (needs bzr 1.16 or later) 2 | -------------------------------------------------------------------------------- /hw_serialescpos/escpos/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["constants","escpos","exceptions","printer"] 2 | -------------------------------------------------------------------------------- /pos_keyboard/.bzr/branch/last-revision: -------------------------------------------------------------------------------- 1 | 3 mathzarro@gmail.com-20130329190043-bafp8bxuoidxr1y6 2 | -------------------------------------------------------------------------------- /hw_escpos/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_escpos/__init__.pyc -------------------------------------------------------------------------------- /point_of_sale_enhanced-70/.bzr/repository/format: -------------------------------------------------------------------------------- 1 | Bazaar repository format 2a (needs bzr 1.16 or later) 2 | -------------------------------------------------------------------------------- /pos_invoice/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_invoice/__init__.pyc -------------------------------------------------------------------------------- /hw_escpos/escpos/escpos.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_escpos/escpos/escpos.pyc -------------------------------------------------------------------------------- /point_of_sale/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/__init__.pyc -------------------------------------------------------------------------------- /point_of_sale/res_users.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/res_users.pyc -------------------------------------------------------------------------------- /pos_sales_summary/campo input .txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pos_transfer/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_transfer/__init__.pyc -------------------------------------------------------------------------------- /pos_transfer/transfer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_transfer/transfer.pyc -------------------------------------------------------------------------------- /hw_escpos/escpos/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_escpos/escpos/__init__.pyc -------------------------------------------------------------------------------- /hw_escpos/escpos/printer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_escpos/escpos/printer.pyc -------------------------------------------------------------------------------- /hw_serialescpos/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_serialescpos/__init__.pyc -------------------------------------------------------------------------------- /point_of_sale/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | import main 2 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: 3 | -------------------------------------------------------------------------------- /point_of_sale/res_partner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/res_partner.pyc -------------------------------------------------------------------------------- /pos_keyboard/.bzr/branch/branch.conf: -------------------------------------------------------------------------------- 1 | parent_location = http://bazaar.launchpad.net/~mathzarro/keyboardforopenerp/trunk/ 2 | -------------------------------------------------------------------------------- /pos_sales_summary_cmmi/campo input .txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hw_escpos/controllers/main.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_escpos/controllers/main.pyc -------------------------------------------------------------------------------- /hw_escpos/escpos/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_escpos/escpos/constants.pyc -------------------------------------------------------------------------------- /hw_escpos/escpos/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_escpos/escpos/exceptions.pyc -------------------------------------------------------------------------------- /point_of_sale/point_of_sale.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/point_of_sale.pyc -------------------------------------------------------------------------------- /point_of_sale/wizard/pos_box.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/wizard/pos_box.pyc -------------------------------------------------------------------------------- /pos_invoice/report/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_invoice/report/__init__.pyc -------------------------------------------------------------------------------- /pos_sales_summary/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary/__init__.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tropical/campo input .txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pos_sales_summary_tukis/campo input .txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hw_escpos/controllers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_escpos/controllers/__init__.pyc -------------------------------------------------------------------------------- /hw_serialescpos/escpos/escpos.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_serialescpos/escpos/escpos.pyc -------------------------------------------------------------------------------- /hw_serialescpos/escpos/printer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_serialescpos/escpos/printer.pyc -------------------------------------------------------------------------------- /point_of_sale/controllers/main.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/controllers/main.pyc -------------------------------------------------------------------------------- /point_of_sale/report/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/__init__.pyc -------------------------------------------------------------------------------- /point_of_sale/report/pos_lines.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/pos_lines.pyc -------------------------------------------------------------------------------- /point_of_sale/wizard/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/wizard/__init__.pyc -------------------------------------------------------------------------------- /pos_invoice/report/pos_invoice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_invoice/report/pos_invoice.pyc -------------------------------------------------------------------------------- /pos_invoice/report/pos_invoice.sxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_invoice/report/pos_invoice.sxw -------------------------------------------------------------------------------- /hw_serialescpos/controllers/main.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_serialescpos/controllers/main.pyc -------------------------------------------------------------------------------- /hw_serialescpos/escpos/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_serialescpos/escpos/__init__.pyc -------------------------------------------------------------------------------- /hw_serialescpos/escpos/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_serialescpos/escpos/constants.pyc -------------------------------------------------------------------------------- /hw_serialescpos/escpos/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_serialescpos/escpos/exceptions.pyc -------------------------------------------------------------------------------- /point_of_sale/report/pos_details.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/pos_details.pyc -------------------------------------------------------------------------------- /point_of_sale/report/pos_invoice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/pos_invoice.pyc -------------------------------------------------------------------------------- /point_of_sale/report/pos_receipt.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/pos_receipt.pyc -------------------------------------------------------------------------------- /point_of_sale/report/pos_report.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/pos_report.pyc -------------------------------------------------------------------------------- /point_of_sale/static/img/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/computer.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/bg.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/grid.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/home.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/logo.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/plus.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/scan.png -------------------------------------------------------------------------------- /point_of_sale/wizard/pos_confirm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/wizard/pos_confirm.pyc -------------------------------------------------------------------------------- /point_of_sale/wizard/pos_details.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/wizard/pos_details.pyc -------------------------------------------------------------------------------- /point_of_sale/wizard/pos_discount.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/wizard/pos_discount.pyc -------------------------------------------------------------------------------- /point_of_sale/wizard/pos_payment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/wizard/pos_payment.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | import main 2 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: 3 | -------------------------------------------------------------------------------- /pos_sales_summary/report/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary/report/__init__.pyc -------------------------------------------------------------------------------- /pos_sales_summary/wizard/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary/wizard/__init__.pyc -------------------------------------------------------------------------------- /pos_sales_summary_cmmi/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_cmmi/__init__.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tukis/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tukis/__init__.pyc -------------------------------------------------------------------------------- /pos_session_print_by_proxy/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | -------------------------------------------------------------------------------- /purple_pos_invoice_qweb/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/purple_pos_invoice_qweb/__init__.pyc -------------------------------------------------------------------------------- /account_invoice_print_by_proxy/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | -------------------------------------------------------------------------------- /point_of_sale/controllers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/controllers/__init__.pyc -------------------------------------------------------------------------------- /point_of_sale/security/.~lock.ir.model.access.csv#: -------------------------------------------------------------------------------- 1 | ,theclone,theclone-ThinkPad-T61,28.09.2015 18:59,file:///home/theclone/.config/libreoffice/4; -------------------------------------------------------------------------------- /point_of_sale/static/img/coke-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coke-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/food-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/food-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pils-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pils-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/soda-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/soda-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/img/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/minus.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/scale.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/search.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/__init__.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/res_users.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/res_users.pyc -------------------------------------------------------------------------------- /pos_keyboard/.bzr/repository/pack-names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_keyboard/.bzr/repository/pack-names -------------------------------------------------------------------------------- /pos_sales_summary_tropical/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tropical/__init__.pyc -------------------------------------------------------------------------------- /pos_session_print_by_proxy/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_session_print_by_proxy/__init__.pyc -------------------------------------------------------------------------------- /pos_session_print_by_proxy_cmmi/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | -------------------------------------------------------------------------------- /purple_pos_invoice_qweb/pos_payment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/purple_pos_invoice_qweb/pos_payment.pyc -------------------------------------------------------------------------------- /hw_serialescpos/controllers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/hw_serialescpos/controllers/__init__.pyc -------------------------------------------------------------------------------- /point_of_sale/account_bank_statement.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/account_bank_statement.pyc -------------------------------------------------------------------------------- /point_of_sale/doc/barcode_test_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/doc/barcode_test_sheet.pdf -------------------------------------------------------------------------------- /point_of_sale/doc/barcode_test_sheet4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/doc/barcode_test_sheet4.pdf -------------------------------------------------------------------------------- /point_of_sale/report/account_statement.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/account_statement.pyc -------------------------------------------------------------------------------- /point_of_sale/report/pos_order_report.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/pos_order_report.pyc -------------------------------------------------------------------------------- /point_of_sale/report/pos_users_product.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/pos_users_product.pyc -------------------------------------------------------------------------------- /point_of_sale/report/session_details.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/session_details.pyc -------------------------------------------------------------------------------- /point_of_sale/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/icon.png -------------------------------------------------------------------------------- /point_of_sale/static/img/Onions-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/Onions-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/beers-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/beers-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/carotte-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/carotte-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/chips-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chips-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/citron-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/citron-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/fruits-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/fruits-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/legumes-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/legumes-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/limon-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/limon-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oranges-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oranges-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/peche-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/peche-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pizza-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pizza-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/poire-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/poire-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pomme-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pomme-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/raisins-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/raisins-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/spa_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/spa_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/spa_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/spa_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/tomates-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/tomates-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/water-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/water-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/img/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/backspace.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/barcode.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/bc-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/bc-arrow.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/scroll-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/scroll-up.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/steps-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/steps-bg.png -------------------------------------------------------------------------------- /point_of_sale/static/src/sounds/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/sounds/error.wav -------------------------------------------------------------------------------- /point_of_sale_enhanced-70/.bzr/repository/pack-names: -------------------------------------------------------------------------------- 1 | B+Tree Graph Index 2 2 | node_ref_lists=0 3 | key_elements=1 4 | len=0 5 | row_lengths= 6 | -------------------------------------------------------------------------------- /point_of_sale_v9_backport/res_partner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/res_partner.pyc -------------------------------------------------------------------------------- /pos_sales_summary/report/pos_summary.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary/report/pos_summary.pyc -------------------------------------------------------------------------------- /pos_sales_summary/wizard/pos_summary.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary/wizard/pos_summary.pyc -------------------------------------------------------------------------------- /pos_sales_summary_cmmi/point_of_sale.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_cmmi/point_of_sale.pyc -------------------------------------------------------------------------------- /pos_sales_summary_cmmi/report/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_cmmi/report/__init__.pyc -------------------------------------------------------------------------------- /pos_sales_summary_cmmi/wizard/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_cmmi/wizard/__init__.pyc -------------------------------------------------------------------------------- /pos_session_print_by_proxy/pos_session.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_session_print_by_proxy/pos_session.pyc -------------------------------------------------------------------------------- /hw_escpos/README.md: -------------------------------------------------------------------------------- 1 | The escpos directory contains the MIT licensed pyxmlescpos lib taken from 2 | 3 | https://github.com/fvdsn/py-xml-escpos 4 | 5 | -------------------------------------------------------------------------------- /point_of_sale/report/pos_payment_report.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/report/pos_payment_report.pyc -------------------------------------------------------------------------------- /point_of_sale/static/img/beverage-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/beverage-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/courgette-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/courgette-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/evian_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/evian_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/evian_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/evian_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/ice_cream-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/ice_cream-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/maes_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/maes_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/maes_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/maes_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/nectarine-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/nectarine-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pepsi_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pepsi_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/spa_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/spa_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/spa_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/spa_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/img/bancontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/bancontact.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/grid-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/grid-purple.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/scroll-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/scroll-down.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/steps-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/steps-arrow.png -------------------------------------------------------------------------------- /point_of_sale/wizard/pos_open_statement.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/wizard/pos_open_statement.pyc -------------------------------------------------------------------------------- /point_of_sale/wizard/pos_session_opening.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/wizard/pos_session_opening.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/point_of_sale.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/point_of_sale.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/wizard/pos_box.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/wizard/pos_box.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tropical/point_of_sale.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tropical/point_of_sale.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tukis/report/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tukis/report/__init__.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tukis/wizard/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tukis/wizard/__init__.pyc -------------------------------------------------------------------------------- /pos_session_print_by_proxy_cmmi/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_session_print_by_proxy_cmmi/__init__.pyc -------------------------------------------------------------------------------- /purple_pos_invoice_qweb/report/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/purple_pos_invoice_qweb/report/__init__.pyc -------------------------------------------------------------------------------- /hw_serialescpos/README.md: -------------------------------------------------------------------------------- 1 | The escpos directory contains the MIT licensed pyxmlescpos lib taken from 2 | 3 | https://github.com/fvdsn/py-xml-escpos 4 | 5 | -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_sc_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_sc_01.jpg -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_sc_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_sc_02.jpg -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_sc_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_sc_03.jpg -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_ui_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_ui_01.png -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_ui_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_ui_02.png -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_ui_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_ui_03.png -------------------------------------------------------------------------------- /point_of_sale/static/img/boni_orange-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/boni_orange-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_zero_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_zero_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_zero_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_zero_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/evian_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/evian_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/fruity_beers-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/fruity_beers-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/jupiler_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/jupiler_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/jupiler_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/jupiler_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/leffe_9_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/leffe_9_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_pollo-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_pollo-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_tonno-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_tonno-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/orval_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/orval_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pepsi_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pepsi_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pepsi_max_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pepsi_max_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/perrier_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/perrier_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/perrier_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/perrier_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/plain_water-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/plain_water-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/raisins_noir-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/raisins_noir-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/soda_orange-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/soda_orange-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/stella_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/stella_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/stella_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/stella_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/Inconsolata.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/Inconsolata.otf -------------------------------------------------------------------------------- /point_of_sale/static/src/img/bc-arrow-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/bc-arrow-big.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/open-cashbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/open-cashbox.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/pos_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/pos_screenshot.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/img/search_reset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/search_reset.gif -------------------------------------------------------------------------------- /point_of_sale/static/src/img/touch-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/touch-icon-128.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/touch-icon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/touch-icon-196.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/validate-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/validate-icon.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/controllers/main.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/controllers/main.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/__init__.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/pos_lines.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/pos_lines.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/pos_report.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/pos_report.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/security/.~lock.ir.model.access.csv#: -------------------------------------------------------------------------------- 1 | ,theclone,theclone-ThinkPad-T61,28.09.2015 18:59,file:///home/theclone/.config/libreoffice/4; -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/bg.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/wizard/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/wizard/__init__.pyc -------------------------------------------------------------------------------- /pos_sales_summary_cmmi/report/pos_summary.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_cmmi/report/pos_summary.pyc -------------------------------------------------------------------------------- /pos_sales_summary_cmmi/wizard/pos_summary.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_cmmi/wizard/pos_summary.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tropical/report/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tropical/report/__init__.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tropical/wizard/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tropical/wizard/__init__.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tukis/report/pos_summary.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tukis/report/pos_summary.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tukis/wizard/pos_summary.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tukis/wizard/pos_summary.pyc -------------------------------------------------------------------------------- /pos_session_print_by_proxy_cmmi/pos_session.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_session_print_by_proxy_cmmi/pos_session.pyc -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_checkout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_checkout.jpg -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_devices.png -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_invoice.png -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_offline.png -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_products.png -------------------------------------------------------------------------------- /point_of_sale/static/img/autres_agrumes-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/autres_agrumes-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_light_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_light_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_light_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_light_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_zero_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_zero_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_zero_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_zero_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/legumes_racine-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/legumes_racine-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_funghi-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_funghi-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_hawaii-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_hawaii-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_spinaci-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_spinaci-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/orangina_1,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/orangina_1,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/orangina_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/orangina_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pepsi_max_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pepsi_max_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pepsi_max_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pepsi_max_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/poivron_jaunes-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/poivron_jaunes-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/poivron_rouges-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/poivron_rouges-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/poivron_verts-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/poivron_verts-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pomme_de_terre-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pomme_de_terre-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pomme_jonagold-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pomme_jonagold-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/special_beers-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/special_beers-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/img/headerbackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/headerbackground.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/img/icons/png48/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/icons/png48/help.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/touch-icon-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/touch-icon-ipad.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/pos_details.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/pos_details.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/pos_invoice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/pos_invoice.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/pos_receipt.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/pos_receipt.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/computer.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/grid.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/home.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/logo.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/plus.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/scan.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/wizard/pos_confirm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/wizard/pos_confirm.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/wizard/pos_details.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/wizard/pos_details.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/wizard/pos_discount.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/wizard/pos_discount.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/wizard/pos_payment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/wizard/pos_payment.pyc -------------------------------------------------------------------------------- /pos_sales_summary/report/so_pos_order_report.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary/report/so_pos_order_report.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tropical/report/pos_summary.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tropical/report/pos_summary.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tropical/wizard/pos_summary.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tropical/wizard/pos_summary.pyc -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_customers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_customers.png -------------------------------------------------------------------------------- /point_of_sale/static/img/chimay_bleu_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chimay_bleu_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/chimay_bleu_75cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chimay_bleu_75cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/chimay_rouge_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chimay_rouge_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_light_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_light_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_light_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_light_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_regular_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_regular_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_regular_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_regular_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_regular_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_regular_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_regular_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_regular_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/croky_naturel_45g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/croky_naturel_45g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/croky_paprika_45g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/croky_paprika_45g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/fanta_orange_25cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/fanta_orange_25cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/fanta_orange_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/fanta_orange_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/fanta_orange_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/fanta_orange_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/fanta_orange_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/fanta_orange_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/fenouil_fenouil-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/fenouil_fenouil-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_ketchup_250g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_ketchup_250g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_naturel_170g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_naturel_170g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_naturel_300g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_naturel_300g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_naturel_45g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_naturel_45g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_paprika_170g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_paprika_170g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_paprika_300g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_paprika_300g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_paprika_45g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_paprika_45g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_pickles_250g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_pickles_250g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/leffe_blonde_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/leffe_blonde_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/leffe_brune_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/leffe_brune_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_4formaggi-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_4formaggi-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_bolognese-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_bolognese-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_margherita-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_margherita-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_mozzarella-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_mozzarella-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_prosciutto-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_prosciutto-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_speciale-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_speciale-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oetker_vegetale-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oetker_vegetale-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/papillon_orange-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/papillon_orange-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/poire_conference-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/poire_conference-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/poireaux_poireaux-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/poireaux_poireaux-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pommes_de_terre-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pommes_de_terre-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/rochefort_8_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/rochefort_8_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/san_pellegrino_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/san_pellegrino_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/spa_et_fruit_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/spa_et_fruit_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/spa_gazeuse_1,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/spa_gazeuse_1,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/spa_gazeuse_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/spa_gazeuse_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/spa_gazeuse_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/spa_gazeuse_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/sparkling_water-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/sparkling_water-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/tomate_en_grappe-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/tomate_en_grappe-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/img/icons/png48/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/icons/png48/go-next.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/icons/png48/invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/icons/png48/invoice.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/icons/png48/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/icons/png48/printer.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/icons/png48/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/icons/png48/scale.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/touch-icon-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/touch-icon-iphone.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/account_bank_statement.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/account_bank_statement.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/controllers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/controllers/__init__.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/doc/barcode_test_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/doc/barcode_test_sheet.pdf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/session_details.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/session_details.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/beers-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/beers-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chips-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chips-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coke-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coke-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/food-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/food-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/limon-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/limon-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/peche-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/peche-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pils-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pils-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pizza-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pizza-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/poire-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/poire-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pomme-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pomme-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/soda-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/soda-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/water-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/water-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/barcode.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/minus.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/scale.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/search.png -------------------------------------------------------------------------------- /pos_keyboard/.bzr/repository/indices/cab2373ac0cf9a58fde5f46dd16977e8.six: -------------------------------------------------------------------------------- 1 | B+Tree Graph Index 2 2 | node_ref_lists=0 3 | key_elements=1 4 | len=0 5 | row_lengths= 6 | -------------------------------------------------------------------------------- /purple_pos_invoice_qweb/report/.~lock.account_voucher_print1.sxw#: -------------------------------------------------------------------------------- 1 | theclone ,theclone,theclone-laptopx01,01.08.2014 09:18,file:///home/theclone/.config/libreoffice/3; -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_customer_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_customer_form.png -------------------------------------------------------------------------------- /point_of_sale/static/description/pos_product_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/pos_product_form.png -------------------------------------------------------------------------------- /point_of_sale/static/img/chaudfontaine_1,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chaudfontaine_1,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/chaudfontaine_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chaudfontaine_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/chaudfontaine_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chaudfontaine_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_light_lemon_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_light_lemon_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/ijsboerke_moka_2,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/ijsboerke_moka_2,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pomme_golden_perlim-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pomme_golden_perlim-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pomme_granny_smith-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pomme_granny_smith-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/rouges_noyau_fruits-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/rouges_noyau_fruits-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/img/icons/png48/shut-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/icons/png48/shut-down.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/icons/png48/validate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/icons/png48/validate.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/doc/barcode_test_sheet4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/doc/barcode_test_sheet4.pdf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/account_statement.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/account_statement.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/pos_order_report.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/pos_order_report.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/pos_users_product.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/pos_users_product.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/icon.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/Onions-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/Onions-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/carotte-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/carotte-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/citron-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/citron-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/fruits-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/fruits-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/legumes-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/legumes-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oranges-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oranges-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/raisins-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/raisins-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/spa_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/spa_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/spa_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/spa_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/tomates-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/tomates-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/backspace.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/bc-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/bc-arrow.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/scroll-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/scroll-up.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/steps-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/steps-bg.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/sounds/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/sounds/error.wav -------------------------------------------------------------------------------- /pos_sales_summary_cmmi/report/so_pos_order_report.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_cmmi/report/so_pos_order_report.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tukis/report/so_pos_order_report.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tukis/report/so_pos_order_report.pyc -------------------------------------------------------------------------------- /pos_session_print_by_proxy/static/description/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_session_print_by_proxy/static/description/icon.jpg -------------------------------------------------------------------------------- /pos_session_print_by_proxy/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_session_print_by_proxy/static/description/icon.png -------------------------------------------------------------------------------- /hw_escpos/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Part of Odoo. See LICENSE file for full copyright and licensing details. 3 | 4 | import controllers 5 | import escpos 6 | -------------------------------------------------------------------------------- /point_of_sale/static/description/ebook-manufacturing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/description/ebook-manufacturing.png -------------------------------------------------------------------------------- /point_of_sale/static/img/autres_legumes_frais-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/autres_legumes_frais-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/belle_vue_kriek_25cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/belle_vue_kriek_25cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/boon_framboise_37,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/boon_framboise_37,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/chicon_flandria_extra-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chicon_flandria_extra-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_light_decaf_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_light_decaf_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_light_lemon_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_light_lemon_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_light_lemon_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_light_lemon_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/coca_zero_decaf_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/coca_zero_decaf_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/croky_bolognaise_250g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/croky_bolognaise_250g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/fanta_zero_orange_1,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/fanta_zero_orange_1,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/fanta_zero_orange_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/fanta_zero_orange_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/grisette_cerise_25cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/grisette_cerise_25cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/ijsboerke_vanille_2,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/ijsboerke_vanille_2,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_naturel_oven_150g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_naturel_oven_150g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_paprika_oven_150g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_paprika_oven_150g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lindemans_kriek_37,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lindemans_kriek_37,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/oignons_ail_echalotes-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/oignons_ail_echalotes-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/pepsi_max_lemon_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pepsi_max_lemon_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/timmermans_faro_37,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/timmermans_faro_37,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Bla-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Bla-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Bla-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Bla-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Bla-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Bla-webfont.woff -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Bol-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Bol-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Bol-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Bol-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Bol-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Bol-webfont.woff -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Hai-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Hai-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Hai-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Hai-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Hai-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Hai-webfont.woff -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Lig-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Lig-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Lig-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Lig-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Lig-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Lig-webfont.woff -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Reg-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Reg-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Reg-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Reg-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-Reg-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-Reg-webfont.woff -------------------------------------------------------------------------------- /point_of_sale/static/src/img/default_category_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/default_category_photo.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/icons/png48/face-monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/icons/png48/face-monkey.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/icons/png48/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/icons/png48/go-previous.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/touch-icon-ipad-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/touch-icon-ipad-retina.png -------------------------------------------------------------------------------- /point_of_sale/static/src/img/touch-icon-iphone-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/touch-icon-iphone-retina.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/pos_payment_report.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/report/pos_payment_report.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/beverage-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/beverage-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/courgette-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/courgette-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/evian_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/evian_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/evian_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/evian_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/evian_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/evian_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/ice_cream-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/ice_cream-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/maes_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/maes_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/maes_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/maes_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/nectarine-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/nectarine-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/orval_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/orval_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pepsi_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pepsi_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pepsi_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pepsi_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/perrier_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/perrier_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/spa_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/spa_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/spa_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/spa_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/bancontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/bancontact.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/bc-arrow-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/bc-arrow-big.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/grid-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/grid-purple.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/open-cashbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/open-cashbox.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/scroll-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/scroll-down.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/search_reset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/search_reset.gif -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/steps-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/steps-arrow.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/wizard/pos_open_statement.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/wizard/pos_open_statement.pyc -------------------------------------------------------------------------------- /point_of_sale_v9_backport/wizard/pos_session_opening.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/wizard/pos_session_opening.pyc -------------------------------------------------------------------------------- /pos_sales_summary_tropical/report/so_pos_order_report.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_sales_summary_tropical/report/so_pos_order_report.pyc -------------------------------------------------------------------------------- /purple_pos_invoice_qweb/report/pos_invoice_print_xml.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/purple_pos_invoice_qweb/report/pos_invoice_print_xml.pyc -------------------------------------------------------------------------------- /account_invoice_print_by_proxy/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/account_invoice_print_by_proxy/static/description/icon.png -------------------------------------------------------------------------------- /hw_serialescpos/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Part of Odoo. See LICENSE file for full copyright and licensing details. 3 | 4 | import controllers 5 | import escpos 6 | -------------------------------------------------------------------------------- /point_of_sale/static/img/ijsboerke_chocolat_2,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/ijsboerke_chocolat_2,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_light_naturel_170g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_light_naturel_170g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_light_paprika_170g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_light_paprika_170g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/timmermans_geuze_37,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/timmermans_geuze_37,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/timmermans_kriek_37,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/timmermans_kriek_37,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-BlaIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-BlaIta-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-BlaIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-BlaIta-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-BolIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-BolIta-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-BolIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-BolIta-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-HaiIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-HaiIta-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-HaiIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-HaiIta-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-LigIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-LigIta-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-LigIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-LigIta-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-RegIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-RegIta-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-RegIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-RegIta-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/img/icons/png48/system-log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/img/icons/png48/system-log-out.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_sc_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_sc_01.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_sc_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_sc_02.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_sc_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_sc_03.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_ui_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_ui_01.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_ui_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_ui_02.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_ui_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_ui_03.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/boni_orange-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/boni_orange-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_zero_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_zero_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_zero_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_zero_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/fruity_beers-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/fruity_beers-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/jupiler_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/jupiler_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/jupiler_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/jupiler_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/leffe_9_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/leffe_9_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_pollo-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_pollo-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_tonno-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_tonno-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pepsi_max_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pepsi_max_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/perrier_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/perrier_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/plain_water-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/plain_water-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/raisins_noir-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/raisins_noir-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/soda_orange-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/soda_orange-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/stella_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/stella_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/stella_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/stella_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/Inconsolata.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/Inconsolata.otf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/pos_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/pos_screenshot.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/touch-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/touch-icon-128.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/touch-icon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/touch-icon-196.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/validate-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/validate-icon.png -------------------------------------------------------------------------------- /pos_keyboard/.bzr/README: -------------------------------------------------------------------------------- 1 | This is a Bazaar control directory. 2 | Do not change any files in this directory. 3 | See http://bazaar.canonical.com/ for more information about Bazaar. 4 | -------------------------------------------------------------------------------- /pos_session_print_by_proxy_cmmi/static/description/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_session_print_by_proxy_cmmi/static/description/icon.jpg -------------------------------------------------------------------------------- /pos_session_print_by_proxy_cmmi/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_session_print_by_proxy_cmmi/static/description/icon.png -------------------------------------------------------------------------------- /point_of_sale/static/img/ijsboerke_dame_blanche_2,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/ijsboerke_dame_blanche_2,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lays_poivre_sel_oven_150g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lays_poivre_sel_oven_150g-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-BlaIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-BlaIta-webfont.woff -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-BolIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-BolIta-webfont.woff -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-HaiIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-HaiIta-webfont.woff -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-LigIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-LigIta-webfont.woff -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/lato/Lato-RegIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/lato/Lato-RegIta-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_checkout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_checkout.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_customers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_customers.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_devices.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_invoice.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_offline.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_products.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/autres_agrumes-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/autres_agrumes-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_light_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_light_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_light_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_light_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_light_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_light_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_light_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_light_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_regular_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_regular_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_regular_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_regular_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_zero_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_zero_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_zero_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_zero_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/fanta_orange_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/fanta_orange_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/fenouil_fenouil-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/fenouil_fenouil-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/legumes_racine-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/legumes_racine-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_funghi-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_funghi-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_hawaii-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_hawaii-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_speciale-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_speciale-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_spinaci-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_spinaci-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_vegetale-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_vegetale-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/orangina_1,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/orangina_1,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/orangina_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/orangina_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/papillon_orange-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/papillon_orange-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pepsi_max_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pepsi_max_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pepsi_max_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pepsi_max_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/poivron_jaunes-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/poivron_jaunes-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/poivron_rouges-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/poivron_rouges-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/poivron_verts-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/poivron_verts-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pomme_de_terre-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pomme_de_terre-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pomme_jonagold-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pomme_jonagold-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pommes_de_terre-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pommes_de_terre-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/sparkling_water-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/sparkling_water-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/special_beers-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/special_beers-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/headerbackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/headerbackground.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/icons/png48/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/icons/png48/help.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/icons/png48/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/icons/png48/scale.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/touch-icon-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/touch-icon-ipad.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/touch-icon-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/touch-icon-iphone.png -------------------------------------------------------------------------------- /pos_keyboard/style.css: -------------------------------------------------------------------------------- 1 | div { 2 | width: 600px; 3 | height: 300px; 4 | margin: 20px auto; 5 | background: #aaa; 6 | } 7 | div.active { border: 1px solid red; } -------------------------------------------------------------------------------- /point_of_sale/static/img/chaudfontaine_petillante_1,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chaudfontaine_petillante_1,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/chaudfontaine_petillante_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chaudfontaine_petillante_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/chaudfontaine_petillante_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/chaudfontaine_petillante_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/ijsboerke_stracciatella_2,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/ijsboerke_stracciatella_2,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/img/lindemans_pecheresse_37,,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/lindemans_pecheresse_37,,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chimay_bleu_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chimay_bleu_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chimay_bleu_75cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chimay_bleu_75cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chimay_rouge_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chimay_rouge_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_regular_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_regular_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_regular_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_regular_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/croky_naturel_45g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/croky_naturel_45g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/croky_paprika_45g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/croky_paprika_45g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/fanta_orange_25cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/fanta_orange_25cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/fanta_orange_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/fanta_orange_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/fanta_orange_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/fanta_orange_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_ketchup_250g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_ketchup_250g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_naturel_170g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_naturel_170g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_naturel_300g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_naturel_300g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_naturel_45g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_naturel_45g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_paprika_170g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_paprika_170g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_paprika_300g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_paprika_300g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_paprika_45g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_paprika_45g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_pickles_250g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_pickles_250g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/leffe_blonde_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/leffe_blonde_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/leffe_brune_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/leffe_brune_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_4formaggi-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_4formaggi-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_bolognese-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_bolognese-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_margherita-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_margherita-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_mozzarella-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_mozzarella-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oetker_prosciutto-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oetker_prosciutto-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/poire_conference-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/poire_conference-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/poireaux_poireaux-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/poireaux_poireaux-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/rochefort_8_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/rochefort_8_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/san_pellegrino_1l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/san_pellegrino_1l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/spa_et_fruit_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/spa_et_fruit_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/spa_gazeuse_1,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/spa_gazeuse_1,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/spa_gazeuse_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/spa_gazeuse_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/spa_gazeuse_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/spa_gazeuse_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/tomate_en_grappe-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/tomate_en_grappe-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/icons/png48/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/icons/png48/go-next.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/icons/png48/invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/icons/png48/invoice.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/icons/png48/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/icons/png48/printer.png -------------------------------------------------------------------------------- /point_of_sale/static/img/pamplemousse_rouge_pamplemousse-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/img/pamplemousse_rouge_pamplemousse-image.jpg -------------------------------------------------------------------------------- /point_of_sale_enhanced-70/.bzr/README: -------------------------------------------------------------------------------- 1 | This is a Bazaar control directory. 2 | Do not change any files in this directory. 3 | See http://bazaar.canonical.com/ for more information about Bazaar. 4 | -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_customer_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_customer_form.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/pos_product_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/pos_product_form.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/autres_legumes_frais-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/autres_legumes_frais-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/belle_vue_kriek_25cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/belle_vue_kriek_25cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chaudfontaine_1,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chaudfontaine_1,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chaudfontaine_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chaudfontaine_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chaudfontaine_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chaudfontaine_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_light_lemon_2l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_light_lemon_2l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_zero_decaf_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_zero_decaf_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/grisette_cerise_25cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/grisette_cerise_25cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/ijsboerke_moka_2,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/ijsboerke_moka_2,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pepsi_max_lemon_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pepsi_max_lemon_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pomme_golden_perlim-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pomme_golden_perlim-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pomme_granny_smith-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pomme_granny_smith-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/rouges_noyau_fruits-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/rouges_noyau_fruits-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/default_category_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/default_category_photo.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/icons/png48/shut-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/icons/png48/shut-down.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/icons/png48/validate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/icons/png48/validate.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/touch-icon-ipad-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/touch-icon-ipad-retina.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/description/ebook-manufacturing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/description/ebook-manufacturing.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/boon_framboise_37,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/boon_framboise_37,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chicon_flandria_extra-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chicon_flandria_extra-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_light_decaf_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_light_decaf_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_light_lemon_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_light_lemon_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/coca_light_lemon_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/coca_light_lemon_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/croky_bolognaise_250g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/croky_bolognaise_250g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/fanta_zero_orange_1,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/fanta_zero_orange_1,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/fanta_zero_orange_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/fanta_zero_orange_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/ijsboerke_vanille_2,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/ijsboerke_vanille_2,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_naturel_oven_150g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_naturel_oven_150g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_paprika_oven_150g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_paprika_oven_150g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lindemans_kriek_37,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lindemans_kriek_37,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/oignons_ail_echalotes-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/oignons_ail_echalotes-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/timmermans_faro_37,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/timmermans_faro_37,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bla-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bla-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bla-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bla-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bla-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bla-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bol-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bol-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bol-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bol-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bol-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Bol-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Hai-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Hai-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Hai-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Hai-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Hai-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Hai-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Lig-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Lig-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Lig-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Lig-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Lig-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Lig-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Reg-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Reg-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Reg-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Reg-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-Reg-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-Reg-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/icons/png48/face-monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/icons/png48/face-monkey.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/icons/png48/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/icons/png48/go-previous.png -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/touch-icon-iphone-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/touch-icon-iphone-retina.png -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/font-awesome-4.0.3/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/font-awesome-4.0.3/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/font-awesome-4.2.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/font-awesome-4.2.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/ijsboerke_chocolat_2,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/ijsboerke_chocolat_2,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_light_naturel_170g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_light_naturel_170g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_light_paprika_170g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_light_paprika_170g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lays_poivre_sel_oven_150g-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lays_poivre_sel_oven_150g-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/timmermans_geuze_37,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/timmermans_geuze_37,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/timmermans_kriek_37,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/timmermans_kriek_37,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-BlaIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-BlaIta-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-BlaIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-BlaIta-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-BlaIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-BlaIta-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-BolIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-BolIta-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-BolIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-BolIta-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-BolIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-BolIta-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-HaiIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-HaiIta-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-HaiIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-HaiIta-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-HaiIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-HaiIta-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-LigIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-LigIta-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-LigIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-LigIta-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-LigIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-LigIta-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-RegIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-RegIta-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-RegIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-RegIta-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/lato/Lato-RegIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/lato/Lato-RegIta-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/img/icons/png48/system-log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/img/icons/png48/system-log-out.png -------------------------------------------------------------------------------- /pos_keyboard/.bzr/repository/packs/cab2373ac0cf9a58fde5f46dd16977e8.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_keyboard/.bzr/repository/packs/cab2373ac0cf9a58fde5f46dd16977e8.pack -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/ijsboerke_dame_blanche_2,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/ijsboerke_dame_blanche_2,5l-image.jpg -------------------------------------------------------------------------------- /pos_keyboard/.bzr/repository/indices/cab2373ac0cf9a58fde5f46dd16977e8.cix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_keyboard/.bzr/repository/indices/cab2373ac0cf9a58fde5f46dd16977e8.cix -------------------------------------------------------------------------------- /pos_keyboard/.bzr/repository/indices/cab2373ac0cf9a58fde5f46dd16977e8.iix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_keyboard/.bzr/repository/indices/cab2373ac0cf9a58fde5f46dd16977e8.iix -------------------------------------------------------------------------------- /pos_keyboard/.bzr/repository/indices/cab2373ac0cf9a58fde5f46dd16977e8.rix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_keyboard/.bzr/repository/indices/cab2373ac0cf9a58fde5f46dd16977e8.rix -------------------------------------------------------------------------------- /pos_keyboard/.bzr/repository/indices/cab2373ac0cf9a58fde5f46dd16977e8.tix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/pos_keyboard/.bzr/repository/indices/cab2373ac0cf9a58fde5f46dd16977e8.tix -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chaudfontaine_petillante_1,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chaudfontaine_petillante_1,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chaudfontaine_petillante_33cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chaudfontaine_petillante_33cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/chaudfontaine_petillante_50cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/chaudfontaine_petillante_50cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/ijsboerke_stracciatella_2,5l-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/ijsboerke_stracciatella_2,5l-image.jpg -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/lindemans_pecheresse_37,,5cl-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/lindemans_pecheresse_37,,5cl-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/img/pamplemousse_rouge_pamplemousse-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/img/pamplemousse_rouge_pamplemousse-image.jpg -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /point_of_sale/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /posbox_proxy_backend/static/src/js/main.js: -------------------------------------------------------------------------------- 1 | openerp.posbox_proxy_backend = function(instance) { 2 | 3 | var module = instance.posbox_proxy_backend; 4 | 5 | openerp_proxy_device(instance,module); 6 | }; 7 | 8 | 9 | -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/font-awesome-4.0.3/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/font-awesome-4.0.3/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/font-awesome-4.2.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/font-awesome-4.2.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /pos_sales_summary/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | access_so_report_pos_order,report.so.pos.order,model_report_so_pos_order,point_of_sale.group_pos_user,1,1,1,1 3 | -------------------------------------------------------------------------------- /pos_session_print_by_proxy/static/src/js/main.js: -------------------------------------------------------------------------------- 1 | openerp.pos_session_print_by_proxy = function(instance) { 2 | 3 | var module = instance.posbox_proxy_backend; 4 | 5 | openerp_print_pos_session(instance,module); 6 | }; 7 | 8 | 9 | -------------------------------------------------------------------------------- /pos_session_print_by_proxy/static/src/js/main.js~: -------------------------------------------------------------------------------- 1 | openerp.pos_session_print_by_proxy = function(instance) { 2 | 3 | var module = instance.posbox_proxy_backend; 4 | 5 | openerp_print_pos_session(instance,module); 6 | }; 7 | 8 | 9 | -------------------------------------------------------------------------------- /account_invoice_print_by_proxy/static/src/js/main.js: -------------------------------------------------------------------------------- 1 | openerp.account_invoice_print_by_proxy = function(instance) { 2 | 3 | var module = instance.posbox_proxy_backend; 4 | 5 | openerp_print_invoice(instance,module); 6 | }; 7 | 8 | 9 | -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloneMaster/point_of_sale/HEAD/point_of_sale_v9_backport/static/src/fonts/font-awesome-4.2.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /pos_sales_summary_cmmi/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | access_so_report_pos_order,report.so.pos.order,model_report_so_pos_order,point_of_sale.group_pos_user,1,1,1,1 3 | -------------------------------------------------------------------------------- /pos_session_print_by_proxy_cmmi/static/src/js/main.js: -------------------------------------------------------------------------------- 1 | openerp.pos_session_print_by_proxy = function(instance) { 2 | 3 | var module = instance.posbox_proxy_backend; 4 | 5 | openerp_print_pos_session(instance,module); 6 | }; 7 | 8 | 9 | -------------------------------------------------------------------------------- /pos_session_print_by_proxy_cmmi/static/src/js/main.js~: -------------------------------------------------------------------------------- 1 | openerp.pos_session_print_by_proxy = function(instance) { 2 | 3 | var module = instance.posbox_proxy_backend; 4 | 5 | openerp_print_pos_session(instance,module); 6 | }; 7 | 8 | 9 | -------------------------------------------------------------------------------- /pos_sales_summary_tropical/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | access_so_report_pos_order,report.so.pos.order,model_report_so_pos_order,point_of_sale.group_pos_user,1,1,1,1 3 | -------------------------------------------------------------------------------- /pos_sales_summary_tukis/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | access_so_report_pos_order,report.so.pos.order,model_report_so_pos_order,point_of_sale.group_pos_user,1,1,1,1 3 | -------------------------------------------------------------------------------- /point_of_sale/report/user_label.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /point_of_sale_v9_backport/report/user_label.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /pos_discount/static/src/xml/discount.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | Discount 7 |
8 |
9 | 10 |
11 | -------------------------------------------------------------------------------- /pos_transfer/static/src/xml/transfer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | Transfer 7 |
8 |
9 | 10 |
11 | -------------------------------------------------------------------------------- /pos_reprint_v9_backport/static/src/xml/reprint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | Reprint Receipt 7 |
8 |
9 | 10 |
11 | -------------------------------------------------------------------------------- /posbox_proxy_backend/posbox_proxy_device_data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Default IP 6 | http://localhost:8069 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /point_of_sale/test/test_frontend.py: -------------------------------------------------------------------------------- 1 | 2 | import openerp.tests 3 | 4 | @openerp.tests.common.at_install(False) 5 | @openerp.tests.common.post_install(True) 6 | class TestUi(openerp.tests.HttpCase): 7 | def test_01_pos_basic_order(self): 8 | self.phantom_js("/", "openerp.Tour.run('pos_basic_order', 'test')", "openerp.Tour.tours.pos_basic_order", login="admin") 9 | 10 | -------------------------------------------------------------------------------- /point_of_sale_v9_backport/test/test_frontend.py: -------------------------------------------------------------------------------- 1 | 2 | import openerp.tests 3 | 4 | @openerp.tests.common.at_install(False) 5 | @openerp.tests.common.post_install(True) 6 | class TestUi(openerp.tests.HttpCase): 7 | def test_01_pos_basic_order(self): 8 | self.phantom_js("/", "openerp.Tour.run('pos_basic_order', 'test')", "openerp.Tour.tours.pos_basic_order", login="admin") 9 | 10 | -------------------------------------------------------------------------------- /pos_restaurant_v9_backport/static/src/js/main.js: -------------------------------------------------------------------------------- 1 | openerp.pos_restaurant = function(instance){ 2 | 3 | var module = instance.point_of_sale; 4 | 5 | openerp_restaurant_splitbill(instance,module); 6 | 7 | openerp_restaurant_printbill(instance,module); 8 | 9 | openerp_restaurant_floors(instance,module); 10 | 11 | openerp_restaurant_multiprint(instance,module); 12 | }; 13 | -------------------------------------------------------------------------------- /pos_discount/views/templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pos_transfer/views/templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pos_reprint_v9_backport/views/templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pos_barcodes/views/templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /point_of_sale/test/00_register_open.yml: -------------------------------------------------------------------------------- 1 | - 2 | In order to test the Point of Sale module, I will open all cash registers through the wizard 3 | - 4 | I go to the window to open the cash registers as admin 5 | - 6 | !record {model: pos.open.statement, id: new_statement_open}: 7 | - 8 | I click on the button to open all statements/cash registers 9 | - 10 | !python {model: pos.open.statement}: | 11 | self.open_statement(cr, uid, [ref('new_statement_open')], context={}) 12 | -------------------------------------------------------------------------------- /point_of_sale_v9_backport/test/00_register_open.yml: -------------------------------------------------------------------------------- 1 | - 2 | In order to test the Point of Sale module, I will open all cash registers through the wizard 3 | - 4 | I go to the window to open the cash registers as admin 5 | - 6 | !record {model: pos.open.statement, id: new_statement_open}: 7 | - 8 | I click on the button to open all statements/cash registers 9 | - 10 | !python {model: pos.open.statement}: | 11 | self.open_statement(cr, uid, [ref('new_statement_open')], context={}) 12 | -------------------------------------------------------------------------------- /pos_barcodes/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | access_barcode_nomenclature,barcode.nomenclature.user,model_barcode_nomenclature,point_of_sale.group_pos_user,1,0,0,0 3 | access_barcode_nomenclature_manager,barcode.nomenclature.manager,model_barcode_nomenclature,point_of_sale.group_pos_manager,1,1,1,1 4 | access_barcode_rule,barcode.rule.user,model_barcode_rule,point_of_sale.group_pos_user,1,0,0,0 5 | access_barcode_rule_manager,barcode.rule.manager,model_barcode_rule,point_of_sale.group_pos_manager,1,1,1,1 6 | -------------------------------------------------------------------------------- /point_of_sale/account_statement_demo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /point_of_sale_v9_backport/account_statement_demo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /pos_loyalty_v9_backport/static/src/css/loyalty.css: -------------------------------------------------------------------------------- 1 | 2 | .pos .order .summary .loyalty-points{ 3 | margin-left: 20px; 4 | float: left; 5 | padding: 10px; 6 | max-width: 216px; 7 | text-align: left; 8 | color: #6EC89B; 9 | background: rgba(110, 200, 155, 0.17); 10 | border-radius: 3px; 11 | } 12 | .pos .order .summary .loyalty-points.negative{ 13 | color: #C86E6E; 14 | background: rgba(200, 110, 110, 0.17); 15 | } 16 | .pos .order .summary .loyalty-points-total { 17 | border-top: solid 2px; 18 | text-align: center; 19 | padding-top: 4px; 20 | margin-top: 4px; 21 | } 22 | -------------------------------------------------------------------------------- /pos_session_cashier_account_payable/__openerp__.py: -------------------------------------------------------------------------------- 1 | { "name" : "POS Session Account Payables by Cashier" 2 | , "version" : "1.1" 3 | , "author" : "CYSFuturo" 4 | , "website" : "http://www.cysfuturo.com" 5 | , "category" : "Generic Modules/Others" 6 | , "depends" : ["product"] 7 | , "description" : """ 8 | Uses profit/loss account on cash journal to keep track of account payables/receivables for cashiers 9 | """ 10 | , "init_xml" : [] 11 | , "demo" : [] 12 | , "update_xml" : [] #"point_of_sale_view.xml"] 13 | , "auto_install" : False 14 | , "installable" : True 15 | , 'application' : False 16 | } 17 | -------------------------------------------------------------------------------- /point_of_sale/static/src/xml/notes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
  • 8 | 9 |
  • 10 |
    11 |
    12 |
    13 | 14 | 15 |
    16 | Note 17 |
    18 |
    19 | 20 |
    21 | -------------------------------------------------------------------------------- /point_of_sale/res_partner.py: -------------------------------------------------------------------------------- 1 | 2 | import math 3 | 4 | from openerp.osv import osv, fields 5 | 6 | import openerp.addons.product.product 7 | 8 | 9 | class res_users(osv.osv): 10 | _inherit = 'res.partner' 11 | _columns = { 12 | 'ean13' : fields.char('EAN13', size=13, help="BarCode"), 13 | } 14 | 15 | def _check_ean(self, cr, uid, ids, context=None): 16 | return all( 17 | openerp.addons.product.product.check_ean(user.ean13) == True 18 | for user in self.browse(cr, uid, ids, context=context) 19 | ) 20 | 21 | _constraints = [ 22 | (_check_ean, "Error: Invalid ean code", ['ean13'],), 23 | ] 24 | 25 | -------------------------------------------------------------------------------- /point_of_sale_v9_backport/static/src/xml/notes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
  • 8 | 9 |
  • 10 |
    11 |
    12 |
    13 | 14 | 15 |
    16 | Note 17 |
    18 |
    19 | 20 |
    21 | -------------------------------------------------------------------------------- /point_of_sale_v9_backport/res_partner.py: -------------------------------------------------------------------------------- 1 | 2 | import math 3 | 4 | from openerp.osv import osv, fields 5 | 6 | import openerp.addons.product.product 7 | 8 | 9 | class res_users(osv.osv): 10 | _inherit = 'res.partner' 11 | _columns = { 12 | 'ean13' : fields.char('EAN13', size=13, help="BarCode"), 13 | } 14 | 15 | def _check_ean(self, cr, uid, ids, context=None): 16 | return all( 17 | openerp.addons.product.product.check_ean(user.ean13) == True 18 | for user in self.browse(cr, uid, ids, context=context) 19 | ) 20 | 21 | _constraints = [ 22 | (_check_ean, "Error: Invalid ean code", ['ean13'],), 23 | ] 24 | 25 | --------------------------------------------------------------------------------