diff --git a/hotel_restaurant/.copier-answers.yml b/hotel_restaurant/.copier-answers.yml new file mode 100644 index 000000000..eac4ae071 --- /dev/null +++ b/hotel_restaurant/.copier-answers.yml @@ -0,0 +1,23 @@ +# Do NOT update manually; changes here will be overwritten by Copier +_commit: v1.14.2 +_src_path: gh:oca/oca-addons-repo-template +ci: GitHub +dependency_installation_mode: PIP +generate_requirements_txt: true +github_check_license: true +github_ci_extra_env: {} +github_enable_codecov: true +github_enable_makepot: true +github_enable_stale_action: true +github_enforce_dev_status_compatibility: true +include_wkhtmltopdf: false +odoo_version: 16.0 +org_name: Odoo Community Association (OCA) +org_slug: OCA +rebel_module_groups: [] +repo_description: "TODO: add repo description." +repo_name: vertical-hotel +repo_slug: vertical-hotel +repo_website: https://github.com/OCA/vertical-hotel +travis_apt_packages: [] +travis_apt_sources: [] diff --git a/hotel_restaurant/.editorconfig b/hotel_restaurant/.editorconfig new file mode 100644 index 000000000..bfd7ac53d --- /dev/null +++ b/hotel_restaurant/.editorconfig @@ -0,0 +1,20 @@ +# Configuration for known file extensions +[*.{css,js,json,less,md,py,rst,sass,scss,xml,yaml,yml}] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,yml,yaml,rst,md}] +indent_size = 2 + +# Do not configure editor for libs and autogenerated content +[{*/static/{lib,src/lib}/**,*/static/description/index.html,*/readme/../README.rst}] +charset = unset +end_of_line = unset +indent_size = unset +indent_style = unset +insert_final_newline = false +trim_trailing_whitespace = false diff --git a/hotel_restaurant/.eslintrc.yml b/hotel_restaurant/.eslintrc.yml new file mode 100644 index 000000000..9429bc688 --- /dev/null +++ b/hotel_restaurant/.eslintrc.yml @@ -0,0 +1,187 @@ +env: + browser: true + es6: true + +# See https://github.com/OCA/odoo-community.org/issues/37#issuecomment-470686449 +parserOptions: + ecmaVersion: 2019 + +overrides: + - files: + - "**/*.esm.js" + parserOptions: + sourceType: module + +# Globals available in Odoo that shouldn't produce errorings +globals: + _: readonly + $: readonly + fuzzy: readonly + jQuery: readonly + moment: readonly + odoo: readonly + openerp: readonly + owl: readonly + +# Styling is handled by Prettier, so we only need to enable AST rules; +# see https://github.com/OCA/maintainer-quality-tools/pull/618#issuecomment-558576890 +rules: + accessor-pairs: warn + array-callback-return: warn + callback-return: warn + capitalized-comments: + - warn + - always + - ignoreConsecutiveComments: true + ignoreInlineComments: true + complexity: + - warn + - 15 + constructor-super: warn + dot-notation: warn + eqeqeq: warn + global-require: warn + handle-callback-err: warn + id-blacklist: warn + id-match: warn + init-declarations: error + max-depth: warn + max-nested-callbacks: warn + max-statements-per-line: warn + no-alert: warn + no-array-constructor: warn + no-caller: warn + no-case-declarations: warn + no-class-assign: warn + no-cond-assign: error + no-const-assign: error + no-constant-condition: warn + no-control-regex: warn + no-debugger: error + no-delete-var: warn + no-div-regex: warn + no-dupe-args: error + no-dupe-class-members: error + no-dupe-keys: error + no-duplicate-case: error + no-duplicate-imports: error + no-else-return: warn + no-empty-character-class: warn + no-empty-function: error + no-empty-pattern: error + no-empty: warn + no-eq-null: error + no-eval: error + no-ex-assign: error + no-extend-native: warn + no-extra-bind: warn + no-extra-boolean-cast: warn + no-extra-label: warn + no-fallthrough: warn + no-func-assign: error + no-global-assign: error + no-implicit-coercion: + - warn + - allow: ["~"] + no-implicit-globals: warn + no-implied-eval: warn + no-inline-comments: warn + no-inner-declarations: warn + no-invalid-regexp: warn + no-irregular-whitespace: warn + no-iterator: warn + no-label-var: warn + no-labels: warn + no-lone-blocks: warn + no-lonely-if: error + no-mixed-requires: error + no-multi-str: warn + no-native-reassign: error + no-negated-condition: warn + no-negated-in-lhs: error + no-new-func: warn + no-new-object: warn + no-new-require: warn + no-new-symbol: warn + no-new-wrappers: warn + no-new: warn + no-obj-calls: warn + no-octal-escape: warn + no-octal: warn + no-param-reassign: warn + no-path-concat: warn + no-process-env: warn + no-process-exit: warn + no-proto: warn + no-prototype-builtins: warn + no-redeclare: warn + no-regex-spaces: warn + no-restricted-globals: warn + no-restricted-imports: warn + no-restricted-modules: warn + no-restricted-syntax: warn + no-return-assign: error + no-script-url: warn + no-self-assign: warn + no-self-compare: warn + no-sequences: warn + no-shadow-restricted-names: warn + no-shadow: warn + no-sparse-arrays: warn + no-sync: warn + no-this-before-super: warn + no-throw-literal: warn + no-undef-init: warn + no-undef: error + no-unmodified-loop-condition: warn + no-unneeded-ternary: error + no-unreachable: error + no-unsafe-finally: error + no-unused-expressions: error + no-unused-labels: error + no-unused-vars: error + no-use-before-define: error + no-useless-call: warn + no-useless-computed-key: warn + no-useless-concat: warn + no-useless-constructor: warn + no-useless-escape: warn + no-useless-rename: warn + no-void: warn + no-with: warn + operator-assignment: [error, always] + prefer-const: warn + radix: warn + require-yield: warn + sort-imports: warn + spaced-comment: [error, always] + strict: [error, function] + use-isnan: error + valid-jsdoc: + - warn + - prefer: + arg: param + argument: param + augments: extends + constructor: class + exception: throws + func: function + method: function + prop: property + return: returns + virtual: abstract + yield: yields + preferType: + array: Array + bool: Boolean + boolean: Boolean + number: Number + object: Object + str: String + string: String + requireParamDescription: false + requireReturn: false + requireReturnDescription: false + requireReturnType: false + valid-typeof: warn + yoda: warn diff --git a/hotel_restaurant/.flake8 b/hotel_restaurant/.flake8 new file mode 100644 index 000000000..e397e8ed4 --- /dev/null +++ b/hotel_restaurant/.flake8 @@ -0,0 +1,12 @@ +[flake8] +max-line-length = 88 +max-complexity = 16 +# B = bugbear +# B9 = bugbear opinionated (incl line length) +select = C,E,F,W,B,B9 +# E203: whitespace before ':' (black behaviour) +# E501: flake8 line length (covered by bugbear B950) +# W503: line break before binary operator (black behaviour) +ignore = E203,E501,W503 +per-file-ignores= + __init__.py:F401 diff --git a/hotel_restaurant/.github/workflows/pre-commit.yml b/hotel_restaurant/.github/workflows/pre-commit.yml new file mode 100644 index 000000000..23e6e58d6 --- /dev/null +++ b/hotel_restaurant/.github/workflows/pre-commit.yml @@ -0,0 +1,35 @@ +name: pre-commit + +on: + pull_request: + branches: + - "16.0*" + push: + branches: + - "16.0" + - "16.0-ocabot-*" + +jobs: + pre-commit: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + - name: Get python version + run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV + - uses: actions/cache@v1 + with: + path: ~/.cache/pre-commit + key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} + - name: Install pre-commit + run: pip install pre-commit + - name: Run pre-commit + run: pre-commit run --all-files --show-diff-on-failure --color=always + - name: Check that all files generated by pre-commit are in git + run: | + newfiles="$(git ls-files --others --exclude-from=.gitignore)" + if [ "$newfiles" != "" ] ; then + echo "Please check-in the following files:" + echo "$newfiles" + exit 1 + fi diff --git a/hotel_restaurant/.github/workflows/stale.yml b/hotel_restaurant/.github/workflows/stale.yml new file mode 100644 index 000000000..1693a1253 --- /dev/null +++ b/hotel_restaurant/.github/workflows/stale.yml @@ -0,0 +1,69 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "0 12 * * 0" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - name: Stale PRs and issues policy + uses: actions/stale@v4 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + # General settings. + ascending: true + remove-stale-when-updated: true + # Pull Requests settings. + # 120+30 day stale policy for PRs + # * Except PRs marked as "no stale" + days-before-pr-stale: 120 + days-before-pr-close: 30 + exempt-pr-labels: "no stale" + stale-pr-label: "stale" + stale-pr-message: > + There hasn't been any activity on this pull request in the past 4 months, so + it has been marked as stale and it will be closed automatically if no + further activity occurs in the next 30 days. + + If you want this PR to never become stale, please ask a PSC member to apply + the "no stale" label. + # Issues settings. + # 180+30 day stale policy for open issues + # * Except Issues marked as "no stale" + days-before-issue-stale: 180 + days-before-issue-close: 30 + exempt-issue-labels: "no stale,needs more information" + stale-issue-label: "stale" + stale-issue-message: > + There hasn't been any activity on this issue in the past 6 months, so it has + been marked as stale and it will be closed automatically if no further + activity occurs in the next 30 days. + + If you want this issue to never become stale, please ask a PSC member to + apply the "no stale" label. + + # 15+30 day stale policy for issues pending more information + # * Issues that are pending more information + # * Except Issues marked as "no stale" + - name: Needs more information stale issues policy + uses: actions/stale@v4 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + ascending: true + only-labels: "needs more information" + exempt-issue-labels: "no stale" + days-before-stale: 15 + days-before-close: 30 + days-before-pr-stale: -1 + days-before-pr-close: -1 + remove-stale-when-updated: true + stale-issue-label: "stale" + stale-issue-message: > + This issue needs more information and there hasn't been any activity + recently, so it has been marked as stale and it will be closed automatically + if no further activity occurs in the next 30 days. + + If you think this is a mistake, please ask a PSC member to remove the "needs + more information" label. diff --git a/hotel_restaurant/.github/workflows/test.yml b/hotel_restaurant/.github/workflows/test.yml new file mode 100644 index 000000000..4c2842cc5 --- /dev/null +++ b/hotel_restaurant/.github/workflows/test.yml @@ -0,0 +1,73 @@ +name: tests + +on: + pull_request: + branches: + - "16.0*" + push: + branches: + - "16.0" + - "16.0-ocabot-*" + +jobs: + unreleased-deps: + runs-on: ubuntu-latest + name: Detect unreleased dependencies + steps: + - uses: actions/checkout@v2 + - run: | + for reqfile in requirements.txt test-requirements.txt ; do + if [ -f ${reqfile} ] ; then + result=0 + # reject non-comment lines that contain a / (i.e. URLs, relative paths) + grep "^[^#].*/" ${reqfile} || result=$? + if [ $result -eq 0 ] ; then + echo "Unreleased dependencies found in ${reqfile}." + exit 1 + fi + fi + done + test: + runs-on: ubuntu-22.04 + container: ${{ matrix.container }} + name: ${{ matrix.name }} + strategy: + fail-fast: false + matrix: + include: + - container: ghcr.io/oca/oca-ci/py3.10-odoo16.0:latest + makepot: "true" + name: test with Odoo + - container: ghcr.io/oca/oca-ci/py3.10-ocb16.0:latest + name: test with OCB + services: + postgres: + image: postgres:12.0 + env: + POSTGRES_USER: odoo + POSTGRES_PASSWORD: odoo + POSTGRES_DB: odoo + ports: + - 5432:5432 + steps: + - uses: actions/checkout@v2 + with: + persist-credentials: false + - name: Install addons and dependencies + run: oca_install_addons + - name: Check licenses + run: manifestoo -d . check-licenses + - name: Check development status + run: manifestoo -d . check-dev-status --default-dev-status=Beta + - name: Initialize test db + run: oca_init_test_database + - name: Run tests + run: oca_run_tests + - uses: codecov/codecov-action@v1 + - name: Update .pot files + run: + oca_export_and_push_pot https://x-access-token:${{ secrets.GIT_PUSH_TOKEN + }}@github.com/${{ github.repository }} + if: + ${{ matrix.makepot == 'true' && github.event_name == 'push' && + github.repository_owner == 'OCA' }} diff --git a/hotel_restaurant/.gitignore b/hotel_restaurant/.gitignore new file mode 100644 index 000000000..9c283fd41 --- /dev/null +++ b/hotel_restaurant/.gitignore @@ -0,0 +1,74 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +/.venv +/.pytest_cache + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg +*.eggs + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Pycharm +.idea + +# Eclipse +.settings + +# Visual Studio cache/options directory +.vs/ +.vscode + +# OSX Files +.DS_Store + +# Django stuff: +*.log + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Sphinx documentation +docs/_build/ + +# Backup files +*~ +*.swp + +# OCA rules +!static/lib/ diff --git a/hotel_restaurant/.isort.cfg b/hotel_restaurant/.isort.cfg new file mode 100644 index 000000000..0ec187efd --- /dev/null +++ b/hotel_restaurant/.isort.cfg @@ -0,0 +1,13 @@ +[settings] +; see https://github.com/psf/black +multi_line_output=3 +include_trailing_comma=True +force_grid_wrap=0 +combine_as_imports=True +use_parentheses=True +line_length=88 +known_odoo=odoo +known_odoo_addons=odoo.addons +sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER +default_section=THIRDPARTY +ensure_newline_before_comments = True diff --git a/hotel_restaurant/.pre-commit-config.yaml b/hotel_restaurant/.pre-commit-config.yaml new file mode 100644 index 000000000..283205e47 --- /dev/null +++ b/hotel_restaurant/.pre-commit-config.yaml @@ -0,0 +1,138 @@ +exclude: | + (?x) + # NOT INSTALLABLE ADDONS + # END NOT INSTALLABLE ADDONS + # Files and folders generated by bots, to avoid loops + ^setup/|/static/description/index\.html$| + # We don't want to mess with tool-generated files + .svg$|/tests/([^/]+/)?cassettes/|^.copier-answers.yml$|^.github/| + # Maybe reactivate this when all README files include prettier ignore tags? + ^README\.md$| + # Library files can have extraneous formatting (even minimized) + /static/(src/)?lib/| + # Repos using Sphinx to generate docs don't need prettying + ^docs/_templates/.*\.html$| + # You don't usually want a bot to modify your legal texts + (LICENSE.*|COPYING.*) +default_language_version: + python: python3 + node: "16.17.0" +repos: + - repo: local + hooks: + # These files are most likely copier diff rejection junks; if found, + # review them manually, fix the problem (if needed) and remove them + - id: forbidden-files + name: forbidden files + entry: found forbidden files; remove them + language: fail + files: "\\.rej$" + - id: en-po-files + name: en.po files cannot exist + entry: found a en.po file + language: fail + files: '[a-zA-Z0-9_]*/i18n/en\.po$' + - repo: https://github.com/oca/maintainer-tools + rev: 4cd2b852214dead80822e93e6749b16f2785b2fe + hooks: + # update the NOT INSTALLABLE ADDONS section above + - id: oca-update-pre-commit-excluded-addons + - id: oca-fix-manifest-website + args: ["https://github.com/OCA/vertical-hotel"] + - repo: https://github.com/myint/autoflake + rev: v1.6.1 + hooks: + - id: autoflake + args: + - --expand-star-imports + - --ignore-init-module-imports + - --in-place + - --remove-all-unused-imports + - --remove-duplicate-keys + - --remove-unused-variables + - repo: https://github.com/psf/black + rev: 22.8.0 + hooks: + - id: black + - repo: https://github.com/pre-commit/mirrors-prettier + rev: v2.7.1 + hooks: + - id: prettier + name: prettier (with plugin-xml) + additional_dependencies: + - "prettier@2.7.1" + - "@prettier/plugin-xml@2.2.0" + args: + - --plugin=@prettier/plugin-xml + files: \.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$ + - repo: https://github.com/pre-commit/mirrors-eslint + rev: v8.24.0 + hooks: + - id: eslint + verbose: true + args: + - --color + - --fix + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.3.0 + hooks: + - id: trailing-whitespace + # exclude autogenerated files + exclude: /README\.rst$|\.pot?$ + - id: end-of-file-fixer + # exclude autogenerated files + exclude: /README\.rst$|\.pot?$ + - id: debug-statements + - id: fix-encoding-pragma + args: ["--remove"] + - id: check-case-conflict + - id: check-docstring-first + - id: check-executables-have-shebangs + - id: check-merge-conflict + # exclude files where underlines are not distinguishable from merge conflicts + exclude: /README\.rst$|^docs/.*\.rst$ + - id: check-symlinks + - id: check-xml + - id: mixed-line-ending + args: ["--fix=lf"] + - repo: https://github.com/asottile/pyupgrade + rev: v2.38.2 + hooks: + - id: pyupgrade + args: ["--keep-percent-format"] + - repo: https://github.com/PyCQA/isort + rev: 5.12.0 + hooks: + - id: isort + name: isort except __init__.py + args: + - --settings=. + exclude: /__init__\.py$ + - repo: https://github.com/acsone/setuptools-odoo + rev: 3.1.8 + hooks: + - id: setuptools-odoo-make-default + - id: setuptools-odoo-get-requirements + args: + - --output + - requirements.txt + - --header + - "# generated from manifests external_dependencies" + - repo: https://github.com/PyCQA/flake8 + rev: 3.9.2 + hooks: + - id: flake8 + name: flake8 + additional_dependencies: ["flake8-bugbear==21.9.2"] + - repo: https://github.com/OCA/pylint-odoo + rev: 7.0.2 + hooks: + - id: pylint_odoo + name: pylint with optional checks + args: + - --rcfile=.pylintrc + - --exit-zero + verbose: true + - id: pylint_odoo + args: + - --rcfile=.pylintrc-mandatory diff --git a/hotel_restaurant/.prettierrc.yml b/hotel_restaurant/.prettierrc.yml new file mode 100644 index 000000000..5b6d4b361 --- /dev/null +++ b/hotel_restaurant/.prettierrc.yml @@ -0,0 +1,8 @@ +# Defaults for all prettier-supported languages. +# Prettier will complete this with settings from .editorconfig file. +bracketSpacing: false +printWidth: 88 +proseWrap: always +semi: true +trailingComma: "es5" +xmlWhitespaceSensitivity: "strict" diff --git a/hotel_restaurant/.pylintrc b/hotel_restaurant/.pylintrc new file mode 100644 index 000000000..cad9c2f1b --- /dev/null +++ b/hotel_restaurant/.pylintrc @@ -0,0 +1,123 @@ + + +[MASTER] +load-plugins=pylint_odoo +score=n + +[ODOOLINT] +readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" +manifest_required_authors=Odoo Community Association (OCA) +manifest_required_keys=license +manifest_deprecated_keys=description,active +license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3 +valid_odoo_versions=16.0 + +[MESSAGES CONTROL] +disable=all + +# This .pylintrc contains optional AND mandatory checks and is meant to be +# loaded in an IDE to have it check everything, in the hope this will make +# optional checks more visible to contributors who otherwise never look at a +# green travis to see optional checks that failed. +# .pylintrc-mandatory containing only mandatory checks is used the pre-commit +# config as a blocking check. + +enable=anomalous-backslash-in-string, + api-one-deprecated, + api-one-multi-together, + assignment-from-none, + attribute-deprecated, + class-camelcase, + dangerous-default-value, + dangerous-view-replace-wo-priority, + development-status-allowed, + duplicate-id-csv, + duplicate-key, + duplicate-xml-fields, + duplicate-xml-record-id, + eval-referenced, + eval-used, + incoherent-interpreter-exec-perm, + license-allowed, + manifest-author-string, + manifest-deprecated-key, + manifest-required-author, + manifest-required-key, + manifest-version-format, + method-compute, + method-inverse, + method-required-super, + method-search, + openerp-exception-warning, + pointless-statement, + pointless-string-statement, + print-used, + redundant-keyword-arg, + redundant-modulename-xml, + reimported, + relative-import, + return-in-init, + rst-syntax-error, + sql-injection, + too-few-format-args, + translation-field, + translation-required, + unreachable, + use-vim-comment, + wrong-tabs-instead-of-spaces, + xml-syntax-error, + attribute-string-redundant, + character-not-valid-in-resource-link, + consider-merging-classes-inherited, + context-overridden, + create-user-wo-reset-password, + dangerous-filter-wo-user, + dangerous-qweb-replace-wo-priority, + deprecated-data-xml-node, + deprecated-openerp-xml-node, + duplicate-po-message-definition, + except-pass, + file-not-used, + invalid-commit, + manifest-maintainers-list, + missing-newline-extrafiles, + missing-readme, + missing-return, + odoo-addons-relative-import, + old-api7-method-defined, + po-msgstr-variables, + po-syntax-error, + renamed-field-parameter, + resource-not-exist, + str-format-used, + test-folder-imported, + translation-contains-variable, + translation-positional-used, + unnecessary-utf8-coding-comment, + website-manifest-key-not-valid-uri, + xml-attribute-translatable, + xml-deprecated-qweb-directive, + xml-deprecated-tree-attribute, + external-request-timeout, + # messages that do not cause the lint step to fail + consider-merging-classes-inherited, + create-user-wo-reset-password, + dangerous-filter-wo-user, + deprecated-module, + file-not-used, + invalid-commit, + missing-manifest-dependency, + missing-newline-extrafiles, + missing-readme, + no-utf8-coding-comment, + odoo-addons-relative-import, + old-api7-method-defined, + redefined-builtin, + too-complex, + unnecessary-utf8-coding-comment + + +[REPORTS] +msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} +output-format=colorized +reports=no diff --git a/hotel_restaurant/.pylintrc-mandatory b/hotel_restaurant/.pylintrc-mandatory new file mode 100644 index 000000000..fa4b81c41 --- /dev/null +++ b/hotel_restaurant/.pylintrc-mandatory @@ -0,0 +1,98 @@ + +[MASTER] +load-plugins=pylint_odoo +score=n + +[ODOOLINT] +readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" +manifest_required_authors=Odoo Community Association (OCA) +manifest_required_keys=license +manifest_deprecated_keys=description,active +license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3 +valid_odoo_versions=16.0 + +[MESSAGES CONTROL] +disable=all + +enable=anomalous-backslash-in-string, + api-one-deprecated, + api-one-multi-together, + assignment-from-none, + attribute-deprecated, + class-camelcase, + dangerous-default-value, + dangerous-view-replace-wo-priority, + development-status-allowed, + duplicate-id-csv, + duplicate-key, + duplicate-xml-fields, + duplicate-xml-record-id, + eval-referenced, + eval-used, + incoherent-interpreter-exec-perm, + license-allowed, + manifest-author-string, + manifest-deprecated-key, + manifest-required-author, + manifest-required-key, + manifest-version-format, + method-compute, + method-inverse, + method-required-super, + method-search, + openerp-exception-warning, + pointless-statement, + pointless-string-statement, + print-used, + redundant-keyword-arg, + redundant-modulename-xml, + reimported, + relative-import, + return-in-init, + rst-syntax-error, + sql-injection, + too-few-format-args, + translation-field, + translation-required, + unreachable, + use-vim-comment, + wrong-tabs-instead-of-spaces, + xml-syntax-error, + attribute-string-redundant, + character-not-valid-in-resource-link, + consider-merging-classes-inherited, + context-overridden, + create-user-wo-reset-password, + dangerous-filter-wo-user, + dangerous-qweb-replace-wo-priority, + deprecated-data-xml-node, + deprecated-openerp-xml-node, + duplicate-po-message-definition, + except-pass, + file-not-used, + invalid-commit, + manifest-maintainers-list, + missing-newline-extrafiles, + missing-readme, + missing-return, + odoo-addons-relative-import, + old-api7-method-defined, + po-msgstr-variables, + po-syntax-error, + renamed-field-parameter, + resource-not-exist, + str-format-used, + test-folder-imported, + translation-contains-variable, + translation-positional-used, + unnecessary-utf8-coding-comment, + website-manifest-key-not-valid-uri, + xml-attribute-translatable, + xml-deprecated-qweb-directive, + xml-deprecated-tree-attribute, + external-request-timeout + +[REPORTS] +msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} +output-format=colorized +reports=no diff --git a/hotel_restaurant/README.rst b/hotel_restaurant/README.rst new file mode 100644 index 000000000..b7a13f580 --- /dev/null +++ b/hotel_restaurant/README.rst @@ -0,0 +1,113 @@ +=========================== +Hotel Restaurant Management +=========================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:530b662e8a6d6beabfc9a0fd7eda61394be4cc0046313eedc75639328369f9c5 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fvertical--hotel-lightgray.png?logo=github + :target: https://github.com/OCA/vertical-hotel/tree/16.0/hotel_restaurant + :alt: OCA/vertical-hotel +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/vertical-hotel-16-0/vertical-hotel-16-0-hotel_restaurant + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/vertical-hotel&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This Module is providing table booking facilities and Managing customers orders + +You can manage: + +* Restaurant Configuration (Food Item, Table) + +* **Table Reservation** + +.. image:: https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res2.png + :width: 750px + +* **Manage Food Orders** + +.. image:: https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res3.png + :width: 750px + +* **Manage Kitchen Order ticket** + +.. image:: https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res4.png + :width: 750px + +* **Quick Table Reservation Facility With Its Food Order** + +.. image:: https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res5.png + :width: 750px + +* **Order's History In Hotel Folio** + +.. image:: https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res6.png + :width: 750px + +* Payment + +* Different Reports are also provided, mainly for Restaurant. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Serpent Consulting Services Pvt. Ltd. +* Odoo S.A. + +Contributors +~~~~~~~~~~~~ + +* Odoo Community Association (OCA) +* Serpent Consulting Services Pvt. Ltd. +* Odoo S.A. +* Rajan Patel + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/vertical-hotel `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/hotel_restaurant/__init__.py b/hotel_restaurant/__init__.py new file mode 100644 index 000000000..92d966011 --- /dev/null +++ b/hotel_restaurant/__init__.py @@ -0,0 +1,5 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import models +from . import wizard +from . import report diff --git a/hotel_restaurant/__manifest__.py b/hotel_restaurant/__manifest__.py new file mode 100644 index 000000000..db83c732b --- /dev/null +++ b/hotel_restaurant/__manifest__.py @@ -0,0 +1,27 @@ +# Copyright (C) 2023-TODAY Serpent Consulting Services Pvt. Ltd. (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Hotel Restaurant Management", + "version": "16.0.1.0.0", + "author": "Odoo Community Association (OCA), Serpent Consulting\ + Services Pvt. Ltd., Odoo S.A.", + "category": "Generic Modules/Hotel Restaurant", + "website": "https://github.com/OCA/vertical-hotel", + "depends": ["hotel", "point_of_sale"], + "license": "AGPL-3", + "summary": "Table booking facilities and Managing customers orders", + "demo": ["demo/hotel_restaurant_data.xml"], + "data": [ + "security/ir.model.access.csv", + "report/hotel_restaurant_report.xml", + "views/res_table.xml", + "views/kot.xml", + "views/bill.xml", + "views/folio_order_report.xml", + "views/hotel_restaurant_sequence.xml", + "views/hotel_restaurant_view.xml", + "wizard/hotel_restaurant_wizard.xml", + ], + "installable": True, +} diff --git a/hotel_restaurant/demo/hotel_restaurant_data.xml b/hotel_restaurant/demo/hotel_restaurant_data.xml new file mode 100644 index 000000000..fa062a7dc --- /dev/null +++ b/hotel_restaurant/demo/hotel_restaurant_data.xml @@ -0,0 +1,342 @@ + + + + + + + + + + + + + + + + + + + + + + + + + All FoodItems + + + + Punjabi + + + + South Indian + + + + Gujarati + + + + + Paneer Tikaa + + 50.00 + + + + Tanduri Roti + + 10 + + + + Paneer Butter Masala + + 60.00 + + + + Cheese Masala + + 110.00 + + + + Paneer Bhurji + + 80.00 + + + + Mutter Paneer + + 70.00 + + + + Malai Kofta + + 85.00 + + + + Masala kulcha + + 30 + + + + Paneer Makhani + + 90.00 + + + + + + Chole-Bhature + + 60.00 + + + + Bahji Pav + + 60 + + + + Khandvi + + 40 + + + + Halva + + 80 + + + + + + Dosa + + 30.00 + + + + Idli-Sambar + + 40.00 + + + + Upma + + 30.00 + + + + Vada-Sambar + + 50.00 + + + + Uttapam + + 70.00 + + + + Appam + + 60.00 + + + + Pongal + + 50.00 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + 50.00 + + + + + + + + + + + + 3 + 30.00 + + + + + + + + + + + + + + + 3 + 30.00 + + + + + + + + + + + + + + 3 + 50.00 + + + diff --git a/hotel_restaurant/i18n/es.po b/hotel_restaurant/i18n/es.po new file mode 100644 index 000000000..2bca513e3 --- /dev/null +++ b/hotel_restaurant/i18n/es.po @@ -0,0 +1,2491 @@ +# Spanish translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-26 07:34:45+0000\n" +"PO-Revision-Date: 2011-02-15 18:06+0000\n" +"Last-Translator: mgaja (GrupoIsep.com) \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-05-03 05:36+0000\n" +"X-Generator: Launchpad (build 15185)\n" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_count +msgid "# Product Variants" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#, fuzzy +msgid "Food Item List" +msgstr "Lista de alimentos" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +#, fuzzy +msgid "Order List" +msgstr "Lista de pedidos" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckIN" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckOut" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +#, fuzzy +msgid "Customer Name" +msgstr "Nombre del cliente" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#, fuzzy +msgid "Date :" +msgstr "Nombre del cliente" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio Number :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Folio Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "From:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Net Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Number." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#, fuzzy +msgid "Reservation No" +msgstr "Número de reserva" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Room No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Served By" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Sub Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "SubTotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +#, fuzzy +msgid "Table Information" +msgstr "Información de la mesa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Tax:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "To:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__description_sale +msgid "" +"A description of the Product that you want to communicate to your customers. " +"This description will be copied to every Sales Order, Delivery Order and " +"Customer Invoice/Credit Note" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__type +msgid "" +"A storable product is a product for which you manage stock. The Inventory " +"app has to be installed.\n" +"A consumable product is a product for which stock is not managed.\n" +"A service is a non-material product you provide." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__active +msgid "Active" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_ids +msgid "Activities" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_state +msgid "Activity State" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__partner_address_id +msgid "Address" +msgstr "Dirección" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_19 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_19_product_product +msgid "Appam" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_template_attribute_value_ids +msgid "Attribute Values" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Available in POS" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_12 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_12_product_product +msgid "Bahji Pav" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__barcode +msgid "Barcode" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_1024_be_zoomed +msgid "Can Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_variant_1024_be_zoomed +msgid "Can Variant Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__purchase_ok +msgid "Can be Purchased" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_ok +msgid "Can be Sold" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__cancel +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__cancel +msgid "Cancelled" +msgstr "Cancelado" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__capacity +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Capacity" +msgstr "Capacidad" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_from_categ_ids +#, fuzzy +msgid "Category Routes" +msgstr "categoría" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Category used in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +#, fuzzy +msgid "Category:" +msgstr "categoría" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#, fuzzy +msgid "Categoty" +msgstr "categoría" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__to_weight +msgid "" +"Check if the product should be weighted using the hardware scale integration." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Check if you want this product to appear in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_5 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_5_product_product +msgid "Cheese Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__child_ids +msgid "Child Categories" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_21 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_21_product_product +msgid "Chole-Bhature" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +#, fuzzy +msgid "Click to Add Food Items" +msgstr "Alimentos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__color +msgid "Color Index" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__combination_indices +msgid "Combination Indices" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__company_id +msgid "Company" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Confirm" +msgstr "Confirmar" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__confirm +msgid "Confirmed" +msgstr "Confirmado" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__standard_price +msgid "Cost" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_currency_id +msgid "Cost Currency" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_method +msgid "Costing Method" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Create Order" +msgstr "Crear pedido" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_uid +#, fuzzy +msgid "Created by" +msgstr "Create Kot" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_date +#, fuzzy +msgid "Created on" +msgstr "Create Kot" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__currency_id +msgid "Currency" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#, fuzzy +msgid "Current Booking" +msgstr "Reserva de mesa" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__qty_available +msgid "" +"Current quantity of products.\n" +"In a context with a single Stock Location, this includes goods stored at " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"stored in the Stock Location of the Warehouse of this Shop, or any of its " +"children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_bill +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_reservation_order_bill +msgid "Customer Bill" +msgstr "Factura cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_delay +#, fuzzy +msgid "Customer Lead Time" +msgstr "Nombre del cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__customer_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__customer_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Customer Name" +msgstr "Nombre del cliente" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Customer Order Bill" +msgstr "Factura pedido de cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__partner_ref +#, fuzzy +msgid "Customer Ref" +msgstr "Nombre del cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__taxes_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#, fuzzy +msgid "Customer Taxes" +msgstr "Nombre del cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_date +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Date" +msgstr "Fecha" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Default taxes used when buying the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__taxes_id +msgid "Default taxes used when selling the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "" +"Default unit of measure used for purchase orders. It must be in the same " +"category as the default unit of measure." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Define vendor pricelists." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "" +"Delivery lead time, in days. It's the number of days, promised to the " +"customer, between the confirmation of the sales order and the delivery." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__route_ids +msgid "" +"Depending on the modules installed, this will allow you to define the route " +"of the product: whether it will be bought, manufactured, replenished on " +"order, etc." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Description" +msgstr "Descripción" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingout +msgid "Description on Delivery Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_picking +#, fuzzy +msgid "Description on Picking" +msgstr "Descripción" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingin +#, fuzzy +msgid "Description on Receptions" +msgstr "Descripciones" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Descriptions" +msgstr "Descripciones" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__display_name +msgid "Display Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__done +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Done" +msgstr "Realizado" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_2 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_2_product_product +msgid "Dosa" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__draft +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Draft" +msgstr "Reserva borrador" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_end +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_end +msgid "End Date" +msgstr "Fecha fin" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "End Date Should be less than the Folio Check-out Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__end_date +#, fuzzy +msgid "End Time" +msgstr "Fecha fin" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__tracking +msgid "Ensure the traceability of a storable product in your warehouse." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "Expense Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "" +"Expenses and vendor bills can be re-invoiced to a customer.With this option, " +"a validated expense can be re-invoice to a customer at its cost or sales " +"price." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__folio_id +msgid "Folio No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_rest_order +msgid "Folio Rest Report" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_form +#: model:ir.ui.menu,name:hotel_restaurant.menu_hotel_food_item +msgid "Food Item" +msgstr "Alimento" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__categ_id +#, fuzzy +msgid "Food Item Category" +msgstr "Lista de alimentos" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +#, fuzzy +msgid "Food Item Name" +msgstr "Alimento" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +#, fuzzy +msgid "Food Item Rate" +msgstr "Lista de alimentos" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_type_view_form +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard_type +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__menu_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +#, fuzzy +msgid "Food Item Type" +msgstr "Tipo de alimentos" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_action_hotel_menucard_type_view_form +#, fuzzy +msgid "Food Item Types" +msgstr "Tipo de alimentos" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_hotel_menucard_form +msgid "Food Items" +msgstr "Alimentos" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Manager" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#, fuzzy +msgid "Food Type" +msgstr "Tipo de alimentos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__virtual_available +#, fuzzy +msgid "Forecast Quantity" +msgstr "Cantidad" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "" +"Forecast quantity (computed as Quantity On Hand - Outgoing + Incoming)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__free_qty +msgid "" +"Forecast quantity (computed as Quantity On Hand - reserved quantity)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__free_qty +msgid "Free To Use Quantity " +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#, fuzzy +msgid "Generate Bill" +msgstr "Generate KOT" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate KOT" +msgstr "Generate KOT" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Gives the different ways to package the same product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sequence +msgid "Gives the sequence order when displaying a product list" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Group By" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_14 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_14_product_product +msgid "Halva" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_list +msgid "Hotel Food Items Type" +msgstr "Tipo de alimentos del hotel" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Hotel Menucard" +msgstr "Carta de menú del hotel" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Hotel Restaurant" +msgstr "Hotel Restaurante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__id +msgid "ID" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_15 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_15_product_product +msgid "Idli-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__active +msgid "" +"If unchecked, it will allow you to hide the product without removing it." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1920 +msgid "Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1024 +msgid "Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_128 +msgid "Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_256 +msgid "Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_512 +msgid "Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__standard_price +msgid "" +"In Standard Price & AVCO: value of the product (automatically computed in " +"AVCO).\n" +" In FIFO: value of the next unit that will leave the stock " +"(automatically computed).\n" +" Used to value the product when the purchase cost is not known (e.g. " +"inventory adjustment).\n" +" Used to compute margins on sale orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_kitchen_order_tickets +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order_list +msgid "Includes Hotel Restaurant Order" +msgstr "Incluye pedido del restaurante del hotel" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_reservation +msgid "Includes Hotel Restaurant Reservation" +msgstr "Incluye reserva en el restaurante del hotel" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_tables +msgid "Includes Hotel Restaurant Table" +msgstr "Incluye mesa en el restaurante del hotel" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "Income Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "Incoming" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Information" +msgstr "Información" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__default_code +msgid "Internal Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__barcode +msgid "International Article Number used for product identification." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_inventory +#, fuzzy +msgid "Inventory Location" +msgstr "Información" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valuation +#, fuzzy +msgid "Inventory Valuation" +msgstr "Información" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "Invoicing Policy" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__iscategid +msgid "Is Categ" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__is_product_variant +msgid "Is Product Variant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isroom +msgid "Is Room" +msgstr "Es habitación" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isservice +msgid "Is Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__is_folio +msgid "Is a Hotel Guest??" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_configurable_attributes +msgid "Is a configurable product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__menucard_id +msgid "Item Name" +msgstr "Nombre del detalle" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_tree +msgid "KOT List" +msgstr "KOT List" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "" +"Keep this field empty to use the default value from the product category." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "" +"Keep this field empty to use the default value from the product category. If " +"anglo-saxon accounting with automated valuation method is configured, the " +"expense account on the product category will be used." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_13 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_13_product_product +msgid "Khandvi" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__kitchen +msgid "Kitchen" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__kitchen +msgid "Kitchen Id" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Kitchen Order Ticket" +msgstr "Ticket de pedido de la cocina" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_kot +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__kot_order_id +msgid "Kitchen Order Tickets" +msgstr "Tickets de pedido de cocina" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +#, fuzzy +msgid "Kitchen order list" +msgstr "Lista de pedidos de cocina" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant____last_update +msgid "Last Modified on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_date +msgid "Last Updated on" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of customer taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of supplier taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__location_id +#, fuzzy +msgid "Location" +msgstr "Información" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Malai Kofta" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted " +"automatically.\n" +" Automated: An accounting entry is automatically created to value the " +"inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__service_type +msgid "" +"Manually set quantities on order: Invoice based on the manually entered " +"quantity, without creating an analytic account.\n" +"Timesheets on contract: Invoice based on the tracked hours on the related " +"timesheet.\n" +"Create a task and track hours: Create a task on the sales order validation " +"and track the work hours." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_22 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_22_product_product +msgid "Masala kulcha" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn_msg +msgid "Message for Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_ids +msgid "Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__orderpoint_ids +msgid "Minimum Stock Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_7 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_7_product_product +msgid "Mutter Paneer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__name +#, fuzzy +msgid "Name" +msgstr "Nombre del detalle" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +#, fuzzy +msgid "No Food Items" +msgstr "Alimentos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_item_count +msgid "Number of price rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_reservation_order_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order" +msgstr "Pedido" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__order +#, fuzzy +msgid "Order Created" +msgstr "Generar pedido" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__o_date +#, fuzzy +msgid "Order Date" +msgstr "Generar pedido" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_list_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Order List" +msgstr "Lista de pedidos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_number +msgid "Order No" +msgstr "Pedido No" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__order_number +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_no +msgid "Order Number" +msgstr "Número de pedido" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +#, fuzzy +msgid "Order Report" +msgstr "Pedido No" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +#, fuzzy +msgid "Order Total" +msgstr "Pedido No" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "" +"Ordered Quantity: Invoice quantities ordered by the customer.\n" +"Delivered Quantity: Invoice quantities delivered to the customer." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_reservation_order_form_tree +msgid "Orders" +msgstr "Pedidos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "Outgoing" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_6 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_6_product_product +msgid "Paneer Bhurji" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_4 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_4_product_product +msgid "Paneer Butter Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_10 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_10_product_product +msgid "Paneer Makhani" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_0 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_0_product_product +msgid "Paneer Tikaa" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Assign a Table" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, fuzzy, python-format +msgid "Please Give an Order" +msgstr "Pedido de reserva" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Select Tables For Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Point of Sale Category" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_20 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_20_product_product +msgid "Pongal" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price +msgid "Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__list_price +msgid "Price at which the product is sold to customers." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Price:" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "Pricelist" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Procurement" +msgstr "Adquisición" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_id +#, fuzzy +msgid "Product" +msgstr "Product_id" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__attribute_line_ids +msgid "Product Attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_manager_id +msgid "Product Manager" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Product Packages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__type +#, fuzzy +msgid "Product Type" +msgstr "Product_id" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "Production Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_ids +#, fuzzy +msgid "Products" +msgstr "Product_id" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__lst_price +msgid "Public Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_purchase +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Purchase Description" +msgstr "Descripción de la compra" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "Purchase Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__putaway_rule_ids +msgid "Putaway Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_qty +msgid "Qty" +msgstr "Ctdad" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__qty_available +#, fuzzy +msgid "Quantity On Hand" +msgstr "Cantidad" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "" +"Quantity of planned incoming products.\n" +"In a context with a single Stock Location, this includes goods arriving to " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods arriving to the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods arriving to any Stock Location with " +"'internal' type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "" +"Quantity of planned outgoing products.\n" +"In a context with a single Stock Location, this includes goods leaving this " +"Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods leaving the Stock " +"Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods leaving any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_qty_configurator +msgid "Quantity visible in configurator" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_rate +msgid "Rate" +msgstr "Tarifa" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "Re-Invoice Expenses" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_expense_policy +msgid "Re-Invoice Policy visible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__code +msgid "Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_max_qty +msgid "Reordering Max Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_min_qty +msgid "Reordering Min Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__nbr_reordering_rules +msgid "Reordering Rules" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Reservation List" +msgstr "Lista de reservas" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__reservation_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__reservation_id +msgid "Reservation No" +msgstr "Número de reserva" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__reservation_number +msgid "Reservation Number" +msgstr "Número de reserva" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_reservation_order +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__reservation_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +msgid "Reservation Order" +msgstr "Pedido de reserva" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_reservation_orders_ids +msgid "Reservation Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "Responsible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__rests_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__rest_item_id +msgid "Rest" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.hotel_restaurant_menu +msgid "Restaurant" +msgstr "Restaurante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__restaurant_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#, fuzzy +msgid "Restaurant Order" +msgstr "Restaurante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +#, fuzzy +msgid "Restaurant Order Reservation Details" +msgstr "Incluye reserva en el restaurante del hotel" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_restaurant_orders_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +#, fuzzy +msgid "Restaurant Orders" +msgstr "Restaurante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_folio_rest_reservation +#: model:ir.ui.menu,name:hotel_restaurant.folio_rest_reservation_menu +#, fuzzy +msgid "Restaurant Reports" +msgstr "Restaurante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#, fuzzy +msgid "Restaurant Reservation" +msgstr "Incluye reserva en el restaurante del hotel" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Reserved Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#, fuzzy +msgid "Restaurant kitchen Order" +msgstr "Pedido de reserva" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Restaurants Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio1 +#, fuzzy +msgid "Restaurants Reports" +msgstr "Restaurante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +#, fuzzy +msgid "Restaurants Reservation Order Details" +msgstr "Pedido de reserva" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__room_no +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__room_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__room_id +msgid "Room No" +msgstr "Habitación No" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Room Number" +msgstr "Número de habitación" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_ids +msgid "Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_available_route_ids +msgid "Routes can be selected on this product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Sale Description" +msgstr "Descripición de venta" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_sale +msgid "Sales Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn +#, fuzzy +msgid "Sales Order Line" +msgstr "Pedido mesa" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__list_price +msgid "Sales Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "" +"Selecting the \"Warning\" option will notify user with the message, " +"Selecting \"Blocking Message\" will throw an exception with the message and " +"block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sequence +msgid "Sequence" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Set to Draft" +msgstr "Ajustar a borrador reserva" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sales_count +msgid "Sold" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on " +"the product.\n" +" Average Cost (AVCO): The products are valued at weighted average " +"cost.\n" +" First In First Out (FIFO): The products are valued supposing those " +"that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_start +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_start +msgid "Start Date" +msgstr "Fecha de inicio" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be greater than the Folio Check-in Date!" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be less than the End Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__start_date +#, fuzzy +msgid "Start Time" +msgstr "Fecha de inicio" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__state +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__state +#, fuzzy +msgid "State" +msgstr "estado" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#, fuzzy +msgid "States" +msgstr "estado" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_move_ids +msgid "Stock Move" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Stock Quant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__price_subtotal +msgid "Subtotal" +msgstr "Subtotal" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Supplier Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Suppliers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_reservation_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_reservation_form_tree +msgid "Table Booking" +msgstr "Reserva de mesa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#, fuzzy +msgid "Table List" +msgstr "Mesas" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__name +msgid "Table Number" +msgstr "Número de mesa" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_order_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_order_form_tree +msgid "Table Order" +msgstr "Pedido mesa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +#, fuzzy +msgid "Table Order Total" +msgstr "Pedido mesa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_tree +msgid "Table Reservation" +msgstr "Reserva de Mesas" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_wizard_hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_table_res +#: model:ir.ui.menu,name:hotel_restaurant.wizard_list_menu +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Table Reservation List" +msgstr "Lista de reserva de mesas" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +#, fuzzy +msgid "Table reservation detail." +msgstr "Lista de reserva de mesas" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_tables_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_tables_form_tree +msgid "Tables" +msgstr "Mesas" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_tree +msgid "Tables Detail" +msgstr "Detalle de las mesas" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_1 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_1_product_product +msgid "Tanduri Roti" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__tax +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__tax +msgid "Tax (%) " +msgstr "Impuesto (%) " + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Technical compute" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "" +"Technical field. Used for searching on pricelists, not stored in database." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_move_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Technical: used to compute quantities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__lst_price +msgid "" +"The sale price is managed from the product template. Click on the 'Configure " +"Variants' button to set the extra attribute prices." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__price_extra +msgid "This is the sum of the extra price of all attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated by manufacturing orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated when you do an inventory." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "" +"This user will be responsible of the next activities related to logistic " +"operations for this product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__to_weight +msgid "To Weigh With Scale" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#, fuzzy +msgid "Today's Booking" +msgstr "Reserva de mesa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#, fuzzy +msgid "Today's Orders" +msgstr "Pedido mesa" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_total +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_total +msgid "Total" +msgstr "Total" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__service_type +msgid "Track Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__tracking +msgid "Tracking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_name +msgid "Unit of Measure Name" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_0 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_1 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_10 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_12 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_13 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_14 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_15 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_16 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_17 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_18 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_19 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_2 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_20 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_21 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_22 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_4 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_5 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_6 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_7 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_0_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_10_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_12_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_13_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_14_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_15_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_16_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_17_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_18_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_19_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_1_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_20_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_21_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_22_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_2_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_4_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_5_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_6_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_7_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Units" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_16 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_16_product_product +msgid "Upma" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_18 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_18_product_product +msgid "Uttapam" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_17 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_17_product_product +msgid "Vada-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Valid Product Attribute Lines" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__value_svl +msgid "Value Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1920 +msgid "Variant Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1024 +msgid "Variant Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_128 +msgid "Variant Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_256 +msgid "Variant Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_512 +msgid "Variant Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price_extra +msgid "Variant Price Extra" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__variant_seller_ids +msgid "Variant Seller" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Vendor Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Vendors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume +msgid "Volume" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume_uom_name +msgid "Volume unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__waiter_id +msgid "Waiter" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__waitername +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__waiter_name +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Waiter Name" +msgstr "Nombre camarero" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__warehouse_id +msgid "Warehouse" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight +msgid "Weight" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight_uom_name +msgid "Weight unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__check +#, fuzzy +msgid "With Details" +msgstr "Detalle de las mesas" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "" +"You tried to confirm reservation with table those already reserved in this " +"reservation period" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_folio_rest_reservation +#, fuzzy +msgid "folio.rest.reservation" +msgstr "Reserva de Mesas" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_folio +msgid "hotel folio" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "hotel menucard" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_order__is_folio +msgid "is customer reside in hotel or not" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_hotel_order_kot +msgid "report.hotel_restaurant.report_hotel_order_kot" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_res_table +msgid "report.hotel_restaurant.report_res_table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_reserv_order +msgid "report.hotel_restaurant.report_reserv_order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__state +msgid "state" +msgstr "estado" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#, fuzzy +msgid "waiter name" +msgstr "Nombre camarero" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_wizard_hotel_restaurant +#, fuzzy +msgid "wizard.hotel.restaurant" +msgstr "Hotel Restaurante" + +#, fuzzy +#~| msgid "Kitchen Order List" +#~ msgid "Kitchen id" +#~ msgstr "Lista de pedidos de cocina" + +#~ msgid "Quantity" +#~ msgstr "Cantidad" + +#, fuzzy +#~| msgid "Table Reservation List" +#~ msgid "Table reservation detail. " +#~ msgstr "Lista de reserva de mesas" + +#~ msgid "Invalid model name in the action definition." +#~ msgstr "Nombre de modelo inválido en la definición de acción" + +#~ msgid "Room Number :" +#~ msgstr "Habitación número:" + +#~ msgid "SubTotal" +#~ msgstr "SubTotal" + +#~ msgid "Order Number :" +#~ msgstr "Número de pedido :" + +#~ msgid "" +#~ "\n" +#~ " Module for Hotel/Resort/Restaurant management. You can manage:\n" +#~ " * Configure Property\n" +#~ " * Restaurant Configuration\n" +#~ " * table reservation\n" +#~ " * Generate and process Kitchen Order ticket,\n" +#~ " * Payment\n" +#~ "\n" +#~ " Different reports are also provided, mainly for Restaurant.\n" +#~ " " +#~ msgstr "" +#~ "\n" +#~ " Módulo para la dirección de Hoteles/Complejos Hoteleros/Restaurantes. " +#~ "Permite:\n" +#~ " * Configurar Propiedades\n" +#~ " * Configuración de un restaurante\n" +#~ " * Reserva de mesas\n" +#~ " * Generar y procesar pedidos de cocina,\n" +#~ " * Pagos\n" +#~ "\n" +#~ " Se proporcionan diferentes informes, principalmente para el " +#~ "restaurante.\n" +#~ " " + +#~ msgid "Group the kots" +#~ msgstr "Agrupar los kots" + +#~ msgid "Error ! You can not create recursive categories." +#~ msgstr "Error! No se pueden crear categorías recursivas." + +#~ msgid "Served By" +#~ msgstr "Servido por" + +#~ msgid "Date :" +#~ msgstr "Fecha :" + +#~ msgid "Is Menu Type" +#~ msgstr "Es tipo de menú" + +#~ msgid "unknown" +#~ msgstr "desconocido" + +#~ msgid "Total :" +#~ msgstr "Total :" + +#~ msgid "Invalid XML for View Architecture!" +#~ msgstr "¡XML inválido para la arquitectura de la vista!" + +#~ msgid "amenities Type" +#~ msgstr "Tipo de comodidades" + +#~ msgid "Punjabi" +#~ msgstr "Panyabí" + +#~ msgid "Make Kots" +#~ msgstr "Make Kots" + +#~ msgid "Gujarati" +#~ msgstr "Guyaratí" + +#~ msgid "........." +#~ msgstr "........." + +#~ msgid "Sub Total :" +#~ msgstr "Sub Total :" + +#~ msgid "Waiter Name :" +#~ msgstr "Nombre del camarero :" + +#~ msgid "Do you really want to create the Kot?" +#~ msgstr "¿Deseas realmente crear el Kot?" + +#~ msgid "Create Kots" +#~ msgstr "Create Kots" + +#~ msgid "Hotel FoodItem Type" +#~ msgstr "Tipo de alimento del hotel" + +#~ msgid "Table number" +#~ msgstr "Número de mesa" + +#~ msgid "" +#~ "The Object name must start with x_ and not contain any special character !" +#~ msgstr "" +#~ "¡El nombre del objeto debe comenzar por x_ y no contener ningún caracter " +#~ "especial!" + +#~ msgid "KOT" +#~ msgstr "KOT" + +#~ msgid "Tax :" +#~ msgstr "Impuesto :" + +#~ msgid "Item Rate" +#~ msgstr "Item Rate" + +#~ msgid "Error: Invalid ean code" +#~ msgstr "Error: Código EAN inválido" + +#~ msgid "Hotel Restaurant Management" +#~ msgstr "Gestión del restaurante del hotel" diff --git a/hotel_restaurant/i18n/fr.po b/hotel_restaurant/i18n/fr.po new file mode 100644 index 000000000..4757a408e --- /dev/null +++ b/hotel_restaurant/i18n/fr.po @@ -0,0 +1,2297 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hotel_restaurant +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_count +msgid "# Product Variants" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Food Item List" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order List" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckIN" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckOut" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Date :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio Number :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Folio Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "From:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Net Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Number." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Reservation No" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Room No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Served By" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Sub Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "SubTotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Table Information" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Tax:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "To:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__description_sale +msgid "" +"A description of the Product that you want to communicate to your customers. " +"This description will be copied to every Sales Order, Delivery Order and " +"Customer Invoice/Credit Note" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__type +msgid "" +"A storable product is a product for which you manage stock. The Inventory " +"app has to be installed.\n" +"A consumable product is a product for which stock is not managed.\n" +"A service is a non-material product you provide." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__active +msgid "Active" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_ids +msgid "Activities" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_state +msgid "Activity State" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__partner_address_id +msgid "Address" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_19 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_19_product_product +msgid "Appam" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_template_attribute_value_ids +msgid "Attribute Values" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Available in POS" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_12 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_12_product_product +msgid "Bahji Pav" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__barcode +msgid "Barcode" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_1024_be_zoomed +msgid "Can Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_variant_1024_be_zoomed +msgid "Can Variant Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__purchase_ok +msgid "Can be Purchased" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_ok +msgid "Can be Sold" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Cancel" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__cancel +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__capacity +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Capacity" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_from_categ_ids +msgid "Category Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Category used in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Category:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +msgid "Categoty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__to_weight +msgid "" +"Check if the product should be weighted using the hardware scale integration." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Check if you want this product to appear in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_5 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_5_product_product +msgid "Cheese Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__child_ids +msgid "Child Categories" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_21 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_21_product_product +msgid "Chole-Bhature" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "Click to Add Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__color +msgid "Color Index" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__combination_indices +msgid "Combination Indices" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__company_id +msgid "Company" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Confirm" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__confirm +msgid "Confirmed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__standard_price +msgid "Cost" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_currency_id +msgid "Cost Currency" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_method +msgid "Costing Method" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Create Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_uid +msgid "Created by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_date +msgid "Created on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__currency_id +msgid "Currency" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Current Booking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__qty_available +msgid "" +"Current quantity of products.\n" +"In a context with a single Stock Location, this includes goods stored at " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"stored in the Stock Location of the Warehouse of this Shop, or any of its " +"children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_bill +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_reservation_order_bill +msgid "Customer Bill" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "Customer Lead Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__customer_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__customer_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Customer Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Customer Order Bill" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__partner_ref +msgid "Customer Ref" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__taxes_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Customer Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_date +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Default taxes used when buying the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__taxes_id +msgid "Default taxes used when selling the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "" +"Default unit of measure used for purchase orders. It must be in the same " +"category as the default unit of measure." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Define vendor pricelists." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "" +"Delivery lead time, in days. It's the number of days, promised to the " +"customer, between the confirmation of the sales order and the delivery." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__route_ids +msgid "" +"Depending on the modules installed, this will allow you to define the route " +"of the product: whether it will be bought, manufactured, replenished on " +"order, etc." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingout +msgid "Description on Delivery Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_picking +msgid "Description on Picking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingin +msgid "Description on Receptions" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Descriptions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__display_name +msgid "Display Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__done +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Done" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_2 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_2_product_product +msgid "Dosa" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__draft +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Draft" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_end +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_end +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "End Date Should be less than the Folio Check-out Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__end_date +msgid "End Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__tracking +msgid "Ensure the traceability of a storable product in your warehouse." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "Expense Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "" +"Expenses and vendor bills can be re-invoiced to a customer.With this option, " +"a validated expense can be re-invoice to a customer at its cost or sales " +"price." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__folio_id +msgid "Folio No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_rest_order +msgid "Folio Rest Report" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_form +#: model:ir.ui.menu,name:hotel_restaurant.menu_hotel_food_item +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__categ_id +msgid "Food Item Category" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Food Item Rate" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_type_view_form +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard_type +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__menu_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_action_hotel_menucard_type_view_form +msgid "Food Item Types" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_hotel_menucard_form +msgid "Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Manager" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "Forecast Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "" +"Forecast quantity (computed as Quantity On Hand - Outgoing + Incoming)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__free_qty +msgid "" +"Forecast quantity (computed as Quantity On Hand - reserved quantity)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__free_qty +msgid "Free To Use Quantity " +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate Bill" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate KOT" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Gives the different ways to package the same product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sequence +msgid "Gives the sequence order when displaying a product list" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Group By" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_14 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_14_product_product +msgid "Halva" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_list +msgid "Hotel Food Items Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Hotel Menucard" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Hotel Restaurant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__id +msgid "ID" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_15 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_15_product_product +msgid "Idli-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__active +msgid "" +"If unchecked, it will allow you to hide the product without removing it." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1920 +msgid "Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1024 +msgid "Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_128 +msgid "Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_256 +msgid "Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_512 +msgid "Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__standard_price +msgid "" +"In Standard Price & AVCO: value of the product (automatically computed in " +"AVCO).\n" +" In FIFO: value of the next unit that will leave the stock " +"(automatically computed).\n" +" Used to value the product when the purchase cost is not known (e.g. " +"inventory adjustment).\n" +" Used to compute margins on sale orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_kitchen_order_tickets +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order_list +msgid "Includes Hotel Restaurant Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_reservation +msgid "Includes Hotel Restaurant Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_tables +msgid "Includes Hotel Restaurant Table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "Income Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "Incoming" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Information" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__default_code +msgid "Internal Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__barcode +msgid "International Article Number used for product identification." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "Inventory Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valuation +msgid "Inventory Valuation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "Invoicing Policy" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__iscategid +msgid "Is Categ" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__is_product_variant +msgid "Is Product Variant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isroom +msgid "Is Room" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isservice +msgid "Is Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__is_folio +msgid "Is a Hotel Guest??" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_configurable_attributes +msgid "Is a configurable product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__menucard_id +msgid "Item Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_tree +msgid "KOT List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "" +"Keep this field empty to use the default value from the product category." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "" +"Keep this field empty to use the default value from the product category. If " +"anglo-saxon accounting with automated valuation method is configured, the " +"expense account on the product category will be used." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_13 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_13_product_product +msgid "Khandvi" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__kitchen +msgid "Kitchen" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__kitchen +msgid "Kitchen Id" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Kitchen Order Ticket" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_kot +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__kot_order_id +msgid "Kitchen Order Tickets" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +msgid "Kitchen order list" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant____last_update +msgid "Last Modified on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_date +msgid "Last Updated on" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of customer taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of supplier taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__location_id +msgid "Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Malai Kofta" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted " +"automatically.\n" +" Automated: An accounting entry is automatically created to value the " +"inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__service_type +msgid "" +"Manually set quantities on order: Invoice based on the manually entered " +"quantity, without creating an analytic account.\n" +"Timesheets on contract: Invoice based on the tracked hours on the related " +"timesheet.\n" +"Create a task and track hours: Create a task on the sales order validation " +"and track the work hours." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_22 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_22_product_product +msgid "Masala kulcha" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn_msg +msgid "Message for Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_ids +msgid "Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__orderpoint_ids +msgid "Minimum Stock Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_7 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_7_product_product +msgid "Mutter Paneer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__name +msgid "Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "No Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_item_count +msgid "Number of price rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_reservation_order_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__order +msgid "Order Created" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__o_date +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_list_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Order List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_number +msgid "Order No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__order_number +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_no +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Order Report" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order Total" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "" +"Ordered Quantity: Invoice quantities ordered by the customer.\n" +"Delivered Quantity: Invoice quantities delivered to the customer." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_reservation_order_form_tree +msgid "Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "Outgoing" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_6 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_6_product_product +msgid "Paneer Bhurji" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_4 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_4_product_product +msgid "Paneer Butter Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_10 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_10_product_product +msgid "Paneer Makhani" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_0 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_0_product_product +msgid "Paneer Tikaa" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Assign a Table" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Give an Order" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Select Tables For Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Point of Sale Category" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_20 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_20_product_product +msgid "Pongal" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price +msgid "Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__list_price +msgid "Price at which the product is sold to customers." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Price:" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "Pricelist" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Procurement" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_id +msgid "Product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__attribute_line_ids +msgid "Product Attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_manager_id +msgid "Product Manager" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Product Packages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__type +msgid "Product Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "Production Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_ids +msgid "Products" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__lst_price +msgid "Public Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_purchase +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Purchase Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "Purchase Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__putaway_rule_ids +msgid "Putaway Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_qty +msgid "Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__qty_available +msgid "Quantity On Hand" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "" +"Quantity of planned incoming products.\n" +"In a context with a single Stock Location, this includes goods arriving to " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods arriving to the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods arriving to any Stock Location with " +"'internal' type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "" +"Quantity of planned outgoing products.\n" +"In a context with a single Stock Location, this includes goods leaving this " +"Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods leaving the Stock " +"Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods leaving any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_qty_configurator +msgid "Quantity visible in configurator" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_rate +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "Re-Invoice Expenses" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_expense_policy +msgid "Re-Invoice Policy visible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__code +msgid "Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_max_qty +msgid "Reordering Max Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_min_qty +msgid "Reordering Min Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__nbr_reordering_rules +msgid "Reordering Rules" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Reservation List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__reservation_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__reservation_id +msgid "Reservation No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__reservation_number +msgid "Reservation Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_reservation_order +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__reservation_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +msgid "Reservation Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_reservation_orders_ids +msgid "Reservation Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "Responsible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__rests_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__rest_item_id +msgid "Rest" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.hotel_restaurant_menu +msgid "Restaurant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__restaurant_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Restaurant Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Order Reservation Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_restaurant_orders_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_folio_rest_reservation +#: model:ir.ui.menu,name:hotel_restaurant.folio_rest_reservation_menu +msgid "Restaurant Reports" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Restaurant Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Reserved Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Restaurant kitchen Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Restaurants Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio1 +msgid "Restaurants Reports" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Restaurants Reservation Order Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__room_no +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__room_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__room_id +msgid "Room No" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_ids +msgid "Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_available_route_ids +msgid "Routes can be selected on this product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Sale Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_sale +msgid "Sales Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__list_price +msgid "Sales Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "" +"Selecting the \"Warning\" option will notify user with the message, " +"Selecting \"Blocking Message\" will throw an exception with the message and " +"block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sequence +msgid "Sequence" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Set to Draft" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sales_count +msgid "Sold" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on " +"the product.\n" +" Average Cost (AVCO): The products are valued at weighted average " +"cost.\n" +" First In First Out (FIFO): The products are valued supposing those " +"that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_start +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_start +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be greater than the Folio Check-in Date!" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be less than the End Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__start_date +msgid "Start Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__state +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__state +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "States" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_move_ids +msgid "Stock Move" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Stock Quant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__price_subtotal +msgid "Subtotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Supplier Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Suppliers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_reservation_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_reservation_form_tree +msgid "Table Booking" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Table List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__name +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_order_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_order_form_tree +msgid "Table Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Table Order Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_tree +msgid "Table Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_wizard_hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_table_res +#: model:ir.ui.menu,name:hotel_restaurant.wizard_list_menu +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Table Reservation List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +msgid "Table reservation detail." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_tables_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_tables_form_tree +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_tree +msgid "Tables Detail" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_1 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_1_product_product +msgid "Tanduri Roti" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__tax +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__tax +msgid "Tax (%) " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Technical compute" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "" +"Technical field. Used for searching on pricelists, not stored in database." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_move_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Technical: used to compute quantities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__lst_price +msgid "" +"The sale price is managed from the product template. Click on the 'Configure " +"Variants' button to set the extra attribute prices." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__price_extra +msgid "This is the sum of the extra price of all attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated by manufacturing orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated when you do an inventory." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "" +"This user will be responsible of the next activities related to logistic " +"operations for this product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__to_weight +msgid "To Weigh With Scale" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Today's Booking" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Today's Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_total +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_total +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__service_type +msgid "Track Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__tracking +msgid "Tracking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_name +msgid "Unit of Measure Name" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_0 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_1 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_10 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_12 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_13 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_14 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_15 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_16 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_17 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_18 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_19 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_2 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_20 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_21 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_22 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_4 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_5 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_6 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_7 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_0_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_10_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_12_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_13_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_14_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_15_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_16_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_17_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_18_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_19_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_1_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_20_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_21_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_22_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_2_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_4_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_5_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_6_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_7_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Units" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_16 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_16_product_product +msgid "Upma" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_18 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_18_product_product +msgid "Uttapam" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_17 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_17_product_product +msgid "Vada-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Valid Product Attribute Lines" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__value_svl +msgid "Value Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1920 +msgid "Variant Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1024 +msgid "Variant Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_128 +msgid "Variant Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_256 +msgid "Variant Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_512 +msgid "Variant Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price_extra +msgid "Variant Price Extra" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__variant_seller_ids +msgid "Variant Seller" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Vendor Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Vendors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume +msgid "Volume" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume_uom_name +msgid "Volume unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__waiter_id +msgid "Waiter" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__waitername +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__waiter_name +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__warehouse_id +msgid "Warehouse" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight +msgid "Weight" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight_uom_name +msgid "Weight unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__check +msgid "With Details" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "" +"You tried to confirm reservation with table those already reserved in this " +"reservation period" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_folio_rest_reservation +msgid "folio.rest.reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_folio +msgid "hotel folio" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "hotel menucard" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_order__is_folio +msgid "is customer reside in hotel or not" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_hotel_order_kot +msgid "report.hotel_restaurant.report_hotel_order_kot" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_res_table +msgid "report.hotel_restaurant.report_res_table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_reserv_order +msgid "report.hotel_restaurant.report_reserv_order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__state +msgid "state" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "waiter name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_wizard_hotel_restaurant +msgid "wizard.hotel.restaurant" +msgstr "" diff --git a/hotel_restaurant/i18n/fr_BE.po b/hotel_restaurant/i18n/fr_BE.po new file mode 100644 index 000000000..bf7b49c87 --- /dev/null +++ b/hotel_restaurant/i18n/fr_BE.po @@ -0,0 +1,2299 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * hotel_restaurant +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.6\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-26 07:34:45+0000\n" +"PO-Revision-Date: 2009-11-26 07:34:45+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_count +msgid "# Product Variants" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Food Item List" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order List" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckIN" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckOut" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Date :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio Number :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Folio Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "From:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Net Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Number." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Reservation No" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Room No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Served By" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Sub Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "SubTotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Table Information" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Tax:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "To:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__description_sale +msgid "" +"A description of the Product that you want to communicate to your customers. " +"This description will be copied to every Sales Order, Delivery Order and " +"Customer Invoice/Credit Note" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__type +msgid "" +"A storable product is a product for which you manage stock. The Inventory " +"app has to be installed.\n" +"A consumable product is a product for which stock is not managed.\n" +"A service is a non-material product you provide." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__active +msgid "Active" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_ids +msgid "Activities" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_state +msgid "Activity State" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__partner_address_id +msgid "Address" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_19 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_19_product_product +msgid "Appam" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_template_attribute_value_ids +msgid "Attribute Values" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Available in POS" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_12 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_12_product_product +msgid "Bahji Pav" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__barcode +msgid "Barcode" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_1024_be_zoomed +msgid "Can Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_variant_1024_be_zoomed +msgid "Can Variant Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__purchase_ok +msgid "Can be Purchased" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_ok +msgid "Can be Sold" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Cancel" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__cancel +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__capacity +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Capacity" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_from_categ_ids +msgid "Category Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Category used in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Category:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +msgid "Categoty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__to_weight +msgid "" +"Check if the product should be weighted using the hardware scale integration." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Check if you want this product to appear in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_5 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_5_product_product +msgid "Cheese Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__child_ids +msgid "Child Categories" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_21 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_21_product_product +msgid "Chole-Bhature" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "Click to Add Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__color +msgid "Color Index" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__combination_indices +msgid "Combination Indices" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__company_id +msgid "Company" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Confirm" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__confirm +msgid "Confirmed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__standard_price +msgid "Cost" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_currency_id +msgid "Cost Currency" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_method +msgid "Costing Method" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Create Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_uid +msgid "Created by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_date +msgid "Created on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__currency_id +msgid "Currency" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Current Booking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__qty_available +msgid "" +"Current quantity of products.\n" +"In a context with a single Stock Location, this includes goods stored at " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"stored in the Stock Location of the Warehouse of this Shop, or any of its " +"children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_bill +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_reservation_order_bill +msgid "Customer Bill" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "Customer Lead Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__customer_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__customer_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Customer Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Customer Order Bill" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__partner_ref +msgid "Customer Ref" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__taxes_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Customer Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_date +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Default taxes used when buying the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__taxes_id +msgid "Default taxes used when selling the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "" +"Default unit of measure used for purchase orders. It must be in the same " +"category as the default unit of measure." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Define vendor pricelists." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "" +"Delivery lead time, in days. It's the number of days, promised to the " +"customer, between the confirmation of the sales order and the delivery." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__route_ids +msgid "" +"Depending on the modules installed, this will allow you to define the route " +"of the product: whether it will be bought, manufactured, replenished on " +"order, etc." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingout +msgid "Description on Delivery Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_picking +msgid "Description on Picking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingin +msgid "Description on Receptions" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Descriptions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__display_name +msgid "Display Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__done +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Done" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_2 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_2_product_product +msgid "Dosa" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__draft +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Draft" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_end +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_end +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "End Date Should be less than the Folio Check-out Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__end_date +msgid "End Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__tracking +msgid "Ensure the traceability of a storable product in your warehouse." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "Expense Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "" +"Expenses and vendor bills can be re-invoiced to a customer.With this option, " +"a validated expense can be re-invoice to a customer at its cost or sales " +"price." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__folio_id +msgid "Folio No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_rest_order +msgid "Folio Rest Report" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_form +#: model:ir.ui.menu,name:hotel_restaurant.menu_hotel_food_item +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__categ_id +msgid "Food Item Category" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Food Item Rate" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_type_view_form +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard_type +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__menu_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_action_hotel_menucard_type_view_form +msgid "Food Item Types" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_hotel_menucard_form +msgid "Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Manager" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "Forecast Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "" +"Forecast quantity (computed as Quantity On Hand - Outgoing + Incoming)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__free_qty +msgid "" +"Forecast quantity (computed as Quantity On Hand - reserved quantity)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__free_qty +msgid "Free To Use Quantity " +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate Bill" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate KOT" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Gives the different ways to package the same product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sequence +msgid "Gives the sequence order when displaying a product list" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Group By" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_14 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_14_product_product +msgid "Halva" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_list +msgid "Hotel Food Items Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Hotel Menucard" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Hotel Restaurant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__id +msgid "ID" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_15 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_15_product_product +msgid "Idli-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__active +msgid "" +"If unchecked, it will allow you to hide the product without removing it." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1920 +msgid "Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1024 +msgid "Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_128 +msgid "Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_256 +msgid "Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_512 +msgid "Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__standard_price +msgid "" +"In Standard Price & AVCO: value of the product (automatically computed in " +"AVCO).\n" +" In FIFO: value of the next unit that will leave the stock " +"(automatically computed).\n" +" Used to value the product when the purchase cost is not known (e.g. " +"inventory adjustment).\n" +" Used to compute margins on sale orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_kitchen_order_tickets +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order_list +msgid "Includes Hotel Restaurant Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_reservation +msgid "Includes Hotel Restaurant Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_tables +msgid "Includes Hotel Restaurant Table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "Income Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "Incoming" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Information" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__default_code +msgid "Internal Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__barcode +msgid "International Article Number used for product identification." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "Inventory Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valuation +msgid "Inventory Valuation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "Invoicing Policy" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__iscategid +msgid "Is Categ" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__is_product_variant +msgid "Is Product Variant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isroom +msgid "Is Room" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isservice +msgid "Is Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__is_folio +msgid "Is a Hotel Guest??" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_configurable_attributes +msgid "Is a configurable product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__menucard_id +msgid "Item Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_tree +msgid "KOT List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "" +"Keep this field empty to use the default value from the product category." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "" +"Keep this field empty to use the default value from the product category. If " +"anglo-saxon accounting with automated valuation method is configured, the " +"expense account on the product category will be used." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_13 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_13_product_product +msgid "Khandvi" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__kitchen +msgid "Kitchen" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__kitchen +msgid "Kitchen Id" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Kitchen Order Ticket" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_kot +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__kot_order_id +msgid "Kitchen Order Tickets" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +msgid "Kitchen order list" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant____last_update +msgid "Last Modified on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_date +msgid "Last Updated on" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of customer taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of supplier taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__location_id +msgid "Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Malai Kofta" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted " +"automatically.\n" +" Automated: An accounting entry is automatically created to value the " +"inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__service_type +msgid "" +"Manually set quantities on order: Invoice based on the manually entered " +"quantity, without creating an analytic account.\n" +"Timesheets on contract: Invoice based on the tracked hours on the related " +"timesheet.\n" +"Create a task and track hours: Create a task on the sales order validation " +"and track the work hours." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_22 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_22_product_product +msgid "Masala kulcha" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn_msg +msgid "Message for Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_ids +msgid "Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__orderpoint_ids +msgid "Minimum Stock Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_7 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_7_product_product +msgid "Mutter Paneer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__name +msgid "Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "No Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_item_count +msgid "Number of price rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_reservation_order_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__order +msgid "Order Created" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__o_date +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_list_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Order List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_number +msgid "Order No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__order_number +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_no +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Order Report" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order Total" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "" +"Ordered Quantity: Invoice quantities ordered by the customer.\n" +"Delivered Quantity: Invoice quantities delivered to the customer." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_reservation_order_form_tree +msgid "Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "Outgoing" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_6 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_6_product_product +msgid "Paneer Bhurji" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_4 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_4_product_product +msgid "Paneer Butter Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_10 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_10_product_product +msgid "Paneer Makhani" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_0 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_0_product_product +msgid "Paneer Tikaa" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Assign a Table" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Give an Order" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Select Tables For Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Point of Sale Category" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_20 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_20_product_product +msgid "Pongal" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price +msgid "Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__list_price +msgid "Price at which the product is sold to customers." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Price:" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "Pricelist" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Procurement" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_id +msgid "Product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__attribute_line_ids +msgid "Product Attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_manager_id +msgid "Product Manager" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Product Packages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__type +msgid "Product Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "Production Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_ids +msgid "Products" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__lst_price +msgid "Public Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_purchase +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Purchase Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "Purchase Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__putaway_rule_ids +msgid "Putaway Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_qty +msgid "Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__qty_available +msgid "Quantity On Hand" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "" +"Quantity of planned incoming products.\n" +"In a context with a single Stock Location, this includes goods arriving to " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods arriving to the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods arriving to any Stock Location with " +"'internal' type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "" +"Quantity of planned outgoing products.\n" +"In a context with a single Stock Location, this includes goods leaving this " +"Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods leaving the Stock " +"Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods leaving any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_qty_configurator +msgid "Quantity visible in configurator" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_rate +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "Re-Invoice Expenses" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_expense_policy +msgid "Re-Invoice Policy visible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__code +msgid "Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_max_qty +msgid "Reordering Max Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_min_qty +msgid "Reordering Min Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__nbr_reordering_rules +msgid "Reordering Rules" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Reservation List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__reservation_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__reservation_id +msgid "Reservation No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__reservation_number +msgid "Reservation Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_reservation_order +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__reservation_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +msgid "Reservation Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_reservation_orders_ids +msgid "Reservation Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "Responsible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__rests_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__rest_item_id +msgid "Rest" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.hotel_restaurant_menu +msgid "Restaurant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__restaurant_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Restaurant Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Order Reservation Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_restaurant_orders_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_folio_rest_reservation +#: model:ir.ui.menu,name:hotel_restaurant.folio_rest_reservation_menu +msgid "Restaurant Reports" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Restaurant Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Reserved Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Restaurant kitchen Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Restaurants Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio1 +msgid "Restaurants Reports" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Restaurants Reservation Order Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__room_no +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__room_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__room_id +msgid "Room No" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_ids +msgid "Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_available_route_ids +msgid "Routes can be selected on this product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Sale Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_sale +msgid "Sales Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__list_price +msgid "Sales Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "" +"Selecting the \"Warning\" option will notify user with the message, " +"Selecting \"Blocking Message\" will throw an exception with the message and " +"block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sequence +msgid "Sequence" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Set to Draft" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sales_count +msgid "Sold" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on " +"the product.\n" +" Average Cost (AVCO): The products are valued at weighted average " +"cost.\n" +" First In First Out (FIFO): The products are valued supposing those " +"that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_start +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_start +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be greater than the Folio Check-in Date!" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be less than the End Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__start_date +msgid "Start Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__state +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__state +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "States" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_move_ids +msgid "Stock Move" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Stock Quant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__price_subtotal +msgid "Subtotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Supplier Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Suppliers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_reservation_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_reservation_form_tree +msgid "Table Booking" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Table List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__name +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_order_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_order_form_tree +msgid "Table Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Table Order Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_tree +msgid "Table Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_wizard_hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_table_res +#: model:ir.ui.menu,name:hotel_restaurant.wizard_list_menu +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Table Reservation List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +msgid "Table reservation detail." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_tables_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_tables_form_tree +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_tree +msgid "Tables Detail" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_1 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_1_product_product +msgid "Tanduri Roti" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__tax +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__tax +msgid "Tax (%) " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Technical compute" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "" +"Technical field. Used for searching on pricelists, not stored in database." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_move_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Technical: used to compute quantities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__lst_price +msgid "" +"The sale price is managed from the product template. Click on the 'Configure " +"Variants' button to set the extra attribute prices." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__price_extra +msgid "This is the sum of the extra price of all attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated by manufacturing orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated when you do an inventory." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "" +"This user will be responsible of the next activities related to logistic " +"operations for this product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__to_weight +msgid "To Weigh With Scale" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Today's Booking" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Today's Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_total +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_total +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__service_type +msgid "Track Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__tracking +msgid "Tracking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_name +msgid "Unit of Measure Name" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_0 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_1 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_10 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_12 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_13 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_14 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_15 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_16 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_17 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_18 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_19 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_2 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_20 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_21 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_22 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_4 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_5 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_6 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_7 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_0_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_10_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_12_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_13_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_14_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_15_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_16_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_17_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_18_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_19_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_1_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_20_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_21_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_22_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_2_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_4_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_5_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_6_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_7_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Units" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_16 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_16_product_product +msgid "Upma" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_18 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_18_product_product +msgid "Uttapam" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_17 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_17_product_product +msgid "Vada-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Valid Product Attribute Lines" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__value_svl +msgid "Value Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1920 +msgid "Variant Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1024 +msgid "Variant Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_128 +msgid "Variant Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_256 +msgid "Variant Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_512 +msgid "Variant Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price_extra +msgid "Variant Price Extra" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__variant_seller_ids +msgid "Variant Seller" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Vendor Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Vendors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume +msgid "Volume" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume_uom_name +msgid "Volume unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__waiter_id +msgid "Waiter" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__waitername +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__waiter_name +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__warehouse_id +msgid "Warehouse" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight +msgid "Weight" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight_uom_name +msgid "Weight unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__check +msgid "With Details" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "" +"You tried to confirm reservation with table those already reserved in this " +"reservation period" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_folio_rest_reservation +msgid "folio.rest.reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_folio +msgid "hotel folio" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "hotel menucard" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_order__is_folio +msgid "is customer reside in hotel or not" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_hotel_order_kot +msgid "report.hotel_restaurant.report_hotel_order_kot" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_res_table +msgid "report.hotel_restaurant.report_res_table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_reserv_order +msgid "report.hotel_restaurant.report_reserv_order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__state +msgid "state" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "waiter name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_wizard_hotel_restaurant +msgid "wizard.hotel.restaurant" +msgstr "" diff --git a/hotel_restaurant/i18n/hotel_restaurant.pot b/hotel_restaurant/i18n/hotel_restaurant.pot new file mode 100644 index 000000000..2c8bfa6d2 --- /dev/null +++ b/hotel_restaurant/i18n/hotel_restaurant.pot @@ -0,0 +1,2270 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hotel_restaurant +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_count +msgid "# Product Variants" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Food Item List" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order List" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckIN" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckOut" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Date :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio Number :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Folio Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "From:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Net Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Number." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Reservation No" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Room No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Served By" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Sub Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "SubTotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Table Information" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Tax:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "To:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__description_sale +msgid "" +"A description of the Product that you want to communicate to your customers." +" This description will be copied to every Sales Order, Delivery Order and " +"Customer Invoice/Credit Note" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__type +msgid "" +"A storable product is a product for which you manage stock. The Inventory app has to be installed.\n" +"A consumable product is a product for which stock is not managed.\n" +"A service is a non-material product you provide." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__active +msgid "Active" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_ids +msgid "Activities" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_state +msgid "Activity State" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__partner_address_id +msgid "Address" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_19 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_19_product_product +msgid "Appam" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_template_attribute_value_ids +msgid "Attribute Values" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Available in POS" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_12 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_12_product_product +msgid "Bahji Pav" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__barcode +msgid "Barcode" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_1024_be_zoomed +msgid "Can Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_variant_1024_be_zoomed +msgid "Can Variant Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__purchase_ok +msgid "Can be Purchased" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_ok +msgid "Can be Sold" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Cancel" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__cancel +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__capacity +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Capacity" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_from_categ_ids +msgid "Category Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Category used in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Category:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +msgid "Categoty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__to_weight +msgid "" +"Check if the product should be weighted using the hardware scale " +"integration." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Check if you want this product to appear in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_5 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_5_product_product +msgid "Cheese Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__child_ids +msgid "Child Categories" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_21 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_21_product_product +msgid "Chole-Bhature" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "Click to Add Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__color +msgid "Color Index" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__combination_indices +msgid "Combination Indices" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__company_id +msgid "Company" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Confirm" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__confirm +msgid "Confirmed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__standard_price +msgid "Cost" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_currency_id +msgid "Cost Currency" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_method +msgid "Costing Method" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Create Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_uid +msgid "Created by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_date +msgid "Created on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__currency_id +msgid "Currency" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Current Booking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__qty_available +msgid "" +"Current quantity of products.\n" +"In a context with a single Stock Location, this includes goods stored at this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the Stock Location of this Warehouse, or any of its children.\n" +"stored in the Stock Location of the Warehouse of this Shop, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_bill +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_reservation_order_bill +msgid "Customer Bill" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "Customer Lead Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__customer_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__customer_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Customer Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Customer Order Bill" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__partner_ref +msgid "Customer Ref" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__taxes_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Customer Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_date +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Default taxes used when buying the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__taxes_id +msgid "Default taxes used when selling the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "" +"Default unit of measure used for purchase orders. It must be in the same " +"category as the default unit of measure." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Define vendor pricelists." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "" +"Delivery lead time, in days. It's the number of days, promised to the " +"customer, between the confirmation of the sales order and the delivery." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__route_ids +msgid "" +"Depending on the modules installed, this will allow you to define the route " +"of the product: whether it will be bought, manufactured, replenished on " +"order, etc." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingout +msgid "Description on Delivery Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_picking +msgid "Description on Picking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingin +msgid "Description on Receptions" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Descriptions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__display_name +msgid "Display Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__done +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Done" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_2 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_2_product_product +msgid "Dosa" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__draft +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Draft" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_end +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_end +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "End Date Should be less than the Folio Check-out Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__end_date +msgid "End Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__tracking +msgid "Ensure the traceability of a storable product in your warehouse." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "Expense Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "" +"Expenses and vendor bills can be re-invoiced to a customer.With this option," +" a validated expense can be re-invoice to a customer at its cost or sales " +"price." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__folio_id +msgid "Folio No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_rest_order +msgid "Folio Rest Report" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_form +#: model:ir.ui.menu,name:hotel_restaurant.menu_hotel_food_item +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__categ_id +msgid "Food Item Category" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Food Item Rate" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_type_view_form +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard_type +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__menu_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_action_hotel_menucard_type_view_form +msgid "Food Item Types" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_hotel_menucard_form +msgid "Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Manager" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "Forecast Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "" +"Forecast quantity (computed as Quantity On Hand - Outgoing + Incoming)\n" +"In a context with a single Stock Location, this includes goods stored in this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__free_qty +msgid "" +"Forecast quantity (computed as Quantity On Hand - reserved quantity)\n" +"In a context with a single Stock Location, this includes goods stored in this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__free_qty +msgid "Free To Use Quantity " +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate Bill" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate KOT" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Gives the different ways to package the same product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sequence +msgid "Gives the sequence order when displaying a product list" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Group By" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_14 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_14_product_product +msgid "Halva" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_list +msgid "Hotel Food Items Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Hotel Menucard" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Hotel Restaurant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__id +msgid "ID" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_15 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_15_product_product +msgid "Idli-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__active +msgid "" +"If unchecked, it will allow you to hide the product without removing it." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1920 +msgid "Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1024 +msgid "Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_128 +msgid "Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_256 +msgid "Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_512 +msgid "Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__standard_price +msgid "" +"In Standard Price & AVCO: value of the product (automatically computed in AVCO).\n" +" In FIFO: value of the next unit that will leave the stock (automatically computed).\n" +" Used to value the product when the purchase cost is not known (e.g. inventory adjustment).\n" +" Used to compute margins on sale orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_kitchen_order_tickets +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order_list +msgid "Includes Hotel Restaurant Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_reservation +msgid "Includes Hotel Restaurant Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_tables +msgid "Includes Hotel Restaurant Table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "Income Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "Incoming" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Information" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__default_code +msgid "Internal Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__barcode +msgid "International Article Number used for product identification." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "Inventory Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valuation +msgid "Inventory Valuation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "Invoicing Policy" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__iscategid +msgid "Is Categ" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__is_product_variant +msgid "Is Product Variant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isroom +msgid "Is Room" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isservice +msgid "Is Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__is_folio +msgid "Is a Hotel Guest??" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_configurable_attributes +msgid "Is a configurable product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__menucard_id +msgid "Item Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_tree +msgid "KOT List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "" +"Keep this field empty to use the default value from the product category." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "" +"Keep this field empty to use the default value from the product category. If" +" anglo-saxon accounting with automated valuation method is configured, the " +"expense account on the product category will be used." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_13 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_13_product_product +msgid "Khandvi" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__kitchen +msgid "Kitchen" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__kitchen +msgid "Kitchen Id" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Kitchen Order Ticket" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_kot +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__kot_order_id +msgid "Kitchen Order Tickets" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +msgid "Kitchen order list" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant____last_update +msgid "Last Modified on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_date +msgid "Last Updated on" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of customer taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of supplier taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__location_id +msgid "Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Malai Kofta" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__service_type +msgid "" +"Manually set quantities on order: Invoice based on the manually entered quantity, without creating an analytic account.\n" +"Timesheets on contract: Invoice based on the tracked hours on the related timesheet.\n" +"Create a task and track hours: Create a task on the sales order validation and track the work hours." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_22 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_22_product_product +msgid "Masala kulcha" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn_msg +msgid "Message for Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_ids +msgid "Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__orderpoint_ids +msgid "Minimum Stock Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_7 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_7_product_product +msgid "Mutter Paneer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__name +msgid "Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "No Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_item_count +msgid "Number of price rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_reservation_order_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__order +msgid "Order Created" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__o_date +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_list_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Order List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_number +msgid "Order No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__order_number +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_no +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Order Report" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order Total" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "" +"Ordered Quantity: Invoice quantities ordered by the customer.\n" +"Delivered Quantity: Invoice quantities delivered to the customer." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_reservation_order_form_tree +msgid "Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "Outgoing" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_6 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_6_product_product +msgid "Paneer Bhurji" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_4 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_4_product_product +msgid "Paneer Butter Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_10 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_10_product_product +msgid "Paneer Makhani" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_0 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_0_product_product +msgid "Paneer Tikaa" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Assign a Table" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Give an Order" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Select Tables For Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Point of Sale Category" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_20 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_20_product_product +msgid "Pongal" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price +msgid "Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__list_price +msgid "Price at which the product is sold to customers." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Price:" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "Pricelist" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Procurement" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_id +msgid "Product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__attribute_line_ids +msgid "Product Attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_manager_id +msgid "Product Manager" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Product Packages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__type +msgid "Product Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "Production Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_ids +msgid "Products" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__lst_price +msgid "Public Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_purchase +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Purchase Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "Purchase Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__putaway_rule_ids +msgid "Putaway Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_qty +msgid "Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__qty_available +msgid "Quantity On Hand" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "" +"Quantity of planned incoming products.\n" +"In a context with a single Stock Location, this includes goods arriving to this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods arriving to the Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods arriving to any Stock Location with 'internal' type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "" +"Quantity of planned outgoing products.\n" +"In a context with a single Stock Location, this includes goods leaving this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods leaving the Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods leaving any Stock Location with 'internal' type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_qty_configurator +msgid "Quantity visible in configurator" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_rate +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "Re-Invoice Expenses" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_expense_policy +msgid "Re-Invoice Policy visible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__code +msgid "Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_max_qty +msgid "Reordering Max Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_min_qty +msgid "Reordering Min Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__nbr_reordering_rules +msgid "Reordering Rules" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Reservation List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__reservation_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__reservation_id +msgid "Reservation No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__reservation_number +msgid "Reservation Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_reservation_order +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__reservation_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +msgid "Reservation Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_reservation_orders_ids +msgid "Reservation Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "Responsible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__rests_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__rest_item_id +msgid "Rest" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.hotel_restaurant_menu +msgid "Restaurant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__restaurant_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Restaurant Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Order Reservation Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_restaurant_orders_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_folio_rest_reservation +#: model:ir.ui.menu,name:hotel_restaurant.folio_rest_reservation_menu +msgid "Restaurant Reports" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Restaurant Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Reserved Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Restaurant kitchen Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Restaurants Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio1 +msgid "Restaurants Reports" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Restaurants Reservation Order Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__room_no +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__room_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__room_id +msgid "Room No" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_ids +msgid "Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_available_route_ids +msgid "Routes can be selected on this product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Sale Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_sale +msgid "Sales Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__list_price +msgid "Sales Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "" +"Selecting the \"Warning\" option will notify user with the message, " +"Selecting \"Blocking Message\" will throw an exception with the message and " +"block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sequence +msgid "Sequence" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Set to Draft" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sales_count +msgid "Sold" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_start +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_start +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be greater than the Folio Check-in Date!" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be less than the End Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__start_date +msgid "Start Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__state +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__state +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "States" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_move_ids +msgid "Stock Move" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Stock Quant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__price_subtotal +msgid "Subtotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Supplier Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Suppliers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_reservation_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_reservation_form_tree +msgid "Table Booking" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Table List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__name +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_order_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_order_form_tree +msgid "Table Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Table Order Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_tree +msgid "Table Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_wizard_hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_table_res +#: model:ir.ui.menu,name:hotel_restaurant.wizard_list_menu +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Table Reservation List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +msgid "Table reservation detail." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_tables_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_tables_form_tree +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_tree +msgid "Tables Detail" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_1 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_1_product_product +msgid "Tanduri Roti" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__tax +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__tax +msgid "Tax (%) " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Technical compute" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "" +"Technical field. Used for searching on pricelists, not stored in database." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_move_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Technical: used to compute quantities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__lst_price +msgid "" +"The sale price is managed from the product template. Click on the 'Configure" +" Variants' button to set the extra attribute prices." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__price_extra +msgid "This is the sum of the extra price of all attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated by manufacturing orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated when you do an inventory." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "" +"This user will be responsible of the next activities related to logistic " +"operations for this product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__to_weight +msgid "To Weigh With Scale" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Today's Booking" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Today's Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_total +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_total +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__service_type +msgid "Track Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__tracking +msgid "Tracking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_name +msgid "Unit of Measure Name" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_0 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_1 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_10 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_12 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_13 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_14 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_15 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_16 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_17 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_18 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_19 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_2 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_20 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_21 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_22 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_4 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_5 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_6 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_7 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_0_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_10_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_12_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_13_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_14_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_15_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_16_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_17_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_18_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_19_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_1_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_20_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_21_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_22_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_2_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_4_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_5_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_6_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_7_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Units" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_16 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_16_product_product +msgid "Upma" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_18 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_18_product_product +msgid "Uttapam" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_17 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_17_product_product +msgid "Vada-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Valid Product Attribute Lines" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__value_svl +msgid "Value Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1920 +msgid "Variant Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1024 +msgid "Variant Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_128 +msgid "Variant Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_256 +msgid "Variant Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_512 +msgid "Variant Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price_extra +msgid "Variant Price Extra" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__variant_seller_ids +msgid "Variant Seller" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Vendor Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Vendors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume +msgid "Volume" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume_uom_name +msgid "Volume unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__waiter_id +msgid "Waiter" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__waitername +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__waiter_name +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__warehouse_id +msgid "Warehouse" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight +msgid "Weight" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight_uom_name +msgid "Weight unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__check +msgid "With Details" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "" +"You tried to confirm reservation with table those already reserved in this " +"reservation period" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_folio_rest_reservation +msgid "folio.rest.reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_folio +msgid "hotel folio" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "hotel menucard" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_order__is_folio +msgid "is customer reside in hotel or not" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_hotel_order_kot +msgid "report.hotel_restaurant.report_hotel_order_kot" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_res_table +msgid "report.hotel_restaurant.report_res_table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_reserv_order +msgid "report.hotel_restaurant.report_reserv_order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__state +msgid "state" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "waiter name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_wizard_hotel_restaurant +msgid "wizard.hotel.restaurant" +msgstr "" diff --git a/hotel_restaurant/i18n/it.po b/hotel_restaurant/i18n/it.po new file mode 100644 index 000000000..5541b3f87 --- /dev/null +++ b/hotel_restaurant/i18n/it.po @@ -0,0 +1,2384 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hotel_restaurant +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2023-09-03 13:38+0000\n" +"Last-Translator: mymage \n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_count +msgid "# Product Variants" +msgstr "Nr. varianti prodotto" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Food Item List" +msgstr "Elenco articoli alimentari" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order List" +msgstr "Ordina elenco" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckIN" +msgstr "Check-in" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckOut" +msgstr "Check-out" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name :" +msgstr "Nome cliente :" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name" +msgstr "Nome cliente" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Date :" +msgstr "Data :" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Date" +msgstr "Data" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "End Date" +msgstr "Data finale" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio No." +msgstr "Foglio Nr." + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio Number :" +msgstr "Foglio numero :" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Folio Number" +msgstr "Numero foglio" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Food Item" +msgstr "Articolo alimentare" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "From:" +msgstr "Dal:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Items" +msgstr "Articoli" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Net Total:" +msgstr "Totale netto:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Date" +msgstr "Data ordine" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Number." +msgstr "Numero ordine." + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order Number" +msgstr "Numero ordine" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Quantity" +msgstr "Quantità" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Rate" +msgstr "Tariffa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Reservation No" +msgstr "Nr. prenotazione" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Room No." +msgstr "Nr. camera" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Room Number" +msgstr "Numero camera" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Served By" +msgstr "Servito da" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Start Date" +msgstr "Data partenza" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "State" +msgstr "Stato" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Sub Total:" +msgstr "Sub totale:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "SubTotal" +msgstr "Subtotale" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Table Information" +msgstr "Informazione tavolo" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Table Number" +msgstr "Numero tavolo" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Tables" +msgstr "Tavoli" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Tax:" +msgstr "Tassa:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "To:" +msgstr "Al:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total Orders" +msgstr "Totale ordini" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Total:" +msgstr "Totale:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total" +msgstr "Totale" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Waiter Name" +msgstr "Nome cameriere" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__description_sale +msgid "" +"A description of the Product that you want to communicate to your customers." +" This description will be copied to every Sales Order, Delivery Order and " +"Customer Invoice/Credit Note" +msgstr "" +"Una descrizione del prodotto che si vuole comunicare al cliente. Questa " +"descrizione verrà copiata in ogni ordine di vendita, ordine di consegna e " +"fattura/nota di credito del cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__type +msgid "" +"A storable product is a product for which you manage stock. The Inventory app has to be installed.\n" +"A consumable product is a product for which stock is not managed.\n" +"A service is a non-material product you provide." +msgstr "" +"Un prodotto stoccabile è un prodotto di cui si gestiscono le giacenze. L'app " +"Magazzino deve essere installata.\n" +"Un prodotto consumabile è un prodotto per cui le giacenze non sono gestite.\n" +"Un servizio è un prodotto immateriale fornito." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction +msgid "Action Needed" +msgstr "Azione richiesta" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__active +msgid "Active" +msgstr "Attivo" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_ids +msgid "Activities" +msgstr "Attività" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Decorazione eccezione attività" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_state +msgid "Activity State" +msgstr "Stato attività" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Activity Type Icon" +msgstr "Icona tipo attività" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__partner_address_id +msgid "Address" +msgstr "Indirizzo" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_19 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_19_product_product +msgid "Appam" +msgstr "Appam" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_attachment_count +msgid "Attachment Count" +msgstr "Conteggio allegati" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_template_attribute_value_ids +msgid "Attribute Values" +msgstr "Valori attributo" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Available in POS" +msgstr "Disponibile nel POS" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_12 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_12_product_product +msgid "Bahji Pav" +msgstr "Bahji Pav" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__barcode +msgid "Barcode" +msgstr "Codice a barre" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_1024_be_zoomed +msgid "Can Image 1024 be zoomed" +msgstr "L'immagine 1024 può essere zoommata" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_variant_1024_be_zoomed +msgid "Can Variant Image 1024 be zoomed" +msgstr "L'immagine variante 1024 può essere zoomata" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__purchase_ok +msgid "Can be Purchased" +msgstr "Può essere acquistato" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_ok +msgid "Can be Sold" +msgstr "Può essere venduto" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Cancel" +msgstr "Annulla" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__cancel +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__cancel +msgid "Cancelled" +msgstr "Annullato" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__capacity +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Capacity" +msgstr "Capacità" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_from_categ_ids +msgid "Category Routes" +msgstr "Percorsi categoria" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Category used in the Point of Sale." +msgstr "Categoria utilizzata nel punto vendita." + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Category:" +msgstr "Categoria:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +msgid "Categoty" +msgstr "Categoria" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__to_weight +msgid "" +"Check if the product should be weighted using the hardware scale " +"integration." +msgstr "" +"Selezionare se il prodotto deve essere pesato utilizzando l'integrazione con " +"la bilancia." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Check if you want this product to appear in the Point of Sale." +msgstr "Selezionare per visualizzare il prodotto nel punto vendita." + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_5 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_5_product_product +msgid "Cheese Masala" +msgstr "Cheese Masala" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__child_ids +msgid "Child Categories" +msgstr "Categorie figlie" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_21 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_21_product_product +msgid "Chole-Bhature" +msgstr "Chole-Bhature" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "Click to Add Food Items" +msgstr "Fare clic per aggiungere articoli alimentari" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__color +msgid "Color Index" +msgstr "Indice colore" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__combination_indices +msgid "Combination Indices" +msgstr "Indici assortimento" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__company_id +msgid "Company" +msgstr "Azienda" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Confirm" +msgstr "Conferma" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__confirm +msgid "Confirmed" +msgstr "Confermata" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__standard_price +msgid "Cost" +msgstr "Costo" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_currency_id +msgid "Cost Currency" +msgstr "Valuta costo" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_method +msgid "Costing Method" +msgstr "Metodo valorizzazione" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Create Order" +msgstr "Crea ordine" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Current Booking" +msgstr "Prenotazioni attuali" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__qty_available +msgid "" +"Current quantity of products.\n" +"In a context with a single Stock Location, this includes goods stored at this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the Stock Location of this Warehouse, or any of its children.\n" +"stored in the Stock Location of the Warehouse of this Shop, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' type." +msgstr "" +"Quantità attuale di prodotti.\n" +"In un contesto con una sola ubicazione di magazzino, include beni stoccati " +"in questa ubicazione o qualsiasi delle sue figlie.\n" +"In un contesto con un solo magazzino, include beni stoccati nell'ubicazione " +"di questo magazzino o una qualsiasi delle figlie.\n" +"Stoccate nell'ubicazione di questo negozio, o qualsiasi delle sue figlie.\n" +"Altrimenti, include beni stoccati in qualsiasi ubicazione di tipo 'interno'." + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_bill +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_reservation_order_bill +msgid "Customer Bill" +msgstr "Fattura cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "Customer Lead Time" +msgstr "Tempo attesa cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__customer_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__customer_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Customer Name" +msgstr "Nome cliente" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Customer Order Bill" +msgstr "Fattura ordine cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__partner_ref +msgid "Customer Ref" +msgstr "Rif. cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__taxes_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Customer Taxes" +msgstr "Tasse cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_date +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Date" +msgstr "Data" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Default taxes used when buying the product." +msgstr "Tasse predefinite nell'acquisto del prodotto." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__taxes_id +msgid "Default taxes used when selling the product." +msgstr "Tasse predefinite quando si vende il prodotto." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Unità di misura predefinita per tutte le operazioni di magazzino." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "" +"Default unit of measure used for purchase orders. It must be in the same " +"category as the default unit of measure." +msgstr "" +"Unità di misura predefinita utilizzata per ordini di acquisto. Deve essere " +"della stessa categoria dell'unità di misura predefinita." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Define vendor pricelists." +msgstr "Definizione listino fornitore." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "" +"Delivery lead time, in days. It's the number of days, promised to the " +"customer, between the confirmation of the sales order and the delivery." +msgstr "" +"Tempo di consegna, in giorni. È il numero di giorni promesso al cliente, tra " +"la conferma dell'ordine di vendita e la consegna." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__route_ids +msgid "" +"Depending on the modules installed, this will allow you to define the route " +"of the product: whether it will be bought, manufactured, replenished on " +"order, etc." +msgstr "" +"In funzione dei moduli installati, consentirà di definire il percorso del " +"prodotto: se verrà comprato, lavorato, rifornito su ordine, ecc." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Description" +msgstr "Descrizione" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingout +msgid "Description on Delivery Orders" +msgstr "Descrizione negli ordini di consegna" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_picking +msgid "Description on Picking" +msgstr "Descrizione sul prelievo" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingin +msgid "Description on Receptions" +msgstr "Descrizione sulla ricezione" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Descriptions" +msgstr "Descrizioni" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__done +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Done" +msgstr "Evasa" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_2 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_2_product_product +msgid "Dosa" +msgstr "Dosa" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__draft +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Draft" +msgstr "Bozza" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_end +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_end +msgid "End Date" +msgstr "Data fine" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "End Date Should be less than the Folio Check-out Date!" +msgstr "La data finale deve essere inferiore alla data di check-out del foglio!" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__end_date +msgid "End Time" +msgstr "Ora termine" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__tracking +msgid "Ensure the traceability of a storable product in your warehouse." +msgstr "Assicura la tracciabilità di un prodotto stoccabile nel magazzino." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "Expense Account" +msgstr "Conto spese" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "" +"Expenses and vendor bills can be re-invoiced to a customer.With this option," +" a validated expense can be re-invoice to a customer at its cost or sales " +"price." +msgstr "" +"Spese e fatture fornitore possono essere rifatturate ad un cliente. Con " +"questa opzione, una spesa validata può essere rifatturata ad un cliente al " +"suo costo o a prezzo di vendita." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__folio_id +msgid "Folio No" +msgstr "Foglio nr." + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_rest_order +msgid "Folio Rest Report" +msgstr "Resoconto foglio ristorante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_follower_ids +msgid "Followers" +msgstr "Seguito da" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_channel_ids +msgid "Followers (Channels)" +msgstr "Seguito da (canali)" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguito da (partner)" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Icona Font Awesome es. fa-tasks" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_form +#: model:ir.ui.menu,name:hotel_restaurant.menu_hotel_food_item +msgid "Food Item" +msgstr "Articolo alimentare" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__categ_id +msgid "Food Item Category" +msgstr "Categoria articolo alimentare" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Name" +msgstr "Nome articolo alimentare" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Food Item Rate" +msgstr "Tariffa articolo alimentare" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_type_view_form +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard_type +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__menu_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Type" +msgstr "Tipo articolo alimentare" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_action_hotel_menucard_type_view_form +msgid "Food Item Types" +msgstr "Tipi articolo alimentare" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_hotel_menucard_form +msgid "Food Items" +msgstr "Articoli alimentari" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Manager" +msgstr "Responsabile alimentari" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Type" +msgstr "Tipo alimento" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "Forecast Quantity" +msgstr "Quantità prevista" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "" +"Forecast quantity (computed as Quantity On Hand - Outgoing + Incoming)\n" +"In a context with a single Stock Location, this includes goods stored in this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' type." +msgstr "" +"Quantità previsionale (calcolata come quantità disponibile - uscite + " +"entrate)\n" +"In un contesto con una sola ubicazione di magazzino, include i beni stoccati " +"in questa ubicazione o qualsiasi delle sue figlie.\n" +"In un contesto con un solo magazzino, include i beni stoccati " +"nell'ubicazione di magazzino di questo magazzino o qualsiasi delle figlie.\n" +"Altrimenti, include i beni stoccati in qualsiasi ubicazione di tipo " +"'interno'." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__free_qty +msgid "" +"Forecast quantity (computed as Quantity On Hand - reserved quantity)\n" +"In a context with a single Stock Location, this includes goods stored in this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' type." +msgstr "" +"Quantità previsionale (calcolata come quantità disponibile - quantità " +"riservata) \n" +"In un contesto con una sola ubicazione di magazzino, include i beni stoccati " +"in questa ubicazione o qualsiasi delle sue figlie.\n" +"In un contesto con un solo magazzino, include i beni stoccati " +"nell'ubicazione di questo magazzino o qualsiasi delle figlie.\n" +"Altrimenti, include i beni stoccati in qualsiasi ubicazione di tipo " +"'interno'." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__free_qty +msgid "Free To Use Quantity " +msgstr "Quantità gratuita " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate Bill" +msgstr "Genera conto" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate KOT" +msgstr "Genera comanda" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Gives the different ways to package the same product." +msgstr "Consente di imballare diversamente lo stesso prodotto." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sequence +msgid "Gives the sequence order when displaying a product list" +msgstr "" +"Fornisce la sequenza di ordinamento nella visualizzazione di un elenco " +"prodotti" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Group By" +msgstr "Raggruppa per" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_14 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_14_product_product +msgid "Halva" +msgstr "Halva" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_list +msgid "Hotel Food Items Type" +msgstr "Tipo articoli alimentari hotel" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Hotel Menucard" +msgstr "Menu hotel" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Hotel Restaurant" +msgstr "Ristorante hotel" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__id +msgid "ID" +msgstr "ID" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon" +msgstr "Icona" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Icona per indicare un'attività eccezione." + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_15 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_15_product_product +msgid "Idli-Sambar" +msgstr "Idli-Sambar" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread +msgid "If checked, new messages require your attention." +msgstr "Se selezionata, nuovi messaggi richiedono attenzione." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Se selezionata, alcuni messaggi hanno un errore di consegna." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__active +msgid "" +"If unchecked, it will allow you to hide the product without removing it." +msgstr "Se deselezionata, consente di nascondere un prodotto senza eliminarlo." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1920 +msgid "Image" +msgstr "Immagine" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1024 +msgid "Image 1024" +msgstr "Immagine 1024" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_128 +msgid "Image 128" +msgstr "Immagine 128" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_256 +msgid "Image 256" +msgstr "Immagine 256" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_512 +msgid "Image 512" +msgstr "Immagine 512" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__standard_price +msgid "" +"In Standard Price & AVCO: value of the product (automatically computed in AVCO).\n" +" In FIFO: value of the next unit that will leave the stock (automatically computed).\n" +" Used to value the product when the purchase cost is not known (e.g. inventory adjustment).\n" +" Used to compute margins on sale orders." +msgstr "" +"Nei prezzi standard & costi medi: valore del prodotto (calcolato " +"automaticamente nei costi medi).\n" +" In FIFO: valore dell'unità successiva che lascerà il magazzino (" +"calcolato automaticamente).\n" +" Utilizzato per valutare il prodotto quando il costo di acquisto non " +"è noto (es. rettifiche di inventario).\n" +" Utilizzato per calcolare i margini negli ordini di vendita." + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_kitchen_order_tickets +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order_list +msgid "Includes Hotel Restaurant Order" +msgstr "Include l'ordine ristorante dell'hotel" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_reservation +msgid "Includes Hotel Restaurant Reservation" +msgstr "Include la prenotazione ristorante dell'hotel" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_tables +msgid "Includes Hotel Restaurant Table" +msgstr "Include il tavolo ristorante dell'hotel" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "Income Account" +msgstr "Conto ricavi" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "Incoming" +msgstr "In ingresso" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Information" +msgstr "Informazioni" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__default_code +msgid "Internal Reference" +msgstr "Riferimento interno" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__barcode +msgid "International Article Number used for product identification." +msgstr "" +"Codice internazionale articolo utilizzato per l'identificazione del prodotto." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "Inventory Location" +msgstr "Ubicazione di inventario" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valuation +msgid "Inventory Valuation" +msgstr "Valutazione magazzino" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "Invoicing Policy" +msgstr "Politica fatturazione" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__iscategid +msgid "Is Categ" +msgstr "È categoria" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_is_follower +msgid "Is Follower" +msgstr "Segue" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__is_product_variant +msgid "Is Product Variant" +msgstr "È una variante prodotto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isroom +msgid "Is Room" +msgstr "È una camera" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isservice +msgid "Is Service" +msgstr "È un servizio" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__is_folio +msgid "Is a Hotel Guest??" +msgstr "È un ospite dell'hotel?" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_configurable_attributes +msgid "Is a configurable product" +msgstr "È un prodotto configurabile" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__menucard_id +msgid "Item Name" +msgstr "Nome elemento" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_tree +msgid "KOT List" +msgstr "Lista comande" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "" +"Keep this field empty to use the default value from the product category." +msgstr "" +"Lasciare il campo vuoto per utilizzare il valore predefinito della categoria " +"prodotto." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "" +"Keep this field empty to use the default value from the product category. If" +" anglo-saxon accounting with automated valuation method is configured, the " +"expense account on the product category will be used." +msgstr "" +"Lasciare il campo vuoto per utilizzare il valore predefinito dalla categoria " +"prodotto. Se è configurato il metodo di valorizzazione della contabilità " +"anglo-sassone, verrà utilizzato il conto spese nella categoria prodotto." + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_13 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_13_product_product +msgid "Khandvi" +msgstr "Khandvi" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__kitchen +msgid "Kitchen" +msgstr "Cucina" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__kitchen +msgid "Kitchen Id" +msgstr "ID cucina" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Kitchen Order Ticket" +msgstr "Comanda cucina" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_kot +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__kot_order_id +msgid "Kitchen Order Tickets" +msgstr "Comande cucina" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +msgid "Kitchen order list" +msgstr "Elenco ordine cucina" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of customer taxes applied on the perticular Food Item." +msgstr "Elenco delle tasse cliente applicate al cibo particolare." + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of supplier taxes applied on the perticular Food Item." +msgstr "Elenco tasse fornitore applicate all'alimento specifico." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__location_id +msgid "Location" +msgstr "Ubicazione" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_main_attachment_id +msgid "Main Attachment" +msgstr "Allegato principale" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Malai Kofta" +msgstr "Malai Kofta" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manuale: le registrazioni contabili per la valorizzazione del magazzino non " +"sono inserite automaticamente.\n" +" Automatico: una registrazione contabile è creata automaticamente per " +"valorizzare il magazzino quando un prodotto entra o esce dall'azienda.\n" +" " + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__service_type +msgid "" +"Manually set quantities on order: Invoice based on the manually entered quantity, without creating an analytic account.\n" +"Timesheets on contract: Invoice based on the tracked hours on the related timesheet.\n" +"Create a task and track hours: Create a task on the sales order validation and track the work hours." +msgstr "" +"Imposta manualmente la quantità nell'ordine: la fattura si basa sulle " +"quantità inserite manualmente, senza la creazione di un conto analitico.\n" +"Fogli ore a contratto: la fattura si basa sulle ore registrate del relativo " +"foglio ore.\n" +"Crea una attività e traccia le ore: crea una attività alla validazione " +"dell'ordine di vendita e traccia le ore lavorate." + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_22 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_22_product_product +msgid "Masala kulcha" +msgstr "Masala kulcha" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error +msgid "Message Delivery error" +msgstr "Errore di consegna messaggio" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn_msg +msgid "Message for Sales Order Line" +msgstr "Messaggio per riga ordine vendita" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_ids +msgid "Messages" +msgstr "Messaggi" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__orderpoint_ids +msgid "Minimum Stock Rules" +msgstr "Regole giacenze minime" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_7 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_7_product_product +msgid "Mutter Paneer" +msgstr "Mutter Paneer" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Scadenza mia attività" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__name +msgid "Name" +msgstr "Nome" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Scadenza prossima attività" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_summary +msgid "Next Activity Summary" +msgstr "Riepilogo prossima attività" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_id +msgid "Next Activity Type" +msgstr "Tipo prossima attività" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "No Food Items" +msgstr "Nessun articolo alimentare" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of Actions" +msgstr "Numero di azioni" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of errors" +msgstr "Numero di errori" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Numero di messaggi che richiedono un'azione" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Numero di messaggi con errore di consegna" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_item_count +msgid "Number of price rules" +msgstr "Numero di regole prezzi" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Number of unread messages" +msgstr "Numero di messaggi non letti" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_reservation_order_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order" +msgstr "Ordine" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__order +msgid "Order Created" +msgstr "Ordine creato" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__o_date +msgid "Order Date" +msgstr "Data ordine" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_list_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Order List" +msgstr "Elenco ordine" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_number +msgid "Order No" +msgstr "Nr. ordine" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__order_number +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_no +msgid "Order Number" +msgstr "Numero ordine" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Order Report" +msgstr "Resoconto ordine" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order Total" +msgstr "Totale ordine" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "" +"Ordered Quantity: Invoice quantities ordered by the customer.\n" +"Delivered Quantity: Invoice quantities delivered to the customer." +msgstr "" +"Quantità ordinata: fattura quantità ordinate dal cliente.\n" +"Quantità consegnata: fattura quantità consegnate al cliente." + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_reservation_order_form_tree +msgid "Orders" +msgstr "Ordini" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "Outgoing" +msgstr "In partenza" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_6 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_6_product_product +msgid "Paneer Bhurji" +msgstr "Paneer Bhurji" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_4 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_4_product_product +msgid "Paneer Butter Masala" +msgstr "Paneer Butter Masala" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_10 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_10_product_product +msgid "Paneer Makhani" +msgstr "Paneer Makhani" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_0 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_0_product_product +msgid "Paneer Tikaa" +msgstr "Paneer Tikaa" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Assign a Table" +msgstr "Assegnare un tavolo" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Give an Order" +msgstr "Inserire un ordine" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Select Tables For Reservation" +msgstr "Selezionare un tavolo per la prenotazione" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Point of Sale Category" +msgstr "Categoria punto vendita" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_20 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_20_product_product +msgid "Pongal" +msgstr "Pongal" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price +msgid "Price" +msgstr "Prezzo" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__list_price +msgid "Price at which the product is sold to customers." +msgstr "Prezzo di vendita del prodotto al cliente." + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Price:" +msgstr "Prezzo:" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "Pricelist" +msgstr "Listino prezzi" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Procurement" +msgstr "Approvvigionamento" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_id +msgid "Product" +msgstr "Prodotto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__attribute_line_ids +msgid "Product Attributes" +msgstr "Attributi prodotto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_manager_id +msgid "Product Manager" +msgstr "Responsabile prodotto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Product Packages" +msgstr "Imballaggi prodotto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_tmpl_id +msgid "Product Template" +msgstr "Modello prodotto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__type +msgid "Product Type" +msgstr "Tipologia prodotto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "Production Location" +msgstr "Ubicazione produzione" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_ids +msgid "Products" +msgstr "Prodotti" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__lst_price +msgid "Public Price" +msgstr "Prezzo pubblico" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_purchase +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Purchase Description" +msgstr "Descrizione acquisto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "Purchase Unit of Measure" +msgstr "Unità di misura acquisto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__putaway_rule_ids +msgid "Putaway Rules" +msgstr "Regole di stoccaggio" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_qty +msgid "Qty" +msgstr "Qta." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__qty_available +msgid "Quantity On Hand" +msgstr "Quantità disponibile" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__quantity_svl +msgid "Quantity Svl" +msgstr "Quantità Svl" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "" +"Quantity of planned incoming products.\n" +"In a context with a single Stock Location, this includes goods arriving to this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods arriving to the Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods arriving to any Stock Location with 'internal' type." +msgstr "" +"Quantità dei prodotti in ingresso pianificati.\n" +"Nel caso di una singola ubicazione di magazzino, include i beni in arrivo in " +"questa ubicazione, o una delle sue figlie.\n" +"Nel caso di un singolo magazzino, include i beni in arrivo nella ubicazione " +"di questo magazzino, o una delle sue figlie.\n" +"Altrimenti, include beni in arrivo in qualsiasi ubicazione di tipo 'interno'." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "" +"Quantity of planned outgoing products.\n" +"In a context with a single Stock Location, this includes goods leaving this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods leaving the Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods leaving any Stock Location with 'internal' type." +msgstr "" +"Quantità dei prodotti in uscita pianificati.\n" +"Nel caso di una singola ubicazione di magazzino, include i beni in uscita da " +"questa ubicazione, o una delle sue figlie.\n" +"Nel caso di un singolo magazzino, include i beni in partenza dalla " +"ubicazione di questo magazzino, o una delle sue figlie.\n" +"Altrimenti, include beni in uscita in qualsiasi ubicazione di tipo 'interno'." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_qty_configurator +msgid "Quantity visible in configurator" +msgstr "Quantità visibile nel configuratore" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_rate +msgid "Rate" +msgstr "Tariffa" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "Re-Invoice Expenses" +msgstr "Spese di rifatturazione" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_expense_policy +msgid "Re-Invoice Policy visible" +msgstr "Politica rifatturazione visibile" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__code +msgid "Reference" +msgstr "Riferimento" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_max_qty +msgid "Reordering Max Qty" +msgstr "Quantità massima riordine" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_min_qty +msgid "Reordering Min Qty" +msgstr "Quantità minima riordine" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__nbr_reordering_rules +msgid "Reordering Rules" +msgstr "Regole riordine" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Reservation List" +msgstr "Elenco prenotazione" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__reservation_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__reservation_id +msgid "Reservation No" +msgstr "Nr. prenotazione" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__reservation_number +msgid "Reservation Number" +msgstr "Numero prenotazione" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_reservation_order +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__reservation_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +msgid "Reservation Order" +msgstr "Ordine prenotazione" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_reservation_orders_ids +msgid "Reservation Orders" +msgstr "Ordini prenotazione" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "Responsible" +msgstr "Responsabile" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_user_id +msgid "Responsible User" +msgstr "Utente responsabile" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__rests_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__rest_item_id +msgid "Rest" +msgstr "Riposo" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.hotel_restaurant_menu +msgid "Restaurant" +msgstr "Ristorante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__restaurant_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Restaurant Order" +msgstr "Ordine ristorante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Order Reservation Details" +msgstr "Dettagli prenotazione ordine ristorante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_restaurant_orders_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Orders" +msgstr "Ordini ristorante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Orders Details" +msgstr "Dettagli ordini ristorante" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_folio_rest_reservation +#: model:ir.ui.menu,name:hotel_restaurant.folio_rest_reservation_menu +msgid "Restaurant Reports" +msgstr "Resoconti ristorante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Restaurant Reservation" +msgstr "Prenotazione ristorante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Reserved Order" +msgstr "Ordine ristorante prenotato" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Restaurant kitchen Order" +msgstr "Comanda ristorante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Restaurants Orders Details" +msgstr "Dettagli ordini ristorante" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio1 +msgid "Restaurants Reports" +msgstr "Resoconti ristoranti" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Restaurants Reservation Order Details" +msgstr "Dettagli ordine prenotazione ristoranti" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__room_no +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__room_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__room_id +msgid "Room No" +msgstr "Camera n°" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Room Number" +msgstr "Numero camera" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_ids +msgid "Routes" +msgstr "Percorsi" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_available_route_ids +msgid "Routes can be selected on this product" +msgstr "I percorsi possono essere selezionati in questo prodotto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Errore consegna SMS" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Sale Description" +msgstr "Descrizione vendita" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_sale +msgid "Sales Description" +msgstr "Descrizione vendite" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "Sales Order Line" +msgstr "Riga ordine di vendita" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__list_price +msgid "Sales Price" +msgstr "Prezzo di vendita" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "" +"Selecting the \"Warning\" option will notify user with the message, " +"Selecting \"Blocking Message\" will throw an exception with the message and " +"block the flow. The Message has to be written in the next field." +msgstr "" +"Selezionando l'opzione \"Attenzione\" l'utente verrà avvisato con il " +"messaggio. Selezionando \"Ferma messaggi\" genererà un'eccezione con il " +"messaggio e fermerà il flusso. Il messaggio deve essere scritto nel campo " +"successivo." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sequence +msgid "Sequence" +msgstr "Sequenza" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Set to Draft" +msgstr "Imposta a bozza" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sales_count +msgid "Sold" +msgstr "Venduta" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Prezzo standard: i prodotti vengono valorizzati al loro costo standard " +"definito nel prodotto.\n" +" Costo medio (CoMe): i prodotti vengono valorizzati al costo medio " +"pesato.\n" +" First In First Out (FIFO): i prodotti sono valorizzati supponendo " +"che i primi che entrano siano i primi che escono.\n" +" " + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_start +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_start +msgid "Start Date" +msgstr "Data inizio" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be greater than the Folio Check-in Date!" +msgstr "" +"La data partenza deve essere maggiore della data di check-in del foglio!" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be less than the End Date!" +msgstr "La data di inizio deve essere inferiore alla data di fine!" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__start_date +msgid "Start Time" +msgstr "Ora inizio" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__state +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__state +msgid "State" +msgstr "Stato" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "States" +msgstr "Stati" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Stato in base alle attività\n" +"Scaduto: la data richiesta è trascorsa\n" +"Oggi: la data attività è oggi\n" +"Pianificato: attività future." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_move_ids +msgid "Stock Move" +msgstr "Movimento di magazzino" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Stock Quant" +msgstr "Quanto di magazzino" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Livello valutazione magazzino" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__price_subtotal +msgid "Subtotal" +msgstr "Subtotale" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Supplier Taxes" +msgstr "Tasse fornitore" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Suppliers" +msgstr "Fornitori" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_reservation_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_reservation_form_tree +msgid "Table Booking" +msgstr "Prenotazione tavolo" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Table List" +msgstr "Elenco tavoli" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__name +msgid "Table Number" +msgstr "Numero tavolo" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_order_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_order_form_tree +msgid "Table Order" +msgstr "Ordine tavolo" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Table Order Total" +msgstr "Totale ordine tavolo" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_tree +msgid "Table Reservation" +msgstr "Prenotazione tavolo" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_wizard_hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_table_res +#: model:ir.ui.menu,name:hotel_restaurant.wizard_list_menu +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Table Reservation List" +msgstr "Elenco prenotazione tavolo" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +msgid "Table reservation detail." +msgstr "Dettaglio prenotazione tavolo." + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_tables_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_tables_form_tree +msgid "Tables" +msgstr "Tavoli" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_tree +msgid "Tables Detail" +msgstr "Dettaglio tavoli" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_1 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_1_product_product +msgid "Tanduri Roti" +msgstr "Tanduri Roti" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__tax +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__tax +msgid "Tax (%) " +msgstr "Tassa (%) " + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Technical compute" +msgstr "Calcolo tecnico" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "" +"Technical field. Used for searching on pricelists, not stored in database." +msgstr "" +"Campo tecnico. Utilizzato per la ricerca nei listini, non salvato nel " +"database." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_move_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Technical: used to compute quantities." +msgstr "Tecnico: utilizzato per calcolare le quantità." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__lst_price +msgid "" +"The sale price is managed from the product template. Click on the 'Configure" +" Variants' button to set the extra attribute prices." +msgstr "" +"Il prezzo di vendita è gestito dal modello prodotto. Fare clic sul pulsante " +"'Configura varianti' per impostare i prezzi degli attributi extra." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__price_extra +msgid "This is the sum of the extra price of all attributes" +msgstr "Questa è la somma dei prezzi extra di tutti gli attributi" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated by manufacturing orders." +msgstr "" +"Questa ubicazione di magazzino verrà utilizzata, al posto della predefinita, " +"come ubicazione origine per i movimenti di magazzino generati da ordini di " +"produzione." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated when you do an inventory." +msgstr "" +"Questa ubicazione di magazzino verrà utilizzata, al posto della predefinita, " +"come ubicazione origine per i movimenti di magazzino generati da un " +"inventario." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "" +"This user will be responsible of the next activities related to logistic " +"operations for this product." +msgstr "" +"Questo utente sarà responsabile delle azioni successive relative alle " +"operazioni logistiche per questo prodotto." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__to_weight +msgid "To Weigh With Scale" +msgstr "Da pesare con la bilancia" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Today's Booking" +msgstr "Prenotazioni odierne" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Today's Orders" +msgstr "Ordini odierni" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_total +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_total +msgid "Total" +msgstr "Totale" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__service_type +msgid "Track Service" +msgstr "Traccia servizio" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__tracking +msgid "Tracking" +msgstr "Tracciamento" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Tipo di attività eccezione sul record." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Unit of Measure" +msgstr "Unità di misura" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_name +msgid "Unit of Measure Name" +msgstr "Nome unità di misura" + +#. module: hotel_restaurant +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_0 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_1 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_10 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_12 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_13 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_14 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_15 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_16 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_17 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_18 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_19 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_2 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_20 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_21 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_22 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_4 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_5 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_6 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_7 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_0_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_10_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_12_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_13_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_14_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_15_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_16_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_17_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_18_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_19_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_1_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_20_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_21_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_22_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_2_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_4_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_5_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_6_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_7_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Units" +msgstr "Unità" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread +msgid "Unread Messages" +msgstr "Messaggi non letti" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Unread Messages Counter" +msgstr "Contatore messaggi non letti" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_16 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_16_product_product +msgid "Upma" +msgstr "Upma" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_18 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_18_product_product +msgid "Uttapam" +msgstr "Uttapam" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_17 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_17_product_product +msgid "Vada-Sambar" +msgstr "Vada-Sambar" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Valid Product Attribute Lines" +msgstr "Righe attributo prodotto valido" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__value_svl +msgid "Value Svl" +msgstr "Valore Svl" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1920 +msgid "Variant Image" +msgstr "Immagine variante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1024 +msgid "Variant Image 1024" +msgstr "Immagine variante 1024" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_128 +msgid "Variant Image 128" +msgstr "Immagine variante 128" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_256 +msgid "Variant Image 256" +msgstr "Immagine variante 256" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_512 +msgid "Variant Image 512" +msgstr "Immagine variante 512" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price_extra +msgid "Variant Price Extra" +msgstr "Extra prezzo variante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__variant_seller_ids +msgid "Variant Seller" +msgstr "Venditore variante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Vendor Taxes" +msgstr "Tasse venditore" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Vendors" +msgstr "Fornitori" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume +msgid "Volume" +msgstr "Volume" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume_uom_name +msgid "Volume unit of measure label" +msgstr "Etichetta unità di misura volume" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__waiter_id +msgid "Waiter" +msgstr "Cameriere" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__waitername +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__waiter_name +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Waiter Name" +msgstr "Nome cameriere" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__warehouse_id +msgid "Warehouse" +msgstr "Magazzino" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website Messages" +msgstr "Messaggi sito web" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website communication history" +msgstr "Cronologia comunicazioni sito web" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight +msgid "Weight" +msgstr "Peso" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight_uom_name +msgid "Weight unit of measure label" +msgstr "Etichetta unità di misura peso" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__check +msgid "With Details" +msgstr "Con dettagli" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "" +"You tried to confirm reservation with table those already reserved in this " +"reservation period" +msgstr "" +"Si è tentato di confermare una prenotazione con un tavolo già prenotato in " +"questo periodo" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "date" +msgstr "data" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_folio_rest_reservation +msgid "folio.rest.reservation" +msgstr "folio.rest.reservation" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_folio +msgid "hotel folio" +msgstr "foglio hotel" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "hotel menucard" +msgstr "menu hotel" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_order__is_folio +msgid "is customer reside in hotel or not" +msgstr "se il cliente risiede o meno in hotel" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_hotel_order_kot +msgid "report.hotel_restaurant.report_hotel_order_kot" +msgstr "report.hotel_restaurant.report_hotel_order_kot" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_res_table +msgid "report.hotel_restaurant.report_res_table" +msgstr "report.hotel_restaurant.report_res_table" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_reserv_order +msgid "report.hotel_restaurant.report_reserv_order" +msgstr "report.hotel_restaurant.report_reserv_order" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__state +msgid "state" +msgstr "stato" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "waiter name" +msgstr "nome cameriere" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_wizard_hotel_restaurant +msgid "wizard.hotel.restaurant" +msgstr "wizard.hotel.restaurant" diff --git a/hotel_restaurant/i18n/pt_BR.po b/hotel_restaurant/i18n/pt_BR.po new file mode 100644 index 000000000..35db65898 --- /dev/null +++ b/hotel_restaurant/i18n/pt_BR.po @@ -0,0 +1,2619 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hotel_restaurant +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2019-12-30 16:13+0000\n" +"Last-Translator: Augusto D. Lisbôa \n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.10\n" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_count +msgid "# Product Variants" +msgstr "# Variantes de Produto" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Food Item List" +msgstr "Listagem de alimentos" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order List" +msgstr "Lista de pedidos" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckIN" +msgstr "Check-IN" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckOut" +msgstr "Check-Out" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name :" +msgstr " Nome do cliente: " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name" +msgstr "Nome do Cliente" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#, fuzzy +msgid "Date :" +msgstr " Data: " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Date" +msgstr " Data " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "End Date" +msgstr " Data de término " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio No." +msgstr " Número do fólio " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio Number :" +msgstr " Número do fólio:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Folio Number" +msgstr " Número do fólio" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Food Item" +msgstr "Alimento" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "From:" +msgstr "De:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Items" +msgstr " Itens " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Net Total:" +msgstr " Total líquido: " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Date" +msgstr " Data do pedido " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Number." +msgstr " Número do pedido. " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order Number" +msgstr " Número do pedido. " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Quantity" +msgstr " Quantidade " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Rate" +msgstr " Taxa " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Reservation No" +msgstr "Nº da reserva" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Room No." +msgstr "Nº do quarto" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Room Number" +msgstr " Número do quarto " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Served By" +msgstr " Servido por " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Start Date" +msgstr " Data de início " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "State" +msgstr " Estado " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Sub Total:" +msgstr " Subtotal: " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "SubTotal" +msgstr " Subtotal: " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Table Information" +msgstr " Informações da mesa " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Table Number" +msgstr " Número da mesa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Tables" +msgstr "Mesas" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Tax:" +msgstr " Impostos: " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "To:" +msgstr "até:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total Orders" +msgstr " Total de pedidos " + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Total:" +msgstr "Total:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total" +msgstr "Total" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Waiter Name" +msgstr " Nome do garçom " + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__description_sale +msgid "" +"A description of the Product that you want to communicate to your customers. " +"This description will be copied to every Sales Order, Delivery Order and " +"Customer Invoice/Credit Note" +msgstr "" +"Uma descrição do produto que você deseja comunicar aos seus clientes. Esta " +"descrição será copiada para todas as ordens do cliente, ordens de entrega e " +"fatura / nota de crédito do cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__type +msgid "" +"A storable product is a product for which you manage stock. The Inventory " +"app has to be installed.\n" +"A consumable product is a product for which stock is not managed.\n" +"A service is a non-material product you provide." +msgstr "" +"Um produto armazenável é um produto para o qual você gerencia o estoque. O " +"aplicativo estoque deve ser instalado. \n" +"Um produto consumível é um produto para o qual o estoque não é gerenciado. \n" +"Um serviço é um produto não material que você fornece." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction +msgid "Action Needed" +msgstr "Ações necessárias" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__active +msgid "Active" +msgstr "Ativo" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_ids +msgid "Activities" +msgstr "Atividades" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_state +msgid "Activity State" +msgstr "Estado de Atividade" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__partner_address_id +msgid "Address" +msgstr "Endereço" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_19 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_19_product_product +#, fuzzy +msgid "Appam" +msgstr "Appam " + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_attachment_count +msgid "Attachment Count" +msgstr "Contagem de Anexos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_template_attribute_value_ids +msgid "Attribute Values" +msgstr "Valores dos Atributos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Available in POS" +msgstr "Disponível no PDV" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_12 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_12_product_product +msgid "Bahji Pav" +msgstr "Bahji pav" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__barcode +msgid "Barcode" +msgstr "Cód. de barras" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_1024_be_zoomed +msgid "Can Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_variant_1024_be_zoomed +msgid "Can Variant Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__purchase_ok +msgid "Can be Purchased" +msgstr "Pode ser Comprado" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_ok +msgid "Can be Sold" +msgstr "Pode ser Vendido" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__cancel +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__cancel +msgid "Cancelled" +msgstr "Cancelado" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__capacity +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Capacity" +msgstr "Capacidade" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_from_categ_ids +msgid "Category Routes" +msgstr "Categoria de Rotas" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Category used in the Point of Sale." +msgstr "Categoria usada no Ponto de Venda." + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Category:" +msgstr "Categoria:" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +msgid "Categoty" +msgstr "Categoria" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__to_weight +msgid "" +"Check if the product should be weighted using the hardware scale integration." +msgstr "" +"Verifique se o produto deve ser ponderado usando a integração da balança de " +"hardware." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Check if you want this product to appear in the Point of Sale." +msgstr "Marque se você deseja que este produto apareça no Ponto de Venda." + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_5 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_5_product_product +msgid "Cheese Masala" +msgstr "Queijo Masala" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__child_ids +msgid "Child Categories" +msgstr "Categorias Filha" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_21 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_21_product_product +msgid "Chole-Bhature" +msgstr "Chole-bhature" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "Click to Add Food Items" +msgstr "Clique para adicionar pratos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__color +msgid "Color Index" +msgstr "Índice de Cores" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__combination_indices +msgid "Combination Indices" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__company_id +msgid "Company" +msgstr "Empresa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Confirm" +msgstr "Confirmar" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__confirm +msgid "Confirmed" +msgstr "Confirmado" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__standard_price +msgid "Cost" +msgstr "Custo" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_currency_id +msgid "Cost Currency" +msgstr "Moeda Corrente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_method +msgid "Costing Method" +msgstr "Método de Formação de Custo" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Create Order" +msgstr "Criar pedido" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__currency_id +msgid "Currency" +msgstr "Moeda" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Current Booking" +msgstr "Reserva Atual" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__qty_available +msgid "" +"Current quantity of products.\n" +"In a context with a single Stock Location, this includes goods stored at " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"stored in the Stock Location of the Warehouse of this Shop, or any of its " +"children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" +"Quantidade atual de produtos.\n" +"Em um contexto com um único local de estoque, isso inclui mercadorias " +"armazenadas nesse local ou em qualquer um de seus filhos. \n" +"Em um contexto com um único armazém, isso inclui mercadorias armazenadas no " +"local de estoque deste armazém ou em qualquer um de seus filhos. armazenado " +"no Local de Estoque do Armazém desta Loja ou em qualquer um de seus " +"filhos. \n" +"Caso contrário, isso inclui mercadorias armazenadas em qualquer Local de " +"Estoque com o tipo 'interno'." + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_bill +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_reservation_order_bill +msgid "Customer Bill" +msgstr "Conta do cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "Customer Lead Time" +msgstr "Prazo de entrega do cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__customer_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__customer_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Customer Name" +msgstr "Nome do cliente" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Customer Order Bill" +msgstr "Conta do cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__partner_ref +msgid "Customer Ref" +msgstr "Ref. do cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__taxes_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Customer Taxes" +msgstr "Impostos ao cliente" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_date +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Date" +msgstr "Data" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Default taxes used when buying the product." +msgstr "Impostos padrão usados na compra do produto." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__taxes_id +msgid "Default taxes used when selling the product." +msgstr "Impostos padrão usados na venda do produto." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "unidade de medida padrão usada para todas as operações de estoque." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "" +"Default unit of measure used for purchase orders. It must be in the same " +"category as the default unit of measure." +msgstr "" +"Unidade de medida padrão usada para pedidos. Ele deve estar na mesma " +"categoria que a unidade de medida padrão." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Define vendor pricelists." +msgstr "Defina listas de preços de fornecedores." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "" +"Delivery lead time, in days. It's the number of days, promised to the " +"customer, between the confirmation of the sales order and the delivery." +msgstr "" +"Prazo de entrega, em dias. É o número de dias prometidos ao cliente entre a " +"confirmação do pedido de vendas e a entrega." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__route_ids +msgid "" +"Depending on the modules installed, this will allow you to define the route " +"of the product: whether it will be bought, manufactured, replenished on " +"order, etc." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Description" +msgstr "Descrição" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingout +msgid "Description on Delivery Orders" +msgstr "Descrição das ordens de entrega" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_picking +msgid "Description on Picking" +msgstr "Descrição em Coleta" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingin +msgid "Description on Receptions" +msgstr "Descrição em Recebimentos" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Descriptions" +msgstr "Descrições" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__display_name +msgid "Display Name" +msgstr "Nome para Exibição" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__done +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Done" +msgstr "Feito" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_2 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_2_product_product +msgid "Dosa" +msgstr "Dosai" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__draft +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Draft" +msgstr "Rascunho" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_end +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_end +msgid "End Date" +msgstr "Data Final" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "End Date Should be less than the Folio Check-out Date!" +msgstr "Data de término Deve ser menor que a data de check-out do fólio!" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__end_date +msgid "End Time" +msgstr "Data final" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__tracking +msgid "Ensure the traceability of a storable product in your warehouse." +msgstr "Garanta a rastreabilidade de um produto armazenável em seu armazém." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "Expense Account" +msgstr "Conta de Despesas" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "" +"Expenses and vendor bills can be re-invoiced to a customer.With this option, " +"a validated expense can be re-invoice to a customer at its cost or sales " +"price." +msgstr "" +"Despesas e faturas de fornecedores podem ser faturadas novamente para um " +"cliente. Com essa opção, uma despesa validada pode ser faturada novamente " +"para um cliente pelo seu custo ou preço de venda." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__folio_id +msgid "Folio No" +msgstr "Nº do folio" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_rest_order +msgid "Folio Rest Report" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_channel_ids +msgid "Followers (Channels)" +msgstr "Seguidores (Canais)" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidores (Parceiros)" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_form +#: model:ir.ui.menu,name:hotel_restaurant.menu_hotel_food_item +msgid "Food Item" +msgstr "Prato" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__categ_id +msgid "Food Item Category" +msgstr "Categoria de prato" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Name" +msgstr "Nome do prato" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Food Item Rate" +msgstr "Taxa de itens alimentares" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_type_view_form +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard_type +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__menu_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Type" +msgstr "Tipo de item" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_action_hotel_menucard_type_view_form +msgid "Food Item Types" +msgstr "Tipos de itens" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_hotel_menucard_form +msgid "Food Items" +msgstr "Itens" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Manager" +msgstr "Gerente" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Type" +msgstr "Tipo" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "Forecast Quantity" +msgstr "Quantidade Prevista" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "" +"Forecast quantity (computed as Quantity On Hand - Outgoing + Incoming)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" +"Quantidade prevista (calculado como quantidade em mãos - Saída + " +"Recebimento)\n" +"Em um contexto com uma única Localização, isso inclui bens armazenados neste " +"local, ou qualquer um de seus filhos.\n" +"Em um contexto com um único depósito, isso inclui bens armazenados na " +"localização deste Armazém, ou qualquer um de seus filhos.\n" +"Caso contrário, isso inclui bens armazenados em qualquer localização com " +"tipo 'interno'." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__free_qty +msgid "" +"Forecast quantity (computed as Quantity On Hand - reserved quantity)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__free_qty +msgid "Free To Use Quantity " +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate Bill" +msgstr "Gerar conta" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate KOT" +msgstr "Gerar Recibo de cozinha" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Gives the different ways to package the same product." +msgstr "Oferece diferentes maneiras de embalar o mesmo produto." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sequence +msgid "Gives the sequence order when displaying a product list" +msgstr "Fornece a ordem sequencial ao exibir uma lista de produtos" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Group By" +msgstr "Agrupar Por" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_14 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_14_product_product +msgid "Halva" +msgstr "Halva." + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_list +msgid "Hotel Food Items Type" +msgstr "Tipo de itens alimentares do hotel" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Hotel Menucard" +msgstr "Menu do hotel" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Hotel Restaurant" +msgstr "Restaurante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__id +msgid "ID" +msgstr "ID" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_15 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_15_product_product +msgid "Idli-Sambar" +msgstr "Idli-sambar" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread +msgid "If checked, new messages require your attention." +msgstr "Se marcado novas mensagens solicitarão sua atenção." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Se marcado, algumas mensagens tem um erro de entrega." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__active +msgid "" +"If unchecked, it will allow you to hide the product without removing it." +msgstr "Se desmarcado, permitirá que você oculte o produto sem removê-lo." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1920 +msgid "Image" +msgstr "Imagem" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1024 +msgid "Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_128 +msgid "Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_256 +msgid "Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_512 +msgid "Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__standard_price +msgid "" +"In Standard Price & AVCO: value of the product (automatically computed in " +"AVCO).\n" +" In FIFO: value of the next unit that will leave the stock " +"(automatically computed).\n" +" Used to value the product when the purchase cost is not known (e.g. " +"inventory adjustment).\n" +" Used to compute margins on sale orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_kitchen_order_tickets +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order_list +msgid "Includes Hotel Restaurant Order" +msgstr "Inclui ordem de restaurante do hotel" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_reservation +msgid "Includes Hotel Restaurant Reservation" +msgstr "Inclui Reserva de Restaurante no Hotel" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_tables +msgid "Includes Hotel Restaurant Table" +msgstr "Inclui mesa de restaurante do hotel" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "Income Account" +msgstr "Conta de Receita" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "Incoming" +msgstr "Entrada" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Information" +msgstr "Informação" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__default_code +msgid "Internal Reference" +msgstr "Referência Interna" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__barcode +msgid "International Article Number used for product identification." +msgstr "Número Internacional de Artigo, usado para identificação do produto." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "Inventory Location" +msgstr "Local do Inventário" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valuation +msgid "Inventory Valuation" +msgstr "Valorização de Inventário" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "Invoicing Policy" +msgstr "Política de Faturamento" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__iscategid +msgid "Is Categ" +msgstr "É Categ" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_is_follower +msgid "Is Follower" +msgstr "É um seguidor" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__is_product_variant +msgid "Is Product Variant" +msgstr "É Variante de Produto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isroom +msgid "Is Room" +msgstr "É um Quarto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isservice +msgid "Is Service" +msgstr "É Serviço" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__is_folio +msgid "Is a Hotel Guest??" +msgstr "É um hóspede do hotel ??" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_configurable_attributes +msgid "Is a configurable product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__menucard_id +msgid "Item Name" +msgstr "Nome do item" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_tree +msgid "KOT List" +msgstr "Listagem do Ticket de mesa" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "" +"Keep this field empty to use the default value from the product category." +msgstr "" +"Mantenha esse campo vazio para usar o valor padrão da categoria do produto." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "" +"Keep this field empty to use the default value from the product category. If " +"anglo-saxon accounting with automated valuation method is configured, the " +"expense account on the product category will be used." +msgstr "" +"Mantenha esse campo vazio para usar o valor padrão da categoria do produto. " +"Se a contabilidade anglo-saxônica com método de avaliação automatizada " +"estiver configurada, a conta de despesas na categoria de produto será usada." + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_13 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_13_product_product +msgid "Khandvi" +msgstr "Khandvvi" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__kitchen +msgid "Kitchen" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__kitchen +msgid "Kitchen Id" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Kitchen Order Ticket" +msgstr "Ticket de pedido de cozinha" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_kot +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__kot_order_id +msgid "Kitchen Order Tickets" +msgstr "Tickets de pedido de cozinha" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +msgid "Kitchen order list" +msgstr "Lista de pedidos de cozinha" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of customer taxes applied on the perticular Food Item." +msgstr "Lista de impostos de clientes aplicados no item alimentar perticular." + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of supplier taxes applied on the perticular Food Item." +msgstr "" +"Lista de impostos de fornecedores aplicados no item alimentar em particular." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__location_id +msgid "Location" +msgstr "Local" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_main_attachment_id +msgid "Main Attachment" +msgstr "Anexo Principal" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Malai Kofta" +msgstr "Malai kofta" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted " +"automatically.\n" +" Automated: An accounting entry is automatically created to value the " +"inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__service_type +msgid "" +"Manually set quantities on order: Invoice based on the manually entered " +"quantity, without creating an analytic account.\n" +"Timesheets on contract: Invoice based on the tracked hours on the related " +"timesheet.\n" +"Create a task and track hours: Create a task on the sales order validation " +"and track the work hours." +msgstr "" +"Definir quantidades manualmente no pedido: fatura com base na quantidade " +"inserida manualmente, sem criar uma conta analítica.\n" +"Quadros de horários do contrato: fatura com base nas horas rastreadas no " +"quadro de horários relacionado.\n" +"Criar uma tarefa e rastrear horas: Crie uma tarefa na validação do pedido de " +"vendas e acompanhe as horas de trabalho." + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_22 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_22_product_product +msgid "Masala kulcha" +msgstr "Masala Kulcha" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error +msgid "Message Delivery error" +msgstr "Erro na entrega da mensagem" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn_msg +msgid "Message for Sales Order Line" +msgstr "Mensagem para a Linha do Pedido de Vendas" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_ids +msgid "Messages" +msgstr "Mensagens" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__orderpoint_ids +msgid "Minimum Stock Rules" +msgstr "Regras para Estoque Mínimo" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_7 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_7_product_product +msgid "Mutter Paneer" +msgstr "Mutter paneer" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__name +msgid "Name" +msgstr "Nome" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Prazo para a próxima atividade" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_summary +msgid "Next Activity Summary" +msgstr "Resumo da próxima atividade" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_id +msgid "Next Activity Type" +msgstr "Tipo de atividade seguinte" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "No Food Items" +msgstr "Sem itens alimentares" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of Actions" +msgstr "Número de ações" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Número de mensagens que requer uma ação" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Número de mensagens com erro de entrega" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_item_count +msgid "Number of price rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Number of unread messages" +msgstr "Número de mensagens não lidas" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_reservation_order_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order" +msgstr "Ordem" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__order +msgid "Order Created" +msgstr "Ordem criada" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__o_date +msgid "Order Date" +msgstr "Data da Ordem" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_list_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Order List" +msgstr "Lista de pedidos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_number +msgid "Order No" +msgstr "Nº do pedido" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__order_number +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_no +msgid "Order Number" +msgstr "Nº do pedido" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Order Report" +msgstr "Relatório de pedidos" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order Total" +msgstr "Total de pedidos" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "" +"Ordered Quantity: Invoice quantities ordered by the customer.\n" +"Delivered Quantity: Invoice quantities delivered to the customer." +msgstr "" +"Quantidade pedida: quantidades da fatura solicitadas pelo cliente.\n" +"Quantidade entregue: quantidades da fatura entregues ao cliente." + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_reservation_order_form_tree +msgid "Orders" +msgstr "Pedidos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "Outgoing" +msgstr "Enviando" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_6 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_6_product_product +msgid "Paneer Bhurji" +msgstr "Paneer bhurji" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_4 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_4_product_product +msgid "Paneer Butter Masala" +msgstr "Masala Amanteigado" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_10 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_10_product_product +msgid "Paneer Makhani" +msgstr "Paneer makhani" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_0 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_0_product_product +msgid "Paneer Tikaa" +msgstr "Paneer tikaa" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Assign a Table" +msgstr "Designe uma mesa" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Give an Order" +msgstr "Nomeie um pedido" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Select Tables For Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Point of Sale Category" +msgstr "Categoria do ponto de venda" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_20 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_20_product_product +msgid "Pongal" +msgstr "pongal" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price +msgid "Price" +msgstr "Valor" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__list_price +msgid "Price at which the product is sold to customers." +msgstr "Preço pelo qual o produto é vendido aos clientes." + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Price:" +msgstr "Valor:" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "Pricelist" +msgstr "Lista de Preço" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Procurement" +msgstr "Aquisição" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_id +msgid "Product" +msgstr "Produto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__attribute_line_ids +msgid "Product Attributes" +msgstr "Atributos de Produto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_manager_id +msgid "Product Manager" +msgstr "Gerente de Produto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Product Packages" +msgstr "Pacotes de Produtos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_tmpl_id +msgid "Product Template" +msgstr "Modelo de Produto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__type +msgid "Product Type" +msgstr "Tipo de Produto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "Production Location" +msgstr "Local de Produção" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_ids +msgid "Products" +msgstr "Produtos" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__lst_price +msgid "Public Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_purchase +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Purchase Description" +msgstr "Descrição da Compra" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "Purchase Unit of Measure" +msgstr "Unidade de Medida de Compra" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__putaway_rule_ids +msgid "Putaway Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_qty +msgid "Qty" +msgstr "Qtd" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__qty_available +msgid "Quantity On Hand" +msgstr "Quantidade na mão" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "" +"Quantity of planned incoming products.\n" +"In a context with a single Stock Location, this includes goods arriving to " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods arriving to the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods arriving to any Stock Location with " +"'internal' type." +msgstr "" +"Quantidade de produtos planejados recebidos.\n" +"Em um contexto com um único local de estoque, isso inclui mercadorias que " +"chegam a esse local ou a qualquer um de seus filhos.\n" +"Em um contexto com um único armazém, isso inclui mercadorias que chegam ao " +"local de estoque deste armazém ou a qualquer um de seus filhos.\n" +"Caso contrário, isso inclui mercadorias que chegam a qualquer Local de " +"estoque com o tipo 'interno'." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "" +"Quantity of planned outgoing products.\n" +"In a context with a single Stock Location, this includes goods leaving this " +"Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods leaving the Stock " +"Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods leaving any Stock Location with 'internal' " +"type." +msgstr "" +"Quantidade de produtos planejados de saída.\n" +"Em um contexto com um único local de estoque, isso inclui mercadorias saindo " +"deste local ou de qualquer um de seus filhos.\n" +"Em um contexto com um único Armazém, isso inclui mercadorias saindo do Local " +"de Estoque deste Armazém ou de qualquer um de seus filhos.\n" +"Caso contrário, isso inclui mercadorias que saem de qualquer Local de " +"Estoque com o tipo 'interno'." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_qty_configurator +msgid "Quantity visible in configurator" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_rate +msgid "Rate" +msgstr "Taxa" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "Re-Invoice Expenses" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_expense_policy +msgid "Re-Invoice Policy visible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__code +msgid "Reference" +msgstr "Referência" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_max_qty +msgid "Reordering Max Qty" +msgstr "Reordenar quantidade máxima" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_min_qty +msgid "Reordering Min Qty" +msgstr "Reordenar quantidade mínima" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__nbr_reordering_rules +msgid "Reordering Rules" +msgstr "Regras de Reordenação" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Reservation List" +msgstr "Lista de reservas" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__reservation_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__reservation_id +msgid "Reservation No" +msgstr "Nº da reserva" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__reservation_number +msgid "Reservation Number" +msgstr "Nº da reserva" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_reservation_order +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__reservation_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +msgid "Reservation Order" +msgstr "Pedido de reserva" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_reservation_orders_ids +msgid "Reservation Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "Responsible" +msgstr "Responsável" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_user_id +msgid "Responsible User" +msgstr "Usuário Responsável" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__rests_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__rest_item_id +msgid "Rest" +msgstr "Rest." + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.hotel_restaurant_menu +msgid "Restaurant" +msgstr "Restaurante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__restaurant_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Restaurant Order" +msgstr "Pedido" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Order Reservation Details" +msgstr "Detalhes da reserva do pedido" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_restaurant_orders_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Orders" +msgstr "Pedidos" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Orders Details" +msgstr "Detalhes do pedido" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_folio_rest_reservation +#: model:ir.ui.menu,name:hotel_restaurant.folio_rest_reservation_menu +msgid "Restaurant Reports" +msgstr "Relatórios do restaurante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Restaurant Reservation" +msgstr "Reserva" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Reserved Order" +msgstr "Reserva do pedido" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Restaurant kitchen Order" +msgstr "Ticket da cozinha" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Restaurants Orders Details" +msgstr "Detalhes do pedido" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio1 +msgid "Restaurants Reports" +msgstr "Relatórios do restaurante" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Restaurants Reservation Order Details" +msgstr "Detalhes do pedido" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__room_no +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__room_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__room_id +msgid "Room No" +msgstr "Número do quarto" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Room Number" +msgstr "Nº do quarto" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_ids +msgid "Routes" +msgstr "Rotas" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_available_route_ids +msgid "Routes can be selected on this product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Sale Description" +msgstr "Descrição da Venda" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_sale +msgid "Sales Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "Sales Order Line" +msgstr "Linha do Pedido de Vendas" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__list_price +msgid "Sales Price" +msgstr "Preços de Venda" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "" +"Selecting the \"Warning\" option will notify user with the message, " +"Selecting \"Blocking Message\" will throw an exception with the message and " +"block the flow. The Message has to be written in the next field." +msgstr "" +"Selecionando a opção de \"Aviso\" irá notificar o usuário com a mensagem, " +"marcar \"Mensagem de Bloqueio\" irá lançar uma exceção com a mensagem e " +"bloquear o fluxo. A mensagem tem de ser escrita no campo a seguir." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sequence +msgid "Sequence" +msgstr "Seqüência" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Set to Draft" +msgstr "Definir como rascunho" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sales_count +msgid "Sold" +msgstr "Vendido" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on " +"the product.\n" +" Average Cost (AVCO): The products are valued at weighted average " +"cost.\n" +" First In First Out (FIFO): The products are valued supposing those " +"that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_start +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_start +msgid "Start Date" +msgstr "Data de Início" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be greater than the Folio Check-in Date!" +msgstr "Data de início Deve ser maior que a data do check-in do fólio!" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be less than the End Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__start_date +msgid "Start Time" +msgstr "início" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__state +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__state +msgid "State" +msgstr "Estado" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "States" +msgstr "Estados" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status baseado em atividades\n" +"Vencido: a data de vencimento já passou\n" +"Hoje: a data da atividade é hoje\n" +"Planejado: Atividades futuras." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_move_ids +msgid "Stock Move" +msgstr "Movimentação de estoque" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Stock Quant" +msgstr "Quantidade em estoque" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__price_subtotal +msgid "Subtotal" +msgstr "SubTotal" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Supplier Taxes" +msgstr "Impostos sobre fornecedores" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Suppliers" +msgstr "Fornecedores" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_reservation_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_reservation_form_tree +msgid "Table Booking" +msgstr "Reserva de mesa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Table List" +msgstr "Listagem de mesas" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__name +msgid "Table Number" +msgstr "Nº da mesa" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_order_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_order_form_tree +msgid "Table Order" +msgstr "Pedido da mesa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Table Order Total" +msgstr "Total do pedido da mesa" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_tree +msgid "Table Reservation" +msgstr "Reserva da mesa" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_wizard_hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_table_res +#: model:ir.ui.menu,name:hotel_restaurant.wizard_list_menu +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Table Reservation List" +msgstr "Listagem de reserva de mesas" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +msgid "Table reservation detail." +msgstr "Detalhe da reserva da mesa." + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_tables_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_tables_form_tree +msgid "Tables" +msgstr "Mesas" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_tree +msgid "Tables Detail" +msgstr "Detalhes das Mesas" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_1 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_1_product_product +msgid "Tanduri Roti" +msgstr "Tanduri roti" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__tax +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__tax +msgid "Tax (%) " +msgstr "Impostos (%) " + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Technical compute" +msgstr "Cálculo técnico" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "" +"Technical field. Used for searching on pricelists, not stored in database." +msgstr "" +"Campo técnico. Usado para pesquisa em listas de preços, não armazenado no " +"banco de dados." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_move_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Technical: used to compute quantities." +msgstr "Técnico: usado para calcular quantidades." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__lst_price +msgid "" +"The sale price is managed from the product template. Click on the 'Configure " +"Variants' button to set the extra attribute prices." +msgstr "" +"O preço de venda é gerenciado a partir do modelo do produto. Clique no botão " +"'Preços variantes' para definir os preços extras dos atributos." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__price_extra +msgid "This is the sum of the extra price of all attributes" +msgstr "Esta é a soma do valor extra de todos os atributos" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated by manufacturing orders." +msgstr "" +"Este local de estoque será usado, ao invés da padrão, como o local de origem " +"dos movimentos de estoque gerados por ordens de fabricação." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated when you do an inventory." +msgstr "" +"Este local de estoque será usado, ao invés do padrão, como o local de origem " +"dos movimentos de estoque gerados quando você faz um inventário." + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "" +"This user will be responsible of the next activities related to logistic " +"operations for this product." +msgstr "" +"Esse usuário será responsável pelas próximas atividades relacionadas às " +"operações de logística para este produto." + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__to_weight +msgid "To Weigh With Scale" +msgstr "Pesar com balança" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Today's Booking" +msgstr "Agendamentos de hoje" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Today's Orders" +msgstr "Pedidos de hoje" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_total +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_total +msgid "Total" +msgstr "Total" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__service_type +msgid "Track Service" +msgstr "Rastreio de serviço" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__tracking +msgid "Tracking" +msgstr "Rastreamento" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Unit of Measure" +msgstr "Unidade de Medida" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_name +msgid "Unit of Measure Name" +msgstr "Nome da Unidade de Medida" + +#. module: hotel_restaurant +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_0 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_1 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_10 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_12 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_13 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_14 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_15 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_16 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_17 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_18 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_19 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_2 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_20 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_21 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_22 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_4 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_5 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_6 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_7 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_0_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_10_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_12_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_13_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_14_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_15_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_16_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_17_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_18_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_19_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_1_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_20_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_21_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_22_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_2_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_4_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_5_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_6_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_7_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Units" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread +msgid "Unread Messages" +msgstr "Mensagens não lidas" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Unread Messages Counter" +msgstr "Contador de Mensagens Não Lidas" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_16 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_16_product_product +msgid "Upma" +msgstr "upma" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_18 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_18_product_product +msgid "Uttapam" +msgstr "uttapam" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_17 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_17_product_product +msgid "Vada-Sambar" +msgstr "vada-sambar" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Valid Product Attribute Lines" +msgstr "Linhas de atributo do produto válidas" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__value_svl +msgid "Value Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1920 +msgid "Variant Image" +msgstr "Imagem da Variante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1024 +msgid "Variant Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_128 +msgid "Variant Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_256 +msgid "Variant Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_512 +msgid "Variant Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price_extra +msgid "Variant Price Extra" +msgstr "Preço Extra da Variante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__variant_seller_ids +msgid "Variant Seller" +msgstr "Vendedor da Variante" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Vendor Taxes" +msgstr "Impostos do Fornecedor" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Vendors" +msgstr "Fornecedores" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume +msgid "Volume" +msgstr "Volume" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume_uom_name +msgid "Volume unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__waiter_id +msgid "Waiter" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__waitername +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__waiter_name +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Waiter Name" +msgstr "Nome do garçom" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__warehouse_id +msgid "Warehouse" +msgstr "Armazém" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website Messages" +msgstr "Mensagens do Website" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website communication history" +msgstr "Histórico de comunicação do site" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight +msgid "Weight" +msgstr "Peso" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight_uom_name +msgid "Weight unit of measure label" +msgstr "Etiqueta da unidade de medida de peso" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__check +msgid "With Details" +msgstr "Com detalhes" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "" +"You tried to confirm reservation with table those already reserved in this " +"reservation period" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "date" +msgstr "data" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_folio_rest_reservation +msgid "folio.rest.reservation" +msgstr "folio.rest.reserv" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_folio +msgid "hotel folio" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "hotel menucard" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_order__is_folio +msgid "is customer reside in hotel or not" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_hotel_order_kot +msgid "report.hotel_restaurant.report_hotel_order_kot" +msgstr "report.hotel_restaurant.report_hotel_order_kot" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_res_table +msgid "report.hotel_restaurant.report_res_table" +msgstr "report.hotel_restaurant.report_res_table" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_reserv_order +msgid "report.hotel_restaurant.report_reserv_order" +msgstr "report.hotel_restaurant.report_reserv_order" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__state +msgid "state" +msgstr "estado" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "waiter name" +msgstr "Nome do garçom" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_wizard_hotel_restaurant +msgid "wizard.hotel.restaurant" +msgstr "wizard.hotel.restaurant" + +#~ msgid "Can be Rent" +#~ msgstr "Pode ser Alugado" + +#~ msgid "hotel folio new" +#~ msgstr "nova ficha do hotel" + +#~ msgid "report.hotel_restaurant.report_rest_order" +#~ msgstr "report.hotel_restaurant.report_rest_order" + +#~ msgid "" +#~ "Please Select Tables For " +#~ "Reservation" +#~ msgstr "" +#~ "Selecione mesas para Reserva" + +#~ msgid "" +#~ "You tried to confirm reservation " +#~ "with table those already " +#~ "reserved in this reservation " +#~ "period" +#~ msgstr "" +#~ "Você tentou confirmar a reserva " +#~ "com mesa já reservada neste " +#~ "período" + +#~ msgid "Cost Method" +#~ msgstr "Método do custo" + +#~ msgid "" +#~ "Cost used for stock valuation in standard price and as a first price to " +#~ "set in average/fifo. Also used as a base price for pricelists. Expressed " +#~ "in the default unit of measure of the product." +#~ msgstr "" +#~ "Custo usado para avaliação de estoque no preço padrão e como primeiro " +#~ "preço a definir em média/quino. Também usado como preço base para listas " +#~ "de preços. Expressa na unidade de medida padrão do produto." + +#~ msgid "" +#~ "Depending on the modules installed, this will allow you to define the " +#~ "route of the product: whether it will be bought, manufactured, MTO, etc." +#~ msgstr "" +#~ "Dependendo dos módulos instalados, isso permitirá definir a rota do " +#~ "produto: se ele será comprado, fabricado, MTO etc." + +#~ msgid "Hide Expense Policy" +#~ msgstr "Ocultar política de despesas" + +#~ msgid "If checked new messages require your attention." +#~ msgstr "Se marcado, novas mensagens solicitarão sua atenção." + +#~ msgid "" +#~ "Image of the product variant (Medium-sized image of product template if " +#~ "false)." +#~ msgstr "" +#~ "Imagem da variante do produto (Imagem media do modelo de produto se for " +#~ "falso)." + +#~ msgid "" +#~ "Image of the product variant (Small-sized image of product template if " +#~ "false)." +#~ msgstr "" +#~ "Imagem da variante do produto (Imagem pequena do modelo de produto se for " +#~ "falso)." + +#~ msgid "Kitchen id" +#~ msgstr "ID da cozinha" + +#~ msgid "" +#~ "Manual: The accounting entries to value the inventory are not posted " +#~ "automatically.\n" +#~ " Automated: An accounting entry is automatically created to value " +#~ "the inventory when a product enters or leaves the company." +#~ msgstr "" +#~ "Manual: os lançamentos contábeis para avaliar o estoque não são lançados " +#~ "automaticamente.\n" +#~ " Automatizado: uma entrada contábil é criada automaticamente para " +#~ "avaliar o estoque quando um produto entra ou sai da empresa." + +#~ msgid "Medium-sized image" +#~ msgstr "Imagem de tamanho Médio" + +#~ msgid "Number of error" +#~ msgstr "Número de erro" + +#~ msgid "Optional Products" +#~ msgstr "Produtos Opcionais" + +#~ msgid "" +#~ "Optional Products are suggested whenever the customer hits *Add to Cart* " +#~ "(cross-sell strategy, e.g. for computers: warranty, software, etc.)." +#~ msgstr "" +#~ "Os produtos opcionais são sugeridos sempre que o cliente clicar em * " +#~ "Adicionar ao carrinho * (estratégia de venda cruzada, por exemplo, para " +#~ "computadores: garantia, software etc.)." + +#~ msgid "Pricelist Item" +#~ msgstr "Item da lista de preço" + +#~ msgid "Pricelist Items" +#~ msgstr "Itens da lista de preço" + +#~ msgid "Quantity" +#~ msgstr "Quantidade" + +#~ msgid "Re-Invoice Policy" +#~ msgstr "Política de Refaturamento" + +#~ msgid "Sale Price" +#~ msgstr "Preço de Venda" + +#~ msgid "Small-sized image" +#~ msgstr "Imagem pequena" + +#~ msgid "" +#~ "Standard Price: The products are valued at their standard cost defined on " +#~ "the product.\n" +#~ " Average Cost (AVCO): The products are valued at weighted average " +#~ "cost.\n" +#~ " First In First Out (FIFO): The products are valued supposing " +#~ "those that enter the company first will also leave it first." +#~ msgstr "" +#~ "Preço padrão: os produtos são avaliados pelo custo padrão definido no " +#~ "produto.\n" +#~ " Custo médio (AVCO): os produtos são avaliados pelo custo médio " +#~ "ponderado.\n" +#~ " Primeiro a entrar, primeiro a sair (FIFO): Os produtos são " +#~ "avaliados supondo que aqueles que entram primeiro na empresa também o " +#~ "deixem em primeiro lugar." + +#~ msgid "Start Date Should be less than the End Date!" +#~ msgstr "Data de início deve ser menor que a data final!" + +#~ msgid "Stock Fifo Manual Move" +#~ msgstr "Movimento manual do estoque Fifo" + +#~ msgid "Stock Fifo Real Time Aml" +#~ msgstr "Estoque Fifo em tempo real Aml" + +#~ msgid "Stock Input Account" +#~ msgstr "Conta de Entrada de Estoque" + +#~ msgid "Stock Output Account" +#~ msgstr "Conta de Saída do Estoque" + +#~ msgid "Stock Value Currency" +#~ msgstr "Moeda da valorização do estoque" + +#~ msgid "Table reservation detail. " +#~ msgstr "Detalhe da reserva da mesa. " + +#~ msgid "Template Attribute Values" +#~ msgstr "Valores de atributo do modelo" + +#~ msgid "The volume in m3." +#~ msgstr "Volume em m3." + +#~ msgid "" +#~ "This field holds the image used as image for the product variant, limited " +#~ "to 1024x1024px." +#~ msgstr "" +#~ "Este campo contém a imagem usada para a variação do produto, limitada a " +#~ "1024x1024px." + +#~ msgid "" +#~ "This field holds the image used as image for the product, limited to " +#~ "1024x1024px." +#~ msgstr "" +#~ "Este campo contém a imagem usada para o produto, limitada a 1024x1024px." + +#~ msgid "Unit(s)" +#~ msgstr "Unidade(s)" + +#~ msgid "Valid Archived Variants" +#~ msgstr "Variantes Válidas Arquivadas" + +#~ msgid "Valid Existing Variants" +#~ msgstr "Variantes Válida Existente" + +#~ msgid "Valid Product Attribute Lines Without No Variant Attributes" +#~ msgstr "Linhas de atributo de produto válidas sem atributos de variante" + +#~ msgid "Valid Product Attribute Values" +#~ msgstr "Valores de atributo do produto válidas" + +#~ msgid "Valid Product Attribute Values Without No Variant Attributes" +#~ msgstr "Valores válidos de atributos do produto sem atributos variantes" + +#~ msgid "Valid Product Attributes" +#~ msgstr "Atributos de Produto Válido" + +#~ msgid "Valid Product Attributes Without No Variant Attributes" +#~ msgstr "Atributos de produto válidos sem atributos de variante" + +#~ msgid "Valuation" +#~ msgstr "Valorização" + +#~ msgid "Value" +#~ msgstr "Valor" + +#~ msgid "Weight Unit of Measure" +#~ msgstr "Unidade de medida de peso" + +#~ msgid "" +#~ "Weight of the product, packaging not included. The unit of measure can be " +#~ "changed in the general settings" +#~ msgstr "" +#~ "Peso do produto, embalagem não incluída. A unidade de medida pode ser " +#~ "alterada nas configurações gerais" + +#~ msgid "" +#~ "When doing real-time inventory valuation, counterpart journal items for " +#~ "all incoming stock moves will be posted in this account, unless there is " +#~ "a specific valuation account set on the source location. When not set on " +#~ "the product, the one from the product category is used." +#~ msgstr "" +#~ "Ao fazer avaliação de estoque em tempo real, itens de diário de " +#~ "contrapartida para toda movimento recebidas serão publicadas nesta conta, " +#~ "a menos que há um conta de avaliação específica no local de origem. " +#~ "Quando não definido no produto, o da categoria de produto é usado." + +#~ msgid "" +#~ "When doing real-time inventory valuation, counterpart journal items for " +#~ "all outgoing stock moves will be posted in this account, unless there is " +#~ "a specific valuation account set on the destination location. When not " +#~ "set on the product, the one from the product category is used." +#~ msgstr "" +#~ "Ao fazer avaliação de estoque em tempo real, itens de diário da " +#~ "contrapartida para todos os movimentos de saída será lançado nesta conta, " +#~ "a menos que há uma conta específica de valorização sobre o local de " +#~ "destino. Quando não definido no produto, o da categoria de produto é " +#~ "usado." + +#~ msgid "is customer residein hotel or not" +#~ msgstr "o cliente reside no hotel ou não" + +#~ msgid "kg" +#~ msgstr "Kg" + +#~ msgid "Customer Name : " +#~ msgstr " Nome do cliente: " diff --git a/hotel_restaurant/i18n/sv.po b/hotel_restaurant/i18n/sv.po new file mode 100644 index 000000000..afd0ca945 --- /dev/null +++ b/hotel_restaurant/i18n/sv.po @@ -0,0 +1,2303 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * hotel_restaurant +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.14\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-26 07:34:45+0000\n" +"PO-Revision-Date: 2010-11-23 01:32+0000\n" +"Last-Translator: Olivier Dony (OpenERP) \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-05-03 05:36+0000\n" +"X-Generator: Launchpad (build 15185)\n" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_count +msgid "# Product Variants" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Food Item List" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order List" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckIN" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckOut" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Date :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio Number :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Folio Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "From:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Net Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Number." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Reservation No" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Room No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Served By" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Sub Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "SubTotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Table Information" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Tax:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "To:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__description_sale +msgid "" +"A description of the Product that you want to communicate to your customers. " +"This description will be copied to every Sales Order, Delivery Order and " +"Customer Invoice/Credit Note" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__type +msgid "" +"A storable product is a product for which you manage stock. The Inventory " +"app has to be installed.\n" +"A consumable product is a product for which stock is not managed.\n" +"A service is a non-material product you provide." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__active +msgid "Active" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_ids +msgid "Activities" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_state +msgid "Activity State" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__partner_address_id +msgid "Address" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_19 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_19_product_product +msgid "Appam" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_template_attribute_value_ids +msgid "Attribute Values" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Available in POS" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_12 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_12_product_product +msgid "Bahji Pav" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__barcode +msgid "Barcode" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_1024_be_zoomed +msgid "Can Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_variant_1024_be_zoomed +msgid "Can Variant Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__purchase_ok +msgid "Can be Purchased" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_ok +msgid "Can be Sold" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Cancel" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__cancel +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__capacity +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Capacity" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_from_categ_ids +msgid "Category Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Category used in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Category:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +msgid "Categoty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__to_weight +msgid "" +"Check if the product should be weighted using the hardware scale integration." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Check if you want this product to appear in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_5 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_5_product_product +msgid "Cheese Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__child_ids +msgid "Child Categories" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_21 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_21_product_product +msgid "Chole-Bhature" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "Click to Add Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__color +msgid "Color Index" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__combination_indices +msgid "Combination Indices" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__company_id +msgid "Company" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Confirm" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__confirm +msgid "Confirmed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__standard_price +msgid "Cost" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_currency_id +msgid "Cost Currency" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_method +msgid "Costing Method" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Create Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_uid +msgid "Created by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_date +msgid "Created on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__currency_id +msgid "Currency" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Current Booking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__qty_available +msgid "" +"Current quantity of products.\n" +"In a context with a single Stock Location, this includes goods stored at " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"stored in the Stock Location of the Warehouse of this Shop, or any of its " +"children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_bill +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_reservation_order_bill +msgid "Customer Bill" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "Customer Lead Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__customer_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__customer_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Customer Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Customer Order Bill" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__partner_ref +msgid "Customer Ref" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__taxes_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Customer Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_date +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Default taxes used when buying the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__taxes_id +msgid "Default taxes used when selling the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "" +"Default unit of measure used for purchase orders. It must be in the same " +"category as the default unit of measure." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Define vendor pricelists." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "" +"Delivery lead time, in days. It's the number of days, promised to the " +"customer, between the confirmation of the sales order and the delivery." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__route_ids +msgid "" +"Depending on the modules installed, this will allow you to define the route " +"of the product: whether it will be bought, manufactured, replenished on " +"order, etc." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingout +msgid "Description on Delivery Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_picking +msgid "Description on Picking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingin +msgid "Description on Receptions" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Descriptions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__display_name +msgid "Display Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__done +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Done" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_2 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_2_product_product +msgid "Dosa" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__draft +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Draft" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_end +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_end +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "End Date Should be less than the Folio Check-out Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__end_date +msgid "End Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__tracking +msgid "Ensure the traceability of a storable product in your warehouse." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "Expense Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "" +"Expenses and vendor bills can be re-invoiced to a customer.With this option, " +"a validated expense can be re-invoice to a customer at its cost or sales " +"price." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__folio_id +msgid "Folio No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_rest_order +msgid "Folio Rest Report" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_form +#: model:ir.ui.menu,name:hotel_restaurant.menu_hotel_food_item +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__categ_id +msgid "Food Item Category" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Food Item Rate" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_type_view_form +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard_type +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__menu_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_action_hotel_menucard_type_view_form +msgid "Food Item Types" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_hotel_menucard_form +msgid "Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Manager" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "Forecast Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "" +"Forecast quantity (computed as Quantity On Hand - Outgoing + Incoming)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__free_qty +msgid "" +"Forecast quantity (computed as Quantity On Hand - reserved quantity)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__free_qty +msgid "Free To Use Quantity " +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate Bill" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate KOT" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Gives the different ways to package the same product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sequence +msgid "Gives the sequence order when displaying a product list" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Group By" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_14 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_14_product_product +msgid "Halva" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_list +msgid "Hotel Food Items Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Hotel Menucard" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Hotel Restaurant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__id +msgid "ID" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_15 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_15_product_product +msgid "Idli-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__active +msgid "" +"If unchecked, it will allow you to hide the product without removing it." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1920 +msgid "Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1024 +msgid "Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_128 +msgid "Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_256 +msgid "Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_512 +msgid "Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__standard_price +msgid "" +"In Standard Price & AVCO: value of the product (automatically computed in " +"AVCO).\n" +" In FIFO: value of the next unit that will leave the stock " +"(automatically computed).\n" +" Used to value the product when the purchase cost is not known (e.g. " +"inventory adjustment).\n" +" Used to compute margins on sale orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_kitchen_order_tickets +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order_list +msgid "Includes Hotel Restaurant Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_reservation +msgid "Includes Hotel Restaurant Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_tables +msgid "Includes Hotel Restaurant Table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "Income Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "Incoming" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Information" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__default_code +msgid "Internal Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__barcode +msgid "International Article Number used for product identification." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "Inventory Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valuation +msgid "Inventory Valuation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "Invoicing Policy" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__iscategid +msgid "Is Categ" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__is_product_variant +msgid "Is Product Variant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isroom +msgid "Is Room" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isservice +msgid "Is Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__is_folio +msgid "Is a Hotel Guest??" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_configurable_attributes +msgid "Is a configurable product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__menucard_id +msgid "Item Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_tree +msgid "KOT List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "" +"Keep this field empty to use the default value from the product category." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "" +"Keep this field empty to use the default value from the product category. If " +"anglo-saxon accounting with automated valuation method is configured, the " +"expense account on the product category will be used." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_13 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_13_product_product +msgid "Khandvi" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__kitchen +msgid "Kitchen" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__kitchen +msgid "Kitchen Id" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Kitchen Order Ticket" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_kot +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__kot_order_id +msgid "Kitchen Order Tickets" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +msgid "Kitchen order list" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant____last_update +msgid "Last Modified on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_date +msgid "Last Updated on" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of customer taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of supplier taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__location_id +msgid "Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Malai Kofta" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted " +"automatically.\n" +" Automated: An accounting entry is automatically created to value the " +"inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__service_type +msgid "" +"Manually set quantities on order: Invoice based on the manually entered " +"quantity, without creating an analytic account.\n" +"Timesheets on contract: Invoice based on the tracked hours on the related " +"timesheet.\n" +"Create a task and track hours: Create a task on the sales order validation " +"and track the work hours." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_22 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_22_product_product +msgid "Masala kulcha" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn_msg +msgid "Message for Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_ids +msgid "Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__orderpoint_ids +msgid "Minimum Stock Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_7 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_7_product_product +msgid "Mutter Paneer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__name +msgid "Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "No Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_item_count +msgid "Number of price rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_reservation_order_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__order +msgid "Order Created" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__o_date +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_list_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Order List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_number +msgid "Order No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__order_number +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_no +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Order Report" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order Total" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "" +"Ordered Quantity: Invoice quantities ordered by the customer.\n" +"Delivered Quantity: Invoice quantities delivered to the customer." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_reservation_order_form_tree +msgid "Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "Outgoing" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_6 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_6_product_product +msgid "Paneer Bhurji" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_4 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_4_product_product +msgid "Paneer Butter Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_10 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_10_product_product +msgid "Paneer Makhani" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_0 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_0_product_product +msgid "Paneer Tikaa" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Assign a Table" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Give an Order" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Select Tables For Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Point of Sale Category" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_20 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_20_product_product +msgid "Pongal" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price +msgid "Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__list_price +msgid "Price at which the product is sold to customers." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Price:" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "Pricelist" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Procurement" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_id +msgid "Product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__attribute_line_ids +msgid "Product Attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_manager_id +msgid "Product Manager" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Product Packages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__type +msgid "Product Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "Production Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_ids +msgid "Products" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__lst_price +msgid "Public Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_purchase +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Purchase Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "Purchase Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__putaway_rule_ids +msgid "Putaway Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_qty +msgid "Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__qty_available +msgid "Quantity On Hand" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "" +"Quantity of planned incoming products.\n" +"In a context with a single Stock Location, this includes goods arriving to " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods arriving to the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods arriving to any Stock Location with " +"'internal' type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "" +"Quantity of planned outgoing products.\n" +"In a context with a single Stock Location, this includes goods leaving this " +"Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods leaving the Stock " +"Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods leaving any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_qty_configurator +msgid "Quantity visible in configurator" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_rate +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "Re-Invoice Expenses" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_expense_policy +msgid "Re-Invoice Policy visible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__code +msgid "Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_max_qty +msgid "Reordering Max Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_min_qty +msgid "Reordering Min Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__nbr_reordering_rules +msgid "Reordering Rules" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Reservation List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__reservation_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__reservation_id +msgid "Reservation No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__reservation_number +msgid "Reservation Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_reservation_order +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__reservation_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +msgid "Reservation Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_reservation_orders_ids +msgid "Reservation Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "Responsible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__rests_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__rest_item_id +msgid "Rest" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.hotel_restaurant_menu +msgid "Restaurant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__restaurant_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Restaurant Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Order Reservation Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_restaurant_orders_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_folio_rest_reservation +#: model:ir.ui.menu,name:hotel_restaurant.folio_rest_reservation_menu +msgid "Restaurant Reports" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Restaurant Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Reserved Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Restaurant kitchen Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Restaurants Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio1 +msgid "Restaurants Reports" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Restaurants Reservation Order Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__room_no +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__room_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__room_id +msgid "Room No" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_ids +msgid "Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_available_route_ids +msgid "Routes can be selected on this product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Sale Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_sale +msgid "Sales Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__list_price +msgid "Sales Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "" +"Selecting the \"Warning\" option will notify user with the message, " +"Selecting \"Blocking Message\" will throw an exception with the message and " +"block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sequence +msgid "Sequence" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Set to Draft" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sales_count +msgid "Sold" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on " +"the product.\n" +" Average Cost (AVCO): The products are valued at weighted average " +"cost.\n" +" First In First Out (FIFO): The products are valued supposing those " +"that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_start +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_start +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be greater than the Folio Check-in Date!" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be less than the End Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__start_date +msgid "Start Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__state +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__state +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "States" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_move_ids +msgid "Stock Move" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Stock Quant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__price_subtotal +msgid "Subtotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Supplier Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Suppliers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_reservation_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_reservation_form_tree +msgid "Table Booking" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Table List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__name +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_order_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_order_form_tree +msgid "Table Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Table Order Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_tree +msgid "Table Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_wizard_hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_table_res +#: model:ir.ui.menu,name:hotel_restaurant.wizard_list_menu +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Table Reservation List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +msgid "Table reservation detail." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_tables_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_tables_form_tree +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_tree +msgid "Tables Detail" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_1 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_1_product_product +msgid "Tanduri Roti" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__tax +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__tax +msgid "Tax (%) " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Technical compute" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "" +"Technical field. Used for searching on pricelists, not stored in database." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_move_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Technical: used to compute quantities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__lst_price +msgid "" +"The sale price is managed from the product template. Click on the 'Configure " +"Variants' button to set the extra attribute prices." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__price_extra +msgid "This is the sum of the extra price of all attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated by manufacturing orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated when you do an inventory." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "" +"This user will be responsible of the next activities related to logistic " +"operations for this product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__to_weight +msgid "To Weigh With Scale" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Today's Booking" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Today's Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_total +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_total +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__service_type +msgid "Track Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__tracking +msgid "Tracking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_name +msgid "Unit of Measure Name" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_0 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_1 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_10 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_12 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_13 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_14 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_15 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_16 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_17 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_18 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_19 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_2 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_20 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_21 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_22 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_4 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_5 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_6 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_7 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_0_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_10_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_12_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_13_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_14_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_15_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_16_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_17_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_18_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_19_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_1_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_20_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_21_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_22_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_2_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_4_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_5_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_6_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_7_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Units" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_16 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_16_product_product +msgid "Upma" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_18 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_18_product_product +msgid "Uttapam" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_17 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_17_product_product +msgid "Vada-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Valid Product Attribute Lines" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__value_svl +msgid "Value Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1920 +msgid "Variant Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1024 +msgid "Variant Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_128 +msgid "Variant Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_256 +msgid "Variant Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_512 +msgid "Variant Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price_extra +msgid "Variant Price Extra" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__variant_seller_ids +msgid "Variant Seller" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Vendor Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Vendors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume +msgid "Volume" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume_uom_name +msgid "Volume unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__waiter_id +msgid "Waiter" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__waitername +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__waiter_name +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__warehouse_id +msgid "Warehouse" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight +msgid "Weight" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight_uom_name +msgid "Weight unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__check +msgid "With Details" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "" +"You tried to confirm reservation with table those already reserved in this " +"reservation period" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_folio_rest_reservation +msgid "folio.rest.reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_folio +msgid "hotel folio" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "hotel menucard" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_order__is_folio +msgid "is customer reside in hotel or not" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_hotel_order_kot +msgid "report.hotel_restaurant.report_hotel_order_kot" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_res_table +msgid "report.hotel_restaurant.report_res_table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_reserv_order +msgid "report.hotel_restaurant.report_reserv_order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__state +msgid "state" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "waiter name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_wizard_hotel_restaurant +msgid "wizard.hotel.restaurant" +msgstr "" + +#~ msgid "Hotel Restaurant Management" +#~ msgstr "Hotel Restaurant Management" diff --git a/hotel_restaurant/i18n/zh_CN.po b/hotel_restaurant/i18n/zh_CN.po new file mode 100644 index 000000000..ffe24b644 --- /dev/null +++ b/hotel_restaurant/i18n/zh_CN.po @@ -0,0 +1,2297 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hotel_restaurant +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_count +msgid "# Product Variants" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Food Item List" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order List" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckIN" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "CheckOut" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Customer Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Date :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Folio Number :" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Folio Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "From:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Net Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Order Number." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Reservation No" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Room No." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Served By" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Sub Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "SubTotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Table Information" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Tax:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "To:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Total:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__description_sale +msgid "" +"A description of the Product that you want to communicate to your customers. " +"This description will be copied to every Sales Order, Delivery Order and " +"Customer Invoice/Credit Note" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__type +msgid "" +"A storable product is a product for which you manage stock. The Inventory " +"app has to be installed.\n" +"A consumable product is a product for which stock is not managed.\n" +"A service is a non-material product you provide." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__active +msgid "Active" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_ids +msgid "Activities" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_state +msgid "Activity State" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__partner_address_id +msgid "Address" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_19 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_19_product_product +msgid "Appam" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_template_attribute_value_ids +msgid "Attribute Values" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Available in POS" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_12 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_12_product_product +msgid "Bahji Pav" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__barcode +msgid "Barcode" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_1024_be_zoomed +msgid "Can Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__can_image_variant_1024_be_zoomed +msgid "Can Variant Image 1024 be zoomed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__purchase_ok +msgid "Can be Purchased" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_ok +msgid "Can be Sold" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Cancel" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__cancel +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__capacity +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Capacity" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_from_categ_ids +msgid "Category Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Category used in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Category:" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +msgid "Categoty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__to_weight +msgid "" +"Check if the product should be weighted using the hardware scale integration." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__available_in_pos +msgid "Check if you want this product to appear in the Point of Sale." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_5 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_5_product_product +msgid "Cheese Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__child_ids +msgid "Child Categories" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_21 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_21_product_product +msgid "Chole-Bhature" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "Click to Add Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__color +msgid "Color Index" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__combination_indices +msgid "Combination Indices" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__company_id +msgid "Company" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Confirm" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__confirm +msgid "Confirmed" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__standard_price +msgid "Cost" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_currency_id +msgid "Cost Currency" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__cost_method +msgid "Costing Method" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Create Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_uid +msgid "Created by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__create_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__create_date +msgid "Created on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__currency_id +msgid "Currency" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Current Booking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__qty_available +msgid "" +"Current quantity of products.\n" +"In a context with a single Stock Location, this includes goods stored at " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"stored in the Stock Location of the Warehouse of this Shop, or any of its " +"children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_bill +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_reservation_order_bill +msgid "Customer Bill" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "Customer Lead Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__customer_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__customer_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Customer Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_order_bill +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_order_bill +msgid "Customer Order Bill" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__partner_ref +msgid "Customer Ref" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__taxes_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Customer Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_date +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Default taxes used when buying the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__taxes_id +msgid "Default taxes used when selling the product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "" +"Default unit of measure used for purchase orders. It must be in the same " +"category as the default unit of measure." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Define vendor pricelists." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_delay +msgid "" +"Delivery lead time, in days. It's the number of days, promised to the " +"customer, between the confirmation of the sales order and the delivery." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__route_ids +msgid "" +"Depending on the modules installed, this will allow you to define the route " +"of the product: whether it will be bought, manufactured, replenished on " +"order, etc." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingout +msgid "Description on Delivery Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_picking +msgid "Description on Picking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_pickingin +msgid "Description on Receptions" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Descriptions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__display_name +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__display_name +msgid "Display Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__done +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__done +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Done" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_2 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_2_product_product +msgid "Dosa" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__draft +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__draft +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Draft" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_end +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_end +msgid "End Date" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "End Date Should be less than the Folio Check-out Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__end_date +msgid "End Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__tracking +msgid "Ensure the traceability of a storable product in your warehouse." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "Expense Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "" +"Expenses and vendor bills can be re-invoiced to a customer.With this option, " +"a validated expense can be re-invoice to a customer at its cost or sales " +"price." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__folio_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__folio_id +msgid "Folio No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_rest_order +msgid "Folio Rest Report" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_form +#: model:ir.ui.menu,name:hotel_restaurant.menu_hotel_food_item +msgid "Food Item" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__categ_id +msgid "Food Item Category" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Food Item Rate" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_hotel_menucard_type_view_form +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard_type +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__menu_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +msgid "Food Item Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_action_hotel_menucard_type_view_form +msgid "Food Item Types" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_hotel_menucard_form +msgid "Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Manager" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Food Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "Forecast Quantity" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__virtual_available +msgid "" +"Forecast quantity (computed as Quantity On Hand - Outgoing + Incoming)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__free_qty +msgid "" +"Forecast quantity (computed as Quantity On Hand - reserved quantity)\n" +"In a context with a single Stock Location, this includes goods stored in " +"this location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods stored in the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods stored in any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__free_qty +msgid "Free To Use Quantity " +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate Bill" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Generate KOT" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Gives the different ways to package the same product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sequence +msgid "Gives the sequence order when displaying a product list" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +msgid "Group By" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_14 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_14_product_product +msgid "Halva" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_type_list +msgid "Hotel Food Items Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_menucard +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_search_new +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_tree +msgid "Hotel Menucard" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Hotel Restaurant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order__id +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__id +msgid "ID" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_15 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_15_product_product +msgid "Idli-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__active +msgid "" +"If unchecked, it will allow you to hide the product without removing it." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1920 +msgid "Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_1024 +msgid "Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_128 +msgid "Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_256 +msgid "Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_512 +msgid "Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__standard_price +msgid "" +"In Standard Price & AVCO: value of the product (automatically computed in " +"AVCO).\n" +" In FIFO: value of the next unit that will leave the stock " +"(automatically computed).\n" +" Used to value the product when the purchase cost is not known (e.g. " +"inventory adjustment).\n" +" Used to compute margins on sale orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_kitchen_order_tickets +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_order_list +msgid "Includes Hotel Restaurant Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_reservation +msgid "Includes Hotel Restaurant Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_restaurant_tables +msgid "Includes Hotel Restaurant Table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "Income Account" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "Incoming" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Information" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__default_code +msgid "Internal Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__barcode +msgid "International Article Number used for product identification." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "Inventory Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valuation +msgid "Inventory Valuation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "Invoicing Policy" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__iscategid +msgid "Is Categ" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__is_product_variant +msgid "Is Product Variant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isroom +msgid "Is Room" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__isservice +msgid "Is Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__is_folio +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__is_folio +msgid "Is a Hotel Guest??" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_configurable_attributes +msgid "Is a configurable product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__menucard_id +msgid "Item Name" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_tree +msgid "KOT List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_income_id +msgid "" +"Keep this field empty to use the default value from the product category." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_account_expense_id +msgid "" +"Keep this field empty to use the default value from the product category. If " +"anglo-saxon accounting with automated valuation method is configured, the " +"expense account on the product category will be used." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_13 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_13_product_product +msgid "Khandvi" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__kitchen +msgid "Kitchen" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__kitchen +msgid "Kitchen Id" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_hotel_order_kot +msgid "Kitchen Order Ticket" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_kitchen_order_tickets_form_tree +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_order_kot +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__kot_order_id +msgid "Kitchen Order Tickets" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +msgid "Kitchen order list" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_hotel_order_kot____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_res_table____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_reserv_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_report_hotel_restaurant_report_rest_order____last_update +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant____last_update +msgid "Last Modified on" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_uid +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__write_date +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__write_date +msgid "Last Updated on" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of customer taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "List of supplier taxes applied on the perticular Food Item." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__location_id +msgid "Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Malai Kofta" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted " +"automatically.\n" +" Automated: An accounting entry is automatically created to value the " +"inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__service_type +msgid "" +"Manually set quantities on order: Invoice based on the manually entered " +"quantity, without creating an analytic account.\n" +"Timesheets on contract: Invoice based on the tracked hours on the related " +"timesheet.\n" +"Create a task and track hours: Create a task on the sales order validation " +"and track the work hours." +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_22 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_22_product_product +msgid "Masala kulcha" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn_msg +msgid "Message for Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_ids +msgid "Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__orderpoint_ids +msgid "Minimum Stock Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_7 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_7_product_product +msgid "Mutter Paneer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__name +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard_type__name +msgid "Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.actions.act_window,help:hotel_restaurant.action_hotel_menucard_form +msgid "No Food Items" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_item_count +msgid "Number of price rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_reservation_order_form_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_reservation_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_order__state__order +#: model:ir.model.fields.selection,name:hotel_restaurant.selection__hotel_restaurant_reservation__state__order +msgid "Order Created" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__o_date +msgid "Order Date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__kot_list_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_list_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +msgid "Order List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__order_number +msgid "Order No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__order_number +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__order_no +msgid "Order Number" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Order Report" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Order Total" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__invoice_policy +msgid "" +"Ordered Quantity: Invoice quantities ordered by the customer.\n" +"Delivered Quantity: Invoice quantities delivered to the customer." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_reservation_order_form_tree +msgid "Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "Outgoing" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_6 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_6_product_product +msgid "Paneer Bhurji" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_4 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_4_product_product +msgid "Paneer Butter Masala" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_10 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_10_product_product +msgid "Paneer Makhani" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_0 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_0_product_product +msgid "Paneer Tikaa" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Assign a Table" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Give an Order" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Please Select Tables For Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pos_categ_id +msgid "Point of Sale Category" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_20 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_20_product_product +msgid "Pongal" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price +msgid "Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__list_price +msgid "Price at which the product is sold to customers." +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "Price:" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "Pricelist" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Procurement" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_id +msgid "Product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__attribute_line_ids +msgid "Product Attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_manager_id +msgid "Product Manager" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__packaging_ids +msgid "Product Packages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__type +msgid "Product Type" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "Production Location" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__product_variant_ids +msgid "Products" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__lst_price +msgid "Public Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_purchase +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Purchase Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_po_id +msgid "Purchase Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__putaway_rule_ids +msgid "Putaway Rules" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_qty +msgid "Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__qty_available +msgid "Quantity On Hand" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__incoming_qty +msgid "" +"Quantity of planned incoming products.\n" +"In a context with a single Stock Location, this includes goods arriving to " +"this Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods arriving to the " +"Stock Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods arriving to any Stock Location with " +"'internal' type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__outgoing_qty +msgid "" +"Quantity of planned outgoing products.\n" +"In a context with a single Stock Location, this includes goods leaving this " +"Location, or any of its children.\n" +"In a context with a single Warehouse, this includes goods leaving the Stock " +"Location of this Warehouse, or any of its children.\n" +"Otherwise, this includes goods leaving any Stock Location with 'internal' " +"type." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_qty_configurator +msgid "Quantity visible in configurator" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__item_rate +msgid "Rate" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__expense_policy +msgid "Re-Invoice Expenses" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__visible_expense_policy +msgid "Re-Invoice Policy visible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__code +msgid "Reference" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_max_qty +msgid "Reordering Max Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__reordering_min_qty +msgid "Reordering Min Qty" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__nbr_reordering_rules +msgid "Reordering Rules" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Reservation List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__reservation_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__reservation_id +msgid "Reservation No" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__reservation_number +msgid "Reservation Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_reservation_order +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__reservation_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +msgid "Reservation Order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_reservation_orders_ids +msgid "Reservation Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "Responsible" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__rests_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__rest_item_id +msgid "Rest" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.ui.menu,name:hotel_restaurant.hotel_restaurant_menu +msgid "Restaurant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__restaurant_order_id +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Restaurant Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Order Reservation Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_folio__hotel_restaurant_orders_ids +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Orders" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Restaurant Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_folio_rest_reservation +#: model:ir.ui.menu,name:hotel_restaurant.folio_rest_reservation_menu +msgid "Restaurant Reports" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Restaurant Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_folio_rest_reservation +msgid "Restaurant Reserved Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Restaurant kitchen Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_reserv_order +msgid "Restaurants Orders Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_res_folio1 +msgid "Restaurants Reports" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_rest_order +msgid "Restaurants Reservation Order Details" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__room_no +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__room_id +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__room_id +msgid "Room No" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Room Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__route_ids +msgid "Routes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__has_available_route_ids +msgid "Routes can be selected on this product" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Sale Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__description_sale +msgid "Sales Description" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "Sales Order Line" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__list_price +msgid "Sales Price" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__sale_line_warn +msgid "" +"Selecting the \"Warning\" option will notify user with the message, " +"Selecting \"Blocking Message\" will throw an exception with the message and " +"block the flow. The Message has to be written in the next field." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sequence +msgid "Sequence" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Set to Draft" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__sales_count +msgid "Sold" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on " +"the product.\n" +" Average Cost (AVCO): The products are valued at weighted average " +"cost.\n" +" First In First Out (FIFO): The products are valued supposing those " +"that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__date_start +#: model:ir.model.fields,field_description:hotel_restaurant.field_wizard_hotel_restaurant__date_start +msgid "Start Date" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be greater than the Folio Check-in Date!" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "Start Date Should be less than the End Date!" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__start_date +msgid "Start Time" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__state +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__state +msgid "State" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "States" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_move_ids +msgid "Stock Move" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Stock Quant" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_subtotal +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order_list__price_subtotal +msgid "Subtotal" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Supplier Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_menucard_form +msgid "Suppliers" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_reservation_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_reservation_form_tree +msgid "Table Booking" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_tickets_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +msgid "Table List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_tables__name +msgid "Table Number" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_order_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_order_form_tree +msgid "Table Order" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_tree +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotelfolio1_form1_inherited +msgid "Table Order Total" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_tree +msgid "Table Reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.action_wizard_hotel_restaurant +#: model:ir.actions.report,name:hotel_restaurant.report_hotel_table_res +#: model:ir.ui.menu,name:hotel_restaurant.wizard_list_menu +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.report_res_table +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.wizard_hotel_restaurant_form_view +msgid "Table Reservation List" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__table_nos_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_reservation__table_nos_ids +msgid "Table reservation detail." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.actions.act_window,name:hotel_restaurant.open_view_hotel_restaurant_tables_form_tree +#: model:ir.ui.menu,name:hotel_restaurant.menu_open_view_hotel_restaurant_tables_form_tree +msgid "Tables" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_form +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_tables_tree +msgid "Tables Detail" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_1 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_1_product_product +msgid "Tanduri Roti" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__tax +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__tax +msgid "Tax (%) " +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Technical compute" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__pricelist_id +msgid "" +"Technical field. Used for searching on pricelists, not stored in database." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_move_ids +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__stock_quant_ids +msgid "Technical: used to compute quantities." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__lst_price +msgid "" +"The sale price is managed from the product template. Click on the 'Configure " +"Variants' button to set the extra attribute prices." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__price_extra +msgid "This is the sum of the extra price of all attributes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_production +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated by manufacturing orders." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__property_stock_inventory +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for stock moves generated when you do an inventory." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__responsible_id +msgid "" +"This user will be responsible of the next activities related to logistic " +"operations for this product." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__to_weight +msgid "To Weigh With Scale" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_reservation_search +msgid "Today's Booking" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "Today's Orders" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__amount_total +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__amount_total +msgid "Total" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__service_type +msgid "Track Service" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__tracking +msgid "Tracking" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_id +msgid "Unit of Measure" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__uom_name +msgid "Unit of Measure Name" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_0 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_1 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_10 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_12 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_13 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_14 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_15 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_16 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_17 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_18 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_19 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_2 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_20 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_21 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_22 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_4 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_5 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_6 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_7 +#: model:hotel.menucard,uom_name:hotel_restaurant.hotel_fooditem_8 +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_0_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_10_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_12_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_13_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_14_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_15_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_16_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_17_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_18_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_19_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_1_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_20_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_21_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_22_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_2_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_4_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_5_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_6_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_7_product_product +#: model:product.product,uom_name:hotel_restaurant.hotel_fooditem_8_product_product +msgid "Units" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_16 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_16_product_product +msgid "Upma" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_18 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_18_product_product +msgid "Uttapam" +msgstr "" + +#. module: hotel_restaurant +#: model:hotel.menucard,name:hotel_restaurant.hotel_fooditem_17 +#: model:product.product,name:hotel_restaurant.hotel_fooditem_17_product_product +msgid "Vada-Sambar" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__valid_product_template_attribute_line_ids +msgid "Valid Product Attribute Lines" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__value_svl +msgid "Value Svl" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1920 +msgid "Variant Image" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_1024 +msgid "Variant Image 1024" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_128 +msgid "Variant Image 128" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_256 +msgid "Variant Image 256" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__image_variant_512 +msgid "Variant Image 512" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__price_extra +msgid "Variant Price Extra" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__variant_seller_ids +msgid "Variant Seller" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__supplier_taxes_id +msgid "Vendor Taxes" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__seller_ids +msgid "Vendors" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume +msgid "Volume" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__volume_uom_name +msgid "Volume unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_order__waiter_id +msgid "Waiter" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_reservation_order__waitername +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_kitchen_order_tickets__waiter_name +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_reservation_order_search +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_kitchen_order_search +msgid "Waiter Name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__warehouse_id +msgid "Warehouse" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_menucard__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight +msgid "Weight" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_menucard__weight_uom_name +msgid "Weight unit of measure label" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_folio_rest_reservation__check +msgid "With Details" +msgstr "" + +#. module: hotel_restaurant +#: code:addons/hotel_restaurant/models/hotel_restaurant.py:0 +#, python-format +msgid "" +"You tried to confirm reservation with table those already reserved in this " +"reservation period" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "date" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_folio_rest_reservation +msgid "folio.rest.reservation" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_hotel_folio +msgid "hotel folio" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.hotel_manucard_kanban_view +msgid "hotel menucard" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_reservation_order__is_folio +#: model:ir.model.fields,help:hotel_restaurant.field_hotel_restaurant_order__is_folio +msgid "is customer reside in hotel or not" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_hotel_order_kot +msgid "report.hotel_restaurant.report_hotel_order_kot" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_res_table +msgid "report.hotel_restaurant.report_res_table" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_report_hotel_restaurant_report_reserv_order +msgid "report.hotel_restaurant.report_reserv_order" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model.fields,field_description:hotel_restaurant.field_hotel_restaurant_reservation__state +msgid "state" +msgstr "" + +#. module: hotel_restaurant +#: model_terms:ir.ui.view,arch_db:hotel_restaurant.view_hotel_restaurant_order_search +msgid "waiter name" +msgstr "" + +#. module: hotel_restaurant +#: model:ir.model,name:hotel_restaurant.model_wizard_hotel_restaurant +msgid "wizard.hotel.restaurant" +msgstr "" diff --git a/hotel_restaurant/models/__init__.py b/hotel_restaurant/models/__init__.py new file mode 100644 index 000000000..fa235b096 --- /dev/null +++ b/hotel_restaurant/models/__init__.py @@ -0,0 +1,5 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import hotel_restaurant +from . import hotel_folio +from . import hotel_menucard diff --git a/hotel_restaurant/models/hotel_folio.py b/hotel_restaurant/models/hotel_folio.py new file mode 100644 index 000000000..7c10a8f08 --- /dev/null +++ b/hotel_restaurant/models/hotel_folio.py @@ -0,0 +1,24 @@ +# Copyright (C) 2023-TODAY Serpent Consulting Services Pvt. Ltd. (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class HotelFolio(models.Model): + + _inherit = "hotel.folio" + + hotel_reservation_orders_ids = fields.Many2many( + "hotel.reservation.order", + "hotel_res_rel", + "hotel_folio_id", + "reste_id", + "Reservation Orders", + ) + hotel_restaurant_orders_ids = fields.Many2many( + "hotel.restaurant.order", + "hotel_res_resv", + "hfolio_id", + "reserves_id", + "Restaurant Orders", + ) diff --git a/hotel_restaurant/models/hotel_menucard.py b/hotel_restaurant/models/hotel_menucard.py new file mode 100644 index 000000000..a1ae794c4 --- /dev/null +++ b/hotel_restaurant/models/hotel_menucard.py @@ -0,0 +1,126 @@ +# Copyright (C) 2023-TODAY Serpent Consulting Services Pvt. Ltd. (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import _, api, fields, models +from odoo.exceptions import ValidationError +from odoo.osv import expression + + +class HotelMenucardType(models.Model): + + _name = "hotel.menucard.type" # need to recheck for v15 + _description = "Food Item Type" + + name = fields.Char(required=True) + menu_id = fields.Many2one("hotel.menucard.type", "Food Item Type") + child_ids = fields.One2many("hotel.menucard.type", "menu_id", "Child Categories") + + def name_get(self): + def get_names(cat): + """Return the list [cat.name, cat.menu_id.name, ...]""" + res = [] + while cat: + res.append(cat.name) + cat = cat.menu_id + return res + + return [(cat.id, " / ".join(reversed(get_names(cat)))) for cat in self] + + @api.model + def name_search(self, name, args=None, operator="ilike", limit=100): + if not args: + args = [] + if name: + # Be sure name_search is symetric to name_get + category_names = name.split(" / ") + parents = list(category_names) + child = parents.pop() + domain = [("name", operator, child)] + if parents: + names_ids = self.name_search( + " / ".join(parents), + args=args, + operator="ilike", + limit=limit, + ) + category_ids = [name_id[0] for name_id in names_ids] + if operator in expression.NEGATIVE_TERM_OPERATORS: + categories = self.search([("id", "not in", category_ids)]) + domain = expression.OR( + [[("menu_id", "in", categories.ids)], domain] + ) + else: + domain = expression.AND([[("menu_id", "in", category_ids)], domain]) + for i in range(1, len(category_names)): + domain = [ + [ + ( + "name", + operator, + " / ".join(category_names[-1 - i :]), + ) + ], + domain, + ] + if operator in expression.NEGATIVE_TERM_OPERATORS: + domain = expression.AND(domain) + else: + domain = expression.OR(domain) + categories = self.search(expression.AND([domain, args]), limit=limit) + else: + categories = self.search(args, limit=limit) + return categories.name_get() + + @api.model_create_multi + def create(self, vals_list): + for vals in vals_list: + if "name" in vals: + existing_food_item_type = self.env["hotel.menucard.type"].search( + [("name", "ilike", vals["name"])] + ) + if existing_food_item_type: + raise ValidationError( + _( + "A food item type with the name '%s' already exists." + "Please choose a different food item type." + ) + % vals["name"] + ) + + return super(HotelMenucardType, self).create(vals) + + +class HotelMenucard(models.Model): + + _name = "hotel.menucard" + _description = "Hotel Menucard" + + product_id = fields.Many2one( + "product.product", + "Hotel Menucard", + required=True, + delegate=True, + ondelete="cascade", + index=True, + ) + categ_id = fields.Many2one( + "hotel.menucard.type", "Food Item Category", required=True + ) + product_manager_id = fields.Many2one("res.users", "Product Manager") + + @api.model_create_multi + def create(self, vals_list): + for vals in vals_list: + if "name" in vals: + existing_food_item = self.env["hotel.menucard"].search( + [("name", "ilike", vals["name"])] + ) + if existing_food_item: + raise ValidationError( + _( + "A food item with the name '%s' already exists." + " Please choose a different food item." + ) + % vals["name"] + ) + return super(HotelMenucard, self).create(vals) diff --git a/hotel_restaurant/models/hotel_restaurant.py b/hotel_restaurant/models/hotel_restaurant.py new file mode 100644 index 000000000..6a113c5d4 --- /dev/null +++ b/hotel_restaurant/models/hotel_restaurant.py @@ -0,0 +1,713 @@ +# Copyright (C) 2023-TODAY Serpent Consulting Services Pvt. Ltd. (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import _, api, fields, models +from odoo.exceptions import ValidationError + + +class HotelRestaurantTables(models.Model): + + _name = "hotel.restaurant.tables" + _description = "Includes Hotel Restaurant Table" + + name = fields.Char("Table Number", required=True) + capacity = fields.Integer() + + @api.model_create_multi + def create(self, vals_list): + for vals in vals_list: + if "name" in vals: + existing_table = self.env["hotel.restaurant.tables"].search( + [("name", "ilike", vals["name"])] + ) + if existing_table: + raise ValidationError( + _( + "A table with the name '%s' already exists." + " Please choose a different table." + ) + % vals["name"] + ) + return super(HotelRestaurantTables, self).create(vals) + + +class HotelRestaurantReservation(models.Model): + + _name = "hotel.restaurant.reservation" + _description = "Includes Hotel Restaurant Reservation" + _rec_name = "reservation_id" + + def create_order(self): + """ + This method is for create a new order for hotel restaurant + reservation .when table is booked and create order button is + clicked then this method is called and order is created.you + can see this created order in "Orders" + ------------------------------------------------------------ + @param self: The object pointer + @return: new record set for hotel restaurant reservation. + """ + reservation_order = self.env["hotel.reservation.order"] + for record in self: + table_ids = record.table_nos_ids.ids + values = { + "reservation_id": record.id, + "order_date": record.start_date, + "folio_id": record.folio_id.id, + "table_nos_ids": [(6, 0, table_ids)], + "is_folio": record.is_folio, + } + reservation_order.create(values) + self.write({"state": "order"}) + return True + + @api.onchange("customer_id") + def _onchange_partner_id(self): + """ + When Customer name is changed respective adress will display + in Adress field + @param self: object pointer + """ + if not self.customer_id: + self.partner_address_id = False + else: + addr = self.customer_id.address_get(["default"]) + self.partner_address_id = addr["default"] + + @api.onchange("folio_id") + def _onchange_folio_id(self): + """ + When you change folio_id, based on that it will update + the customer_id and room_number as well + --------------------------------------------------------- + @param self: object pointer + """ + for rec in self: + if rec.folio_id: + rec.customer_id = rec.folio_id.partner_id.id + rec.room_id = rec.folio_id.room_line_ids[0].product_id.id + + def action_set_to_draft(self): + """ + This method is used to change the state + to draft of the hotel restaurant reservation + -------------------------------------------- + @param self: object pointer + """ + self.write({"state": "draft"}) + + def table_reserved(self): + """ + when CONFIRM BUTTON is clicked this method is called for + table reservation + @param self: The object pointer + @return: change a state depending on the condition + """ + + for reservation in self: + if not reservation.table_nos_ids: + raise ValidationError(_("Please Select Tables For Reservation")) + reservation._cr.execute( + "select count(*) from " + "hotel_restaurant_reservation as hrr " + "inner join reservation_table as rt on \ + rt.reservation_table_id = hrr.id " + "where (start_date,end_date)overlaps\ + ( timestamp %s , timestamp %s ) " + "and hrr.id<> %s and state != 'done'" + "and rt.name in (select rt.name from \ + hotel_restaurant_reservation as hrr " + "inner join reservation_table as rt on \ + rt.reservation_table_id = hrr.id " + "where hrr.id= %s) ", + ( + reservation.start_date, + reservation.end_date, + reservation.id, + reservation.id, + ), + ) + res = self._cr.fetchone() + roomcount = res and res[0] or 0.0 + if roomcount: + raise ValidationError( + _( + """You tried to confirm reservation """ + """with table those already reserved """ + """in this reservation period""" + ) + ) + reservation.state = "confirm" + return True + + def table_cancel(self): + """ + This method is used to change the state + to cancel of the hotel restaurant reservation + -------------------------------------------- + @param self: object pointer + """ + self.write({"state": "cancel"}) + + def table_done(self): + """ + This method is used to change the state + to done of the hotel restaurant reservation + -------------------------------------------- + @param self: object pointer + """ + self.write({"state": "done"}) + + reservation_id = fields.Char("Reservation No", readonly=True, index=True) + # room_id = fields.Many2one("product.product", "Room No") + folio_id = fields.Many2one("hotel.folio", "Folio No") + room_id = fields.Many2one( + related="folio_id.room_line_ids.product_id", string="Room No" + ) + start_date = fields.Datetime( + "Start Time", required=True, default=lambda self: fields.Datetime.now() + ) + end_date = fields.Datetime("End Time", required=True) + customer_id = fields.Many2one("res.partner", "Customer Name", required=True) + partner_address_id = fields.Many2one("res.partner", "Address") + table_nos_ids = fields.Many2many( + "hotel.restaurant.tables", + "reservation_table", + "reservation_table_id", + "name", + string="Table Number", + help="Table reservation detail.", + ) + state = fields.Selection( + [ + ("draft", "Draft"), + ("confirm", "Confirmed"), + ("done", "Done"), + ("cancel", "Cancelled"), + ("order", "Order Created"), + ], + "state", + required=True, + readonly=True, + copy=False, + default="draft", + ) + is_folio = fields.Boolean("Is a Hotel Guest??") + + @api.model + def create(self, vals): + """ + Overrides orm create method. + @param self: The object pointer + @param vals: dictionary of fields value. + """ + seq_obj = self.env["ir.sequence"] + reserve = seq_obj.next_by_code("hotel.restaurant.reservation") or "New" + vals["reservation_id"] = reserve + return super(HotelRestaurantReservation, self).create(vals) + + @api.constrains("start_date", "end_date") + def _check_start_dates(self): + """ + This method is used to validate the start_date and end_date. + ------------------------------------------------------------- + @param self: object pointer + @return: raise a warning depending on the validation + """ + if self.start_date >= self.end_date: + raise ValidationError(_("Start Date Should be less than the End Date!")) + if self.is_folio: + for line in self.folio_id.room_line_ids: + if self.start_date < line.checkin_date: + raise ValidationError( + _( + """Start Date Should be greater """ + """than the Folio Check-in Date!""" + ) + ) + if self.end_date > line.checkout_date: + raise ValidationError( + _("End Date Should be less than the Folio Check-out Date!") + ) + + +class HotelRestaurantKitchenOrderTickets(models.Model): + + _name = "hotel.restaurant.kitchen.order.tickets" + _description = "Includes Hotel Restaurant Order" + _rec_name = "order_number" + + order_number = fields.Char(readonly=True) + reservation_number = fields.Char() + kot_date = fields.Datetime("Date") + room_no = fields.Char(readonly=True) + waiter_name = fields.Char(readonly=True) + table_nos_ids = fields.Many2many( + "hotel.restaurant.tables", + "restaurant_kitchen_order_rel", + "table_no", + "name", + "Table Number", + help="Table reservation detail.", + ) + kot_list_ids = fields.One2many( + "hotel.restaurant.order.list", + "kot_order_id", + "Order List", + help="Kitchen order list", + ) + + +class HotelRestaurantOrder(models.Model): + + _name = "hotel.restaurant.order" + _description = "Includes Hotel Restaurant Order" + _rec_name = "order_no" + + @api.depends("order_list_ids") + def _compute_amount_all_total(self): + """ + amount_subtotal and amount_total will display on change of order_list_ids + --------------------------------------------------------------------- + @param self: object pointer + """ + for sale in self: + sale.amount_subtotal = sum( + line.price_subtotal for line in sale.order_list_ids + ) + sale.amount_total = 0.0 + if sale.amount_subtotal: + sale.amount_total = ( + sale.amount_subtotal + (sale.amount_subtotal * sale.tax) / 100 + ) + + def done_cancel(self): + """ + This method is used to change the state + to cancel of the hotel restaurant order + ---------------------------------------- + @param self: object pointer + """ + self.write({"state": "cancel"}) + + def set_to_draft(self): + """ + This method is used to change the state + to draft of the hotel restaurant order + ---------------------------------------- + @param self: object pointer + """ + self.write({"state": "draft"}) + + def generate_kot(self): + """ + This method create new record for hotel restaurant order list. + @param self: The object pointer + @return: new record set for hotel restaurant order list. + """ + res = [] + order_tickets_obj = self.env["hotel.restaurant.kitchen.order.tickets"] + restaurant_order_list_obj = self.env["hotel.restaurant.order.list"] + for order in self: + if not order.order_list_ids: + raise ValidationError(_("Please Give an Order")) + if not order.table_nos_ids: + raise ValidationError(_("Please Assign a Table")) + table_ids = order.table_nos_ids.ids + kot_data = order_tickets_obj.create( + { + "order_number": order.order_no, + "kot_date": order.o_date, + "room_no": order.room_id.name, + "waiter_name": order.waiter_id.name, + "table_nos_ids": [(6, 0, table_ids)], + } + ) + + for order_line in order.order_list_ids: + o_line = { + "kot_order_id": kot_data.id, + "menucard_id": order_line.menucard_id.id, + "item_qty": order_line.item_qty, + "item_rate": order_line.item_rate, + } + restaurant_order_list_obj.create(o_line) + res.append(order_line.id) + order.update( + { + "kitchen": kot_data.id, + "rest_item_id": [(6, 0, res)], + "state": "order", + } + ) + return True + + order_no = fields.Char("Order Number", readonly=True) + o_date = fields.Datetime( + "Order Date", required=True, default=lambda self: fields.Datetime.now() + ) + # room_id = fields.Many2one("product.product", "Room No") + + folio_id = fields.Many2one("hotel.folio", "Folio No") + room_id = fields.Many2one( + related="folio_id.room_line_ids.product_id", string="Room No" + ) + + waiter_id = fields.Many2one("res.partner", "Waiter") + table_nos_ids = fields.Many2many( + "hotel.restaurant.tables", + "restaurant_table_order_rel", + "table_no", + "name", + "Table Number", + ) + order_list_ids = fields.One2many( + "hotel.restaurant.order.list", "restaurant_order_id", "Order List" + ) + tax = fields.Float("Tax (%) ") + amount_subtotal = fields.Float( + compute="_compute_amount_all_total", string="Subtotal" + ) + amount_total = fields.Float(compute="_compute_amount_all_total", string="Total") + state = fields.Selection( + [ + ("draft", "Draft"), + ("order", "Order Created"), + ("done", "Done"), + ("cancel", "Cancelled"), + ], + required=True, + readonly=True, + copy=False, + default="draft", + ) + is_folio = fields.Boolean( + "Is a Hotel Guest??", help="is customer reside in hotel or not" + ) + customer_id = fields.Many2one("res.partner", "Customer Name", required=True) + kitchen = fields.Integer() + rest_item_id = fields.Many2many( + "hotel.restaurant.order.list", + "restaurant_kitchen_rel", + "restau_id", + "kit_id", + "Rest", + ) + + @api.model + def create(self, vals): + """ + Overrides orm create method. + @param self: The object pointer + @param vals: dictionary of fields value. + """ + seq_obj = self.env["ir.sequence"] + rest_order = seq_obj.next_by_code("hotel.restaurant.order") or "New" + vals["order_no"] = rest_order + return super(HotelRestaurantOrder, self).create(vals) + + @api.onchange("folio_id") + def _onchange_folio_id(self): + """ + When you change folio_id, based on that it will update + the customer_id and room_number as well + --------------------------------------------------------- + @param self: object pointer + """ + if self.folio_id: + self.update( + { + "customer_id": self.folio_id.partner_id.id, + "room_id": self.folio_id.room_line_ids[0].product_id.id, + } + ) + + def generate_kot_update(self): + """ + This method update record for hotel restaurant order list. + ---------------------------------------------------------- + @param self: The object pointer + @return: update record set for hotel restaurant order list. + """ + order_tickets_obj = self.env["hotel.restaurant.kitchen.order.tickets"] + rest_order_list_obj = self.env["hotel.restaurant.order.list"] + for order in self: + line_data = { + "order_number": order.order_no, + "kot_date": fields.Datetime.to_string(fields.datetime.now()), + "room_no": order.room_id.name, + "waiter_name": order.waiter_id.name, + "table_nos_ids": [(6, 0, order.table_nos_ids.ids)], + } + kot_id = order_tickets_obj.browse(self.kitchen) + kot_id.write(line_data) + for order_line in order.order_list_ids: + if order_line.id not in order.rest_item_id.ids: + kot_data = order_tickets_obj.create(line_data) + order.kitchen = kot_data.id + o_line = { + "kot_order_id": kot_data.id, + "menucard_id": order_line.menucard_id.id, + "item_qty": order_line.item_qty, + "item_rate": order_line.item_rate, + } + order.rest_item_id = [(4, order_line.id)] + rest_order_list_obj.create(o_line) + return True + + def done_order_kot(self): + """ + This method is used to change the state + to done of the hotel restaurant order + ---------------------------------------- + @param self: object pointer + """ + hsl_obj = self.env["hotel.service.line"] + so_line_obj = self.env["sale.order.line"] + for order_obj in self: + for order in order_obj.order_list_ids: + if order_obj.folio_id: + values = { + "order_id": order_obj.folio_id.order_id.id, + "name": order.menucard_id.name, + "product_id": order.menucard_id.product_id.id, + "product_uom": order.menucard_id.uom_id.id, + "product_uom_qty": order.item_qty, + "price_unit": order.item_rate, + "price_subtotal": order.price_subtotal, + } + sol_rec = so_line_obj.create(values) + hsl_obj.create( + { + "folio_id": order_obj.folio_id.id, + "service_line_id": sol_rec.id, + } + ) + order_obj.folio_id.write( + {"hotel_restaurant_orders_ids": [(4, order_obj.id)]} + ) + self.write({"state": "done"}) + return True + + +class HotelReservationOrder(models.Model): + + _name = "hotel.reservation.order" + _description = "Reservation Order" + _rec_name = "order_number" + + @api.depends("order_list_ids") + def _compute_amount_all_total(self): + """ + amount_subtotal and amount_total will display on change of order_list_ids + --------------------------------------------------------------------- + @param self: object pointer + """ + for sale in self: + sale.amount_subtotal = sum( + line.price_subtotal for line in sale.order_list_ids + ) + sale.amount_total = ( + sale.amount_subtotal + (sale.amount_subtotal * sale.tax) / 100 + ) + + def reservation_generate_kot(self): + """ + This method create new record for hotel restaurant order list. + -------------------------------------------------------------- + @param self: The object pointer + @return: new record set for hotel restaurant order list. + """ + res = [] + order_tickets_obj = self.env["hotel.restaurant.kitchen.order.tickets"] + rest_order_list_obj = self.env["hotel.restaurant.order.list"] + for order in self: + if not order.order_list_ids: + raise ValidationError(_("Please Give an Order")) + table_ids = order.table_nos_ids.ids + line_data = { + "order_number": order.order_number, + "reservation_number": order.reservation_id.reservation_id, + "kot_date": order.order_date, + "waiter_name": order.waitername.name, + "table_nos_ids": [(6, 0, table_ids)], + } + kot_data = order_tickets_obj.create(line_data) + for order_line in order.order_list_ids: + o_line = { + "kot_order_id": kot_data.id, + "menucard_id": order_line.menucard_id.id, + "item_qty": order_line.item_qty, + "item_rate": order_line.item_rate, + } + rest_order_list_obj.create(o_line) + res.append(order_line.id) + order.update( + { + "kitchen": kot_data.id, + "rests_ids": [(6, 0, res)], + "state": "order", + } + ) + return res + + def reservation_update_kot(self): + """ + This method update record for hotel restaurant order list. + ---------------------------------------------------------- + @param self: The object pointer + @return: update record set for hotel restaurant order list. + """ + order_tickets_obj = self.env["hotel.restaurant.kitchen.order.tickets"] + rest_order_list_obj = self.env["hotel.restaurant.order.list"] + for order in self: + table_ids = order.table_nos_ids.ids + line_data = { + "order_number": order.order_number, + "reservation_number": order.reservation_id.reservation_id, + "kot_date": fields.Datetime.to_string(fields.datetime.now()), + "waiter_name": order.waitername.name, + "table_nos_ids": [(6, 0, table_ids)], + } + kot_id = order_tickets_obj.browse(self.kitchen) + kot_id.write(line_data) + for order_line in order.order_list_ids: + if order_line not in order.rests_ids.ids: + kot_data = order_tickets_obj.create(line_data) + o_line = { + "kot_order_id": kot_data.id, + "menucard_id": order_line.menucard_id.id, + "item_qty": order_line.item_qty, + "item_rate": order_line.item_rate, + } + order.update( + { + "kitchen": kot_data.id, + "rests_ids": [(4, order_line.id)], + } + ) + rest_order_list_obj.create(o_line) + return True + + def done_kot(self): + """ + This method is used to change the state + to done of the hotel reservation order + ---------------------------------------- + @param self: object pointer + """ + hsl_obj = self.env["hotel.service.line"] + so_line_obj = self.env["sale.order.line"] + for res_order in self: + for order in res_order.order_list_ids: + if res_order.folio_id: + values = { + "order_id": res_order.folio_id.order_id.id, + "name": order.menucard_id.name, + "product_id": order.menucard_id.product_id.id, + "product_uom_qty": order.item_qty, + "price_unit": order.item_rate, + "price_subtotal": order.price_subtotal, + } + sol_rec = so_line_obj.create(values) + hsl_obj.create( + { + "folio_id": res_order.folio_id.id, + "service_line_id": sol_rec.id, + } + ) + res_order.folio_id.write( + {"hotel_reservation_orders_ids": [(4, res_order.id)]} + ) + res_order.reservation_id.write({"state": "done"}) + self.write({"state": "done"}) + return True + + order_number = fields.Char("Order No", readonly=True) + reservation_id = fields.Many2one("hotel.restaurant.reservation", "Reservation No") + order_date = fields.Datetime( + "Date", required=True, default=lambda self: fields.Datetime.now() + ) + waitername = fields.Many2one("res.partner", "Waiter Name") + table_nos_ids = fields.Many2many( + "hotel.restaurant.tables", + "temp_table4", + "table_no", + "name", + "Table Number", + ) + order_list_ids = fields.One2many( + "hotel.restaurant.order.list", "reservation_order_id", "Order List" + ) + tax = fields.Float("Tax (%) ") + amount_subtotal = fields.Float( + compute="_compute_amount_all_total", string="Subtotal" + ) + amount_total = fields.Float(compute="_compute_amount_all_total", string="Total") + kitchen = fields.Integer("Kitchen Id") + rests_ids = fields.Many2many( + "hotel.restaurant.order.list", + "reserv_id", + "kitchen_id", + "res_kit_ids", + "Rest", + ) + state = fields.Selection( + [("draft", "Draft"), ("order", "Order Created"), ("done", "Done")], + required=True, + readonly=True, + default="draft", + ) + folio_id = fields.Many2one(related="reservation_id.folio_id", string="Folio No") + is_folio = fields.Boolean( + "Is a Hotel Guest??", help="is customer reside in hotel or not" + ) + + @api.model + def create(self, vals): + """ + Overrides orm create method. + @param self: The object pointer + @param vals: dictionary of fields value. + """ + seq_obj = self.env["ir.sequence"] + res_oder = seq_obj.next_by_code("hotel.reservation.order") or "New" + vals["order_number"] = res_oder + return super(HotelReservationOrder, self).create(vals) + + +class HotelRestaurantOrderList(models.Model): + + _name = "hotel.restaurant.order.list" + _description = "Includes Hotel Restaurant Order" + + @api.depends("item_qty", "item_rate") + def _compute_price_subtotal(self): + """ + price_subtotal will display on change of item_rate + -------------------------------------------------- + @param self: object pointer + """ + for line in self: + line.price_subtotal = line.item_rate * int(line.item_qty) + + @api.onchange("menucard_id") + def _onchange_item_name(self): + """ + item rate will display on change of item name + --------------------------------------------- + @param self: object pointer + """ + self.item_rate = self.menucard_id.list_price + + restaurant_order_id = fields.Many2one("hotel.restaurant.order", "Restaurant Order") + reservation_order_id = fields.Many2one( + "hotel.reservation.order", "Reservation Order" + ) + kot_order_id = fields.Many2one( + "hotel.restaurant.kitchen.order.tickets", "Kitchen Order Tickets" + ) + menucard_id = fields.Many2one("hotel.menucard", "Item Name", required=True) + item_qty = fields.Integer("Qty", required=True, default=1) + item_rate = fields.Float("Rate") + price_subtotal = fields.Float(compute="_compute_price_subtotal", string="Subtotal") diff --git a/hotel_restaurant/readme/CONTRIBUTORS.rst b/hotel_restaurant/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..e140f5f51 --- /dev/null +++ b/hotel_restaurant/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* Odoo Community Association (OCA) +* Serpent Consulting Services Pvt. Ltd. +* Odoo S.A. +* Rajan Patel diff --git a/hotel_restaurant/readme/DESCRIPTION.rst b/hotel_restaurant/readme/DESCRIPTION.rst new file mode 100644 index 000000000..791224d0b --- /dev/null +++ b/hotel_restaurant/readme/DESCRIPTION.rst @@ -0,0 +1,34 @@ +This Module is providing table booking facilities and Managing customers orders + +You can manage: + +* Restaurant Configuration (Food Item, Table) + +* **Table Reservation** + +.. image:: https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res2.png + :width: 750px + +* **Manage Food Orders** + +.. image:: https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res3.png + :width: 750px + +* **Manage Kitchen Order ticket** + +.. image:: https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res4.png + :width: 750px + +* **Quick Table Reservation Facility With Its Food Order** + +.. image:: https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res5.png + :width: 750px + +* **Order's History In Hotel Folio** + +.. image:: https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res6.png + :width: 750px + +* Payment + +* Different Reports are also provided, mainly for Restaurant. diff --git a/hotel_restaurant/report/__init__.py b/hotel_restaurant/report/__init__.py new file mode 100644 index 000000000..b51a30be4 --- /dev/null +++ b/hotel_restaurant/report/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import hotel_restaurant_report diff --git a/hotel_restaurant/report/hotel_restaurant_report.py b/hotel_restaurant/report/hotel_restaurant_report.py new file mode 100644 index 000000000..e2ac8f512 --- /dev/null +++ b/hotel_restaurant/report/hotel_restaurant_report.py @@ -0,0 +1,429 @@ +# Copyright (C) 2023-TODAY Serpent Consulting Services Pvt. Ltd. (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import time +from datetime import datetime, timedelta + +import pytz +from dateutil.relativedelta import relativedelta + +from odoo import api, fields, models + + +class HotelRestaurantReport(models.AbstractModel): + _name = "report.hotel_restaurant.report_res_table" + _description = "report.hotel_restaurant.report_res_table" + + def _convert_to_ist(self, utc_dt): + user_tz = self._context.get("tz", "UTC") + local_tz = pytz.timezone(user_tz) + utc_tz = pytz.timezone("UTC") + + utc_dt = utc_tz.localize(utc_dt) + local_dt = utc_dt.astimezone(local_tz) + return local_dt + + def get_res_data(self, date_start, date_end): + data = [] + tids = self.env["hotel.restaurant.reservation"].search( + [("start_date", ">=", date_start), ("end_date", "<=", date_end)] + ) + for record in tids: + data.append( + { + "reservation": record.reservation_id, + "name": record.customer_id.name, + "start_date": record.start_date, + "end_date": record.end_date, + } + ) + + # Convert start_date and end_date for each reservation + for reservation in data: + if isinstance(reservation["start_date"], datetime): + start_time = reservation["start_date"] + else: + start_time = datetime.strptime( + reservation["start_date"], "%Y-%m-%d %H:%M:%S" + ) + + if isinstance(reservation["end_date"], datetime): + end_time = reservation["end_date"] + else: + end_time = datetime.strptime( + reservation["end_date"], "%Y-%m-%d %H:%M:%S" + ) + + reservation["start_date"] = self._convert_to_ist(start_time).strftime( + "%m/%d/%Y %H:%M:%S" + ) + reservation["end_date"] = self._convert_to_ist(end_time).strftime( + "%m/%d/%Y %H:%M:%S" + ) + + return data + + @api.model + def _get_report_values(self, docids, data): + active_model = self.env.context.get("active_model") + if data is None: + data = {} + if not docids: + docids = data["form"].get("docids") + folio_profile = self.env["hotel.restaurant.tables"].browse(docids) + date_start_str = data["form"].get("date_start") + date_end_str = data["form"].get("date_end") + + if not date_start_str: + date_start_str = fields.Date.today().strftime("%Y-%m-%d 00:00:00") + if not date_end_str: + date_end_str = ( + datetime.now() + relativedelta(months=+1, day=1, days=-1) + ).strftime("%Y-%m-%d 23:59:59") + + date_start_utc = datetime.strptime(date_start_str, "%Y-%m-%d %H:%M:%S") + date_end_utc = datetime.strptime(date_end_str, "%Y-%m-%d %H:%M:%S") + date_start_ist = self._convert_to_ist(date_start_utc) + date_end_ist = self._convert_to_ist(date_end_utc) + date_start = fields.Datetime.to_string(date_start_ist) + date_end = fields.Datetime.to_string(date_end_ist) + + date_start_minus_5_30 = date_start_ist - timedelta(hours=5, minutes=30) + date_end_minus_5_30 = date_end_ist - timedelta(hours=5, minutes=30) + + date_start_server = fields.Datetime.to_string(date_start_minus_5_30) + date_end_server = fields.Datetime.to_string(date_end_minus_5_30) + + rm_act = self.with_context(**data["form"].get("used_context", {})) + reservation_res = rm_act.get_res_data(date_start_server, date_end_server) + + return { + "doc_ids": docids, + "doc_model": active_model, + "data": data["form"], + "docs": folio_profile, + "time": time, + "Reservations": reservation_res, + "start_time": date_start, + "end_time": date_end, + } + + +class ReportKot(models.AbstractModel): + _name = "report.hotel_restaurant.report_hotel_order_kot" + _description = "report.hotel_restaurant.report_hotel_order_kot" + + @api.model + def _get_report_values(self, docids, data): + active_model = self.env.context.get("active_model") + if data is None: + data = {} + if not docids: + docids = data["form"].get("docids") + folio_profile = self.env["hotel.restaurant.order"].browse(docids) + return { + "doc_ids": docids, + "doc_model": active_model, + "docs": folio_profile, + "data": data, + } + + +class FolioRestReport(models.AbstractModel): + _name = "report.hotel_restaurant.report_rest_order" + _description = "Folio Rest Report" + + def _convert_to_ist(self, utc_dt): + user_tz = self._context.get("tz", "UTC") + local_tz = pytz.timezone(user_tz) + utc_tz = pytz.timezone("UTC") + + utc_dt = utc_tz.localize(utc_dt) + local_dt = utc_dt.astimezone(local_tz) + return local_dt + + def get_data(self, date_start, date_end): + data = [] + tids = self.env["hotel.folio"].search( + [ + ("checkin_date", ">=", date_start), + ("checkout_date", "<=", date_end), + ] + ) + + total = 0.0 + for record in tids: + if record.hotel_reservation_orders_ids: + + total_amount = sum( + order.amount_total for order in record.hotel_reservation_orders_ids + ) + total_order = len(record.hotel_reservation_orders_ids.ids) + data.append( + { + "folio_name": record.name, + "customer_name": record.partner_id.name, + "checkin_date": fields.Datetime.to_string(record.checkin_date), + "checkout_date": fields.Datetime.to_string( + record.checkout_date + ), + "total_amount": total_amount, + "total_order": total_order, + } + ) + + data.append({"total": total}) + for reservation in data: + if "checkin_date" in reservation: + checkin_date_str = reservation["checkin_date"] + checkin_date = datetime.strptime(checkin_date_str, "%Y-%m-%d %H:%M:%S") + reservation["checkin_date"] = self._convert_to_ist( + checkin_date + ).strftime("%m/%d/%Y %H:%M:%S") + + if "checkout_date" in reservation: + checkout_date_str = reservation["checkout_date"] + checkout_date = datetime.strptime( + checkout_date_str, "%Y-%m-%d %H:%M:%S" + ) + reservation["checkout_date"] = self._convert_to_ist( + checkout_date + ).strftime("%m/%d/%Y %H:%M:%S") + return data + + def get_rest(self, date_start, date_end): + data = [] + tids = self.env["hotel.folio"].search( + [ + ("checkin_date", ">=", date_start), + ("checkout_date", "<=", date_end), + ] + ) + for record in tids: + if record.hotel_reservation_orders_ids: + order_data = [] + for order in record.hotel_reservation_orders_ids: + order_data.append( + { + "order_no": order.order_number, + "order_date": fields.Datetime.to_string(order.order_date), + "state": order.state, + "table_nos_ids": len(order.table_nos_ids), + "order_len": len(order.order_list_ids), + "amount_total": order.amount_total, + } + ) + data.append( + { + "folio_name": record.name, + "customer_name": record.partner_id.name, + "order_data": order_data, + } + ) + for reservation in data: + for order in reservation["order_data"]: + start_time_str = order["order_date"] + start_time = datetime.strptime(start_time_str, "%Y-%m-%d %H:%M:%S") + order["order_date"] = self._convert_to_ist(start_time).strftime( + "%m/%d/%Y %H:%M:%S" + ) + return data + + @api.model + def _get_report_values(self, docids, data): + active_model = self.env.context.get("active_model") + if data is None: + data = {} + if not docids: + docids = data["form"].get("docids") + folio_profile = self.env["hotel.reservation.order"].browse(docids) + date_start_str = data["form"].get("date_start") + date_end_str = data["form"].get("date_end") + + if not date_start_str: + date_start_str = fields.Date.today().strftime("%Y-%m-%d 00:00:00") + if not date_end_str: + date_end_str = ( + datetime.now() + relativedelta(months=+1, day=1, days=-1) + ).strftime("%Y-%m-%d 23:59:59") + + date_start_utc = datetime.strptime(date_start_str, "%Y-%m-%d %H:%M:%S") + date_end_utc = datetime.strptime(date_end_str, "%Y-%m-%d %H:%M:%S") + date_start_ist = self._convert_to_ist(date_start_utc) + date_end_ist = self._convert_to_ist(date_end_utc) + date_start = fields.Datetime.to_string(date_start_ist) + date_end = fields.Datetime.to_string(date_end_ist) + + date_start_minus_5_30 = date_start_ist - timedelta(hours=5, minutes=30) + date_end_minus_5_30 = date_end_ist - timedelta(hours=5, minutes=30) + + date_start_server = fields.Datetime.to_string(date_start_minus_5_30) + date_end_server = fields.Datetime.to_string(date_end_minus_5_30) + + rm_act = self.with_context(**data["form"].get("used_context", {})) + + get_data_res = rm_act.get_data(date_start_server, date_end_server) + get_rest_res = rm_act.get_rest(date_start_server, date_end_server) + + return { + "doc_ids": docids, + "doc_model": active_model, + "data": data["form"], + "docs": folio_profile, + "time": time, + "GetData": get_data_res, + "GetRest": get_rest_res, + "start_time": date_start, + "end_time": date_end, + } + + +class FolioReservReport(models.AbstractModel): + _name = "report.hotel_restaurant.report_reserv_order" + _description = "report.hotel_restaurant.report_reserv_order" + + def _convert_to_ist(self, utc_dt): + user_tz = self._context.get("tz", "UTC") + local_tz = pytz.timezone(user_tz) + utc_tz = pytz.timezone("UTC") + + utc_dt = utc_tz.localize(utc_dt) + local_dt = utc_dt.astimezone(local_tz) + return local_dt + + def get_data(self, date_start, date_end): + data = [] + tids = self.env["hotel.folio"].search( + [ + ("checkin_date", ">=", date_start), + ("checkout_date", "<=", date_end), + ] + ) + total = 0.0 + for record in tids: + if record.hotel_restaurant_orders_ids: + total_amount = sum( + order.amount_total for order in record.hotel_restaurant_orders_ids + ) + total_order = len(record.hotel_restaurant_orders_ids.ids) + data.append( + { + "folio_name": record.name, + "customer_name": record.partner_id.name, + "checkin_date": fields.Datetime.to_string(record.checkin_date), + "checkout_date": fields.Datetime.to_string( + record.checkout_date + ), + "total_amount": total_amount, + "total_order": total_order, + } + ) + for reservation in data: + if "checkin_date" in reservation: + checkin_date_str = reservation["checkin_date"] + checkin_date = datetime.strptime(checkin_date_str, "%Y-%m-%d %H:%M:%S") + reservation["checkin_date"] = self._convert_to_ist( + checkin_date + ).strftime("%m/%d/%Y %H:%M:%S") + + if "checkout_date" in reservation: + checkout_date_str = reservation["checkout_date"] + checkout_date = datetime.strptime( + checkout_date_str, "%Y-%m-%d %H:%M:%S" + ) + reservation["checkout_date"] = self._convert_to_ist( + checkout_date + ).strftime("%m/%d/%Y %H:%M:%S") + data.append({"total": total}) + return data + + def get_reserv(self, date_start, date_end): + data = [] + tids = self.env["hotel.folio"].search( + [ + ("checkin_date", ">=", date_start), + ("checkout_date", "<=", date_end), + ] + ) + for record in tids: + if record.hotel_restaurant_orders_ids: + order_data = [] + for order in record.hotel_restaurant_orders_ids: + order_date = order.o_date + # order_date = (fields.Datetime.to_string(record.order_date),) + order_data.append( + { + "order_no": order.order_no, + "order_date": order_date, + "state": order.state, + "room_id": order.room_id.name, + "table_nos_ids": len(order.table_nos_ids), + "amount_total": order.amount_total, + } + ) + data.append( + { + "folio_name": record.name, + "customer_name": record.partner_id.name, + "order_data": order_data, + } + ) + for reservation in data: + for order in reservation["order_data"]: + start_time_str = order["order_date"] + if isinstance(start_time_str, datetime): + start_time_str = fields.Datetime.to_string(start_time_str) + start_time = datetime.strptime(start_time_str, "%Y-%m-%d %H:%M:%S") + order["order_date"] = self._convert_to_ist(start_time).strftime( + "%m/%d/%Y %H:%M:%S" + ) + + return data + + @api.model + def _get_report_values(self, docids, data): + active_model = self.env.context.get("active_model") + if data is None: + data = {} + if not docids: + docids = data["form"].get("docids") + folio_profile = self.env["hotel.restaurant.order"].browse(docids) + date_start_str = data["form"].get("date_start") + date_end_str = data["form"].get("date_end") + + if not date_start_str: + date_start_str = fields.Date.today().strftime("%Y-%m-%d 00:00:00") + if not date_end_str: + date_end_str = ( + datetime.now() + relativedelta(months=+1, day=1, days=-1) + ).strftime("%Y-%m-%d 23:59:59") + + date_start_utc = datetime.strptime(date_start_str, "%Y-%m-%d %H:%M:%S") + date_end_utc = datetime.strptime(date_end_str, "%Y-%m-%d %H:%M:%S") + date_start_ist = self._convert_to_ist(date_start_utc) + date_end_ist = self._convert_to_ist(date_end_utc) + date_start = fields.Datetime.to_string(date_start_ist) + date_end = fields.Datetime.to_string(date_end_ist) + + date_start_minus_5_30 = date_start_ist - timedelta(hours=5, minutes=30) + date_end_minus_5_30 = date_end_ist - timedelta(hours=5, minutes=30) + + date_start_server = fields.Datetime.to_string(date_start_minus_5_30) + date_end_server = fields.Datetime.to_string(date_end_minus_5_30) + + rm_act = self.with_context(**data["form"].get("used_context", {})) + + get_data_res = rm_act.get_data(date_start_server, date_end_server) + get_reserv_res = rm_act.get_reserv(date_start_server, date_end_server) + + return { + "doc_ids": docids, + "doc_model": active_model, + "data": data["form"], + "docs": folio_profile, + "time": time, + "GetData": get_data_res, + "GetReserv": get_reserv_res, + "start_time": date_start, + "end_time": date_end, + } diff --git a/hotel_restaurant/report/hotel_restaurant_report.xml b/hotel_restaurant/report/hotel_restaurant_report.xml new file mode 100644 index 000000000..17d8fff72 --- /dev/null +++ b/hotel_restaurant/report/hotel_restaurant_report.xml @@ -0,0 +1,59 @@ + + + + + + Kitchen Order Tickets + hotel.restaurant.order + qweb-pdf + hotel_restaurant.report_hotel_order_kot + hotel_restaurant.report_hotel_order_kot + report + + + + + Customer Bill + hotel.restaurant.order + qweb-pdf + hotel_restaurant.report_order_bill + hotel_restaurant.report_order_bill + report + + + + Customer Bill + hotel.reservation.order + qweb-pdf + hotel_restaurant.report_res_order_bill + hotel_restaurant.report_res_order_bill + report + + + + Table Reservation List + hotel.restaurant.reservation + qweb-pdf + hotel_restaurant.report_res_table + hotel_restaurant.report_res_table + report + + + + Restaurants Reports + hotel.reservation.order + qweb-pdf + hotel_restaurant.report_rest_order + hotel_restaurant.report_rest_order + report + + + + Restaurants Reports + hotel.reservation.order + qweb-pdf + hotel_restaurant.report_reserv_order + hotel_restaurant.report_reserv_order + report + + diff --git a/hotel_restaurant/security/ir.model.access.csv b/hotel_restaurant/security/ir.model.access.csv new file mode 100644 index 000000000..96e2e3458 --- /dev/null +++ b/hotel_restaurant/security/ir.model.access.csv @@ -0,0 +1,16 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_product_category,product.category,product.model_product_category,hotel.group_hotel_user,1,1,0,0 +access_product_product,product.product,product.model_product_product,hotel.group_hotel_user,1,1,1,1 +access_hotel_menucard_type,hotel.menucard.type,model_hotel_menucard_type,hotel.group_hotel_user,1,1,0,0 +access_hotel_menucard_type_manager,hotel.menucard.type.manager,model_hotel_menucard_type,hotel.group_hotel_manager,1,1,1,1 +access_hotel_menucard,hotel.menucard,model_hotel_menucard,hotel.group_hotel_user,1,1,0,0 +access_hotel_menucard_manager,hotel.menucard.manager,model_hotel_menucard,hotel.group_hotel_manager,1,1,1,1 +access_hotel_restaurant_tables,hotel.restaurant.tables,model_hotel_restaurant_tables,hotel.group_hotel_user,1,1,0,0 +access_hotel_restaurant_tables_manager,hotel.restaurant.tables.manager,model_hotel_restaurant_tables,hotel.group_hotel_manager,1,1,1,1 +access_hotel_restaurant_reservation,hotel.restaurant.reservation,model_hotel_restaurant_reservation,hotel.group_hotel_user,1,1,1,1 +access_hotel_restaurant_kitchen_order_tickets,hotel.restaurant.kitchen.order.tickets,model_hotel_restaurant_kitchen_order_tickets,hotel.group_hotel_user,1,1,1,1 +access_hotel_restaurant_order,hotel.restaurant.order,model_hotel_restaurant_order,hotel.group_hotel_user,1,1,1,1 +access_hotel_reservation_order,hotel.reservation.order,model_hotel_reservation_order,hotel.group_hotel_user,1,1,1,1 +access_hotel_restaurant_order_list,hotel.restaurant.order.list,model_hotel_restaurant_order_list,hotel.group_hotel_user,1,1,1,1 +access_wizard_hotel_restaurant,access_wizard_hotel_restaurant,model_wizard_hotel_restaurant,base.group_user,1,1,1,1 +access_folio_rest_reservation,access_folio_rest_reservation,model_folio_rest_reservation,base.group_user,1,1,1,1 diff --git a/hotel_restaurant/static/description/icon.png b/hotel_restaurant/static/description/icon.png new file mode 100644 index 000000000..b646e5d4a Binary files /dev/null and b/hotel_restaurant/static/description/icon.png differ diff --git a/hotel_restaurant/static/description/index.html b/hotel_restaurant/static/description/index.html new file mode 100644 index 000000000..4abeb3238 --- /dev/null +++ b/hotel_restaurant/static/description/index.html @@ -0,0 +1,450 @@ + + + + + +Hotel Restaurant Management + + + +
+

Hotel Restaurant Management

+ + +

Beta License: AGPL-3 OCA/vertical-hotel Translate me on Weblate Try me on Runboat

+

This Module is providing table booking facilities and Managing customers orders

+

You can manage:

+
    +
  • Restaurant Configuration (Food Item, Table)
  • +
  • Table Reservation
  • +
+https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res2.png +
    +
  • Manage Food Orders
  • +
+https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res3.png +
    +
  • Manage Kitchen Order ticket
  • +
+https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res4.png +
    +
  • Quick Table Reservation Facility With Its Food Order
  • +
+https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res5.png +
    +
  • Order’s History In Hotel Folio
  • +
+https://raw.githubusercontent.com/OCA/vertical-hotel/11.0/hotel_restaurant/static/description/res6.png +
    +
  • Payment
  • +
  • Different Reports are also provided, mainly for Restaurant.
  • +
+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Serpent Consulting Services Pvt. Ltd.
  • +
  • Odoo S.A.
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/vertical-hotel project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/hotel_restaurant/static/description/res2.png b/hotel_restaurant/static/description/res2.png new file mode 100644 index 000000000..a181a90b0 Binary files /dev/null and b/hotel_restaurant/static/description/res2.png differ diff --git a/hotel_restaurant/static/description/res3.png b/hotel_restaurant/static/description/res3.png new file mode 100644 index 000000000..eb9d5e4c6 Binary files /dev/null and b/hotel_restaurant/static/description/res3.png differ diff --git a/hotel_restaurant/static/description/res4.png b/hotel_restaurant/static/description/res4.png new file mode 100644 index 000000000..b0cccc6fc Binary files /dev/null and b/hotel_restaurant/static/description/res4.png differ diff --git a/hotel_restaurant/static/description/res5.png b/hotel_restaurant/static/description/res5.png new file mode 100644 index 000000000..ee79dd691 Binary files /dev/null and b/hotel_restaurant/static/description/res5.png differ diff --git a/hotel_restaurant/static/description/res6.png b/hotel_restaurant/static/description/res6.png new file mode 100644 index 000000000..81faf6a78 Binary files /dev/null and b/hotel_restaurant/static/description/res6.png differ diff --git a/hotel_restaurant/static/description/serpent.png b/hotel_restaurant/static/description/serpent.png new file mode 100644 index 000000000..53dd30d96 Binary files /dev/null and b/hotel_restaurant/static/description/serpent.png differ diff --git a/hotel_restaurant/static/img/Halva.jpg b/hotel_restaurant/static/img/Halva.jpg new file mode 100644 index 000000000..43354a7a6 Binary files /dev/null and b/hotel_restaurant/static/img/Halva.jpg differ diff --git a/hotel_restaurant/static/img/Idli_sambar.jpg b/hotel_restaurant/static/img/Idli_sambar.jpg new file mode 100644 index 000000000..50f453dc2 Binary files /dev/null and b/hotel_restaurant/static/img/Idli_sambar.jpg differ diff --git a/hotel_restaurant/static/img/appam1.jpg b/hotel_restaurant/static/img/appam1.jpg new file mode 100644 index 000000000..4406a7ba6 Binary files /dev/null and b/hotel_restaurant/static/img/appam1.jpg differ diff --git a/hotel_restaurant/static/img/bhaji_paw.jpg b/hotel_restaurant/static/img/bhaji_paw.jpg new file mode 100644 index 000000000..481a71987 Binary files /dev/null and b/hotel_restaurant/static/img/bhaji_paw.jpg differ diff --git a/hotel_restaurant/static/img/chees_masala.jpg b/hotel_restaurant/static/img/chees_masala.jpg new file mode 100644 index 000000000..5ea64c1ff Binary files /dev/null and b/hotel_restaurant/static/img/chees_masala.jpg differ diff --git a/hotel_restaurant/static/img/chole.png b/hotel_restaurant/static/img/chole.png new file mode 100644 index 000000000..185eb519c Binary files /dev/null and b/hotel_restaurant/static/img/chole.png differ diff --git a/hotel_restaurant/static/img/dosa.png b/hotel_restaurant/static/img/dosa.png new file mode 100644 index 000000000..963235d2c Binary files /dev/null and b/hotel_restaurant/static/img/dosa.png differ diff --git a/hotel_restaurant/static/img/khandvi.jpg b/hotel_restaurant/static/img/khandvi.jpg new file mode 100644 index 000000000..fe774f4de Binary files /dev/null and b/hotel_restaurant/static/img/khandvi.jpg differ diff --git a/hotel_restaurant/static/img/malai_kofta.jpg b/hotel_restaurant/static/img/malai_kofta.jpg new file mode 100644 index 000000000..e16b32f7e Binary files /dev/null and b/hotel_restaurant/static/img/malai_kofta.jpg differ diff --git a/hotel_restaurant/static/img/masala_kulcha.jpg b/hotel_restaurant/static/img/masala_kulcha.jpg new file mode 100644 index 000000000..734d4d3b1 Binary files /dev/null and b/hotel_restaurant/static/img/masala_kulcha.jpg differ diff --git a/hotel_restaurant/static/img/muttter_paneer.png b/hotel_restaurant/static/img/muttter_paneer.png new file mode 100644 index 000000000..2ebf375da Binary files /dev/null and b/hotel_restaurant/static/img/muttter_paneer.png differ diff --git a/hotel_restaurant/static/img/paneer_bhurji.jpg b/hotel_restaurant/static/img/paneer_bhurji.jpg new file mode 100644 index 000000000..50f54eb86 Binary files /dev/null and b/hotel_restaurant/static/img/paneer_bhurji.jpg differ diff --git a/hotel_restaurant/static/img/paneer_butter_masala.jpg b/hotel_restaurant/static/img/paneer_butter_masala.jpg new file mode 100644 index 000000000..1e2a1efed Binary files /dev/null and b/hotel_restaurant/static/img/paneer_butter_masala.jpg differ diff --git a/hotel_restaurant/static/img/paneer_makhani.jpg b/hotel_restaurant/static/img/paneer_makhani.jpg new file mode 100644 index 000000000..76b241129 Binary files /dev/null and b/hotel_restaurant/static/img/paneer_makhani.jpg differ diff --git a/hotel_restaurant/static/img/paneer_tikka.png b/hotel_restaurant/static/img/paneer_tikka.png new file mode 100644 index 000000000..d1e1fc9c4 Binary files /dev/null and b/hotel_restaurant/static/img/paneer_tikka.png differ diff --git a/hotel_restaurant/static/img/pongal.jpg b/hotel_restaurant/static/img/pongal.jpg new file mode 100644 index 000000000..7ad735cd9 Binary files /dev/null and b/hotel_restaurant/static/img/pongal.jpg differ diff --git a/hotel_restaurant/static/img/tandoori-roti.jpg b/hotel_restaurant/static/img/tandoori-roti.jpg new file mode 100644 index 000000000..d170ae446 Binary files /dev/null and b/hotel_restaurant/static/img/tandoori-roti.jpg differ diff --git a/hotel_restaurant/static/img/upma.jpg b/hotel_restaurant/static/img/upma.jpg new file mode 100644 index 000000000..6efe9f076 Binary files /dev/null and b/hotel_restaurant/static/img/upma.jpg differ diff --git a/hotel_restaurant/static/img/uttapam.jpg b/hotel_restaurant/static/img/uttapam.jpg new file mode 100644 index 000000000..8179cc759 Binary files /dev/null and b/hotel_restaurant/static/img/uttapam.jpg differ diff --git a/hotel_restaurant/static/img/vada_sambhar.jpg b/hotel_restaurant/static/img/vada_sambhar.jpg new file mode 100644 index 000000000..42fbece9c Binary files /dev/null and b/hotel_restaurant/static/img/vada_sambhar.jpg differ diff --git a/hotel_restaurant/tests/__init__.py b/hotel_restaurant/tests/__init__.py new file mode 100644 index 000000000..6fcaf24e3 --- /dev/null +++ b/hotel_restaurant/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_hotel_restaurant diff --git a/hotel_restaurant/tests/test_hotel_restaurant.py b/hotel_restaurant/tests/test_hotel_restaurant.py new file mode 100644 index 000000000..521e56727 --- /dev/null +++ b/hotel_restaurant/tests/test_hotel_restaurant.py @@ -0,0 +1,126 @@ +# Copyright (C) 2022-TODAY Serpent Consulting Services Pvt. Ltd. (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from datetime import datetime + +from odoo.tests import common + + +class TestRestaurant(common.TransactionCase): + def setUp(self): + super(TestRestaurant, self).setUp() + self.menucard_type_obj = self.env["hotel.menucard.type"] + self.hotel_rest_reserv_obj = self.env["hotel.restaurant.reservation"] + self.hotel_kot_obj = self.env["hotel.restaurant.kitchen.order.tickets"] + self.rest_order_obj = self.env["hotel.restaurant.order.list"] + self.hotel_rest_order_obj = self.env["hotel.restaurant.order"] + self.hotel_reserv_order_obj = self.env["hotel.reservation.order"] + self.fooditem = self.env.ref("hotel_restaurant.hotel_fooditem_5") + self.fooditem_type = self.env.ref("hotel_restaurant.hotel_menucard_type_1") + self.rest_res = self.env.ref("hotel_restaurant.hotel_restaurant_reservation_1") + self.tablelist = self.env.ref("hotel_restaurant.hotel_reservation_order_line_0") + self.table1 = self.env.ref("hotel_restaurant.hotel_restaurant_tables_table1") + self.table0 = self.env.ref("hotel_restaurant.hotel_restaurant_tables_table0") + self.room1 = self.env.ref("point_of_sale.desk_organizer") + self.partner = self.env.ref("base.res_partner_4") + self.waiter = self.env.ref("base.res_partner_3") + self.menucard_type_1 = self.env["hotel.menucard.type"] + cur_date = datetime.now().strftime("%Y-%m-%d %H:%M:%S") + + self.menucard_type = self.menucard_type_obj.create( + {"name": "Punjabi Food Items Menu", "menu_id": self.fooditem_type.id} + ) + + self.menucard_type.name_get() + hotel_menucard_type = self.menucard_type.name_search("Punjabi") + self.assertEqual( + len(hotel_menucard_type), + 2, + "Incorrect search number result for name_search", + ) + + self.hotel_rest_order = self.hotel_rest_order_obj.create( + { + "customer_id": self.partner.id, + "room_id": self.room1.id, + "amount_subtotal": 500.00, + "amount_total": 500.00, + "waiter_id": self.waiter.id, + "table_nos_ids": [(6, 0, [self.table1.id, self.table0.id])], + "kitchen": 1, + "state": "draft", + "order_list_ids": [(6, 0, [self.tablelist.id])], + } + ) + + self.rest_order = self.rest_order_obj.create( + { + "menucard_id": self.fooditem.id, + "price_subtotal": 500.00, + "item_qty": 2, + "item_rate": 1000.00, + } + ) + + self.hotel_reserv_order = self.hotel_reserv_order_obj.create( + { + "order_number": "0RR/00001", + "reservation_id": self.rest_res.id, + "order_date": cur_date, + "waitername": self.waiter.id, + "amount_subtotal": 500.00, + "amount_total": 500.00, + "rests_ids": [(6, 0, [self.tablelist.id])], + "table_nos_ids": [(6, 0, [self.table1.id, self.table0.id])], + "kitchen": 1, + "state": "draft", + "order_list_ids": [(6, 0, [self.tablelist.id])], + } + ) + + def test_name_search(self): + self.menucard_type_1 = self.env["hotel.menucard.type"].create( + { + "name": "Test", + } + ) + self.env["hotel.menucard.type"].name_search( + "All FoodItems / Punjabi", [], "not like", None + ) + + def test_compute_price_subtotal(self): + self.rest_order._compute_price_subtotal() + + def test_on_change_item_name(self): + self.rest_order._onchange_item_name() + + def test_compute_amount_all_total_reserv(self): + self.hotel_reserv_order._compute_amount_all_total() + + def test_reservation_generate_kot(self): + self.hotel_reserv_order.reservation_generate_kot() + self.assertEqual(self.hotel_reserv_order.state == "order", True) + + def test_done_kot(self): + self.hotel_reserv_order.done_kot() + self.assertEqual(self.hotel_reserv_order.state == "done", True) + + def test_compute_amount_all_total_rest(self): + self.hotel_rest_order._compute_amount_all_total() + + def test_done_cancel(self): + self.hotel_rest_order.done_cancel() + self.assertEqual(self.hotel_rest_order.state == "cancel", True) + + def test_set_to_draft(self): + self.hotel_rest_order.set_to_draft() + self.assertEqual(self.hotel_rest_order.state == "draft", True) + + def test_generate_kot(self): + self.assertEqual(len(self.tablelist.ids), 1, "Please Give an Order") + self.hotel_rest_order.generate_kot() + self.assertEqual(self.hotel_rest_order.state == "order", True) + + def test_done_order_kot(self): + self.hotel_rest_order.done_order_kot() + self.assertEqual(self.hotel_rest_order.state == "done", True) diff --git a/hotel_restaurant/views/bill.xml b/hotel_restaurant/views/bill.xml new file mode 100644 index 000000000..223841a8c --- /dev/null +++ b/hotel_restaurant/views/bill.xml @@ -0,0 +1,302 @@ + + + + + + + + + + + diff --git a/hotel_restaurant/views/folio_order_report.xml b/hotel_restaurant/views/folio_order_report.xml new file mode 100644 index 000000000..96438b17b --- /dev/null +++ b/hotel_restaurant/views/folio_order_report.xml @@ -0,0 +1,348 @@ + + + + + + + + + + + diff --git a/hotel_restaurant/views/hotel_restaurant_sequence.xml b/hotel_restaurant/views/hotel_restaurant_sequence.xml new file mode 100644 index 000000000..5dabd6a1f --- /dev/null +++ b/hotel_restaurant/views/hotel_restaurant_sequence.xml @@ -0,0 +1,27 @@ + + + + + + + Hotel Order + hotel.restaurant.order + 0R/ + 5 + + + + Hotel Reservation + hotel.restaurant.reservation + R0/ + 5 + + + + Hotel Reservation + hotel.reservation.order + 0RR/ + 5 + + + diff --git a/hotel_restaurant/views/hotel_restaurant_view.xml b/hotel_restaurant/views/hotel_restaurant_view.xml new file mode 100644 index 000000000..2c8c6ac01 --- /dev/null +++ b/hotel_restaurant/views/hotel_restaurant_view.xml @@ -0,0 +1,1037 @@ + + + + + + + + hotel.folio1.form1.inherited + hotel.folio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hotel_restaurant_tables.form + hotel.restaurant.tables + +
+ + + + + + + +
+
+
+ + + + hotel_restaurant_tables.tree + hotel.restaurant.tables + + + + + + + + + + + hotel_restaurant_tables.search + hotel.restaurant.tables + + + + + + + + + + + + + + + Tables + hotel.restaurant.tables + form + tree,form + + + + + + + + hotel_restaurant_reservation.form + hotel.restaurant.reservation + +
+
+
+ +

+ +

+ + + + + + + + + + + + + + + + + + +
+
+
+
+ + + + hotel_restaurant_reservation.tree + hotel.restaurant.reservation + + + + + + + + + + + + + + + + + + hotel.restaurant.reservation.search + hotel.restaurant.reservation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Table Booking + hotel.restaurant.reservation + form + tree,form + + + + + + + + + hotel_reservation_order.form + hotel.reservation.order + +
+
+
+ +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + + + hotel_reservation_order.tree + hotel.reservation.order + + + + + + + + + + + + + + + + hotel.reservation.order.search + hotel.reservation.order + + + + + + + + + + + + + + + Order + hotel.reservation.order + + tree,form + + + + + + + + hotel_restaurant_order.form + hotel.restaurant.order + +
+
+
+ +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + + + hotel_restaurant_order.tree + hotel.restaurant.order + + + + + + + + + + + + + + + + hotel.restaurant.order.search + hotel.restaurant.order + + + + + + + + + + + + + + + Table Order + hotel.restaurant.order + form + tree,form + + + + + + + + + hotel_restaurant_kitchen_order_tickets.form + hotel.restaurant.kitchen.order.tickets + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + + hotel_restaurant_kitchen_order_tickets.tree + hotel.restaurant.kitchen.order.tickets + + + + + + + + + + + + + + + + hotel.restaurant.kitchen.order.tickets.search + + hotel.restaurant.kitchen.order.tickets + + + + + + + + + + + + + + + Kitchen Order Tickets + hotel.restaurant.kitchen.order.tickets + form + tree,form + + + + + + + + hotel_menucard_type_form + hotel.menucard.type + +
+ + + + + + + +
+
+
+ + + + hotel_menucard_type_list + hotel.menucard.type + + + + + + + + + + Food Item Type + hotel.menucard.type + form + tree,form + + + + + + + + hotel.menucard.form + hotel.menucard + +
+ + +
+
+

+ +

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + + + hotel.menucard.tree + hotel.menucard + + + + + + + + + + + + hotel.menucard.search + hotel.menucard + + + + + + + + + + + + + + + + Menucard Kanban + hotel.menucard + + + + + + + +
+
+ hotel menucard +
+
+

+ + + [ + + ] + + + +

+
+
    +
  • + Price: + +
  • +
  • + Category: + +
  • +
+
+
+ + + + + + + + + Food Item + hotel.menucard + form + kanban,tree,form + {'default_available_in_pos':0} + + + +

+ Click to Add Food Items +

+

+ No Food Items +

+
+
+ + + + diff --git a/hotel_restaurant/views/kot.xml b/hotel_restaurant/views/kot.xml new file mode 100644 index 000000000..5a4f8730e --- /dev/null +++ b/hotel_restaurant/views/kot.xml @@ -0,0 +1,109 @@ + + + + + + + + diff --git a/hotel_restaurant/views/res_table.xml b/hotel_restaurant/views/res_table.xml new file mode 100644 index 000000000..13829b570 --- /dev/null +++ b/hotel_restaurant/views/res_table.xml @@ -0,0 +1,65 @@ + + + + + + + diff --git a/hotel_restaurant/wizard/__init__.py b/hotel_restaurant/wizard/__init__.py new file mode 100644 index 000000000..ff84ab6de --- /dev/null +++ b/hotel_restaurant/wizard/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import hotel_restaurant_wizard diff --git a/hotel_restaurant/wizard/hotel_restaurant_wizard.py b/hotel_restaurant/wizard/hotel_restaurant_wizard.py new file mode 100644 index 000000000..0013f1868 --- /dev/null +++ b/hotel_restaurant/wizard/hotel_restaurant_wizard.py @@ -0,0 +1,53 @@ +# Copyright (C) 2023-TODAY Serpent Consulting Services Pvt. Ltd. (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class WizardHotelRestaurant(models.TransientModel): + + _name = "wizard.hotel.restaurant" + _description = "wizard.hotel.restaurant" + + date_start = fields.Datetime("Start Date", required=True) + date_end = fields.Datetime("End Date", required=True) + + def print_report(self): + data = { + "ids": self.ids, + "model": "hotel.restaurant.reservation", + "form": self.read(["date_start", "date_end"])[0], + } + return self.env.ref("hotel_restaurant.report_hotel_table_res").report_action( + self, data=data + ) + + +class FolioRestReservation(models.TransientModel): + _name = "folio.rest.reservation" + _description = "folio.rest.reservation" + _rec_name = "date_start" + + date_start = fields.Datetime("Start Date") + date_end = fields.Datetime("End Date") + check = fields.Boolean("With Details") + + def print_rest_report(self): + data = { + "ids": self.ids, + "model": "hotel.folio", + "form": self.read(["date_start", "date_end", "check"])[0], + } + return self.env.ref("hotel_restaurant.report_hotel_res_folio").report_action( + self, data=data + ) + + def print_reserv_report(self): + data = { + "ids": self.ids, + "model": "hotel.folio", + "form": self.read(["date_start", "date_end", "check"])[0], + } + return self.env.ref("hotel_restaurant.report_hotel_res_folio1").report_action( + self, data=data + ) diff --git a/hotel_restaurant/wizard/hotel_restaurant_wizard.xml b/hotel_restaurant/wizard/hotel_restaurant_wizard.xml new file mode 100644 index 000000000..fcd61c6ec --- /dev/null +++ b/hotel_restaurant/wizard/hotel_restaurant_wizard.xml @@ -0,0 +1,153 @@ + + + + + + + wizard.hotel.restaurant.form + wizard.hotel.restaurant + +
+ + +
+
+ +
+
+ + + + Table Reservation List + wizard.hotel.restaurant + form + form + new + + + + + + + view.folio.rest.reservation + folio.rest.reservation + +
+ + + + + +
+
+ +
+
+ + + + Restaurant Reports + folio.rest.reservation + form + form + new + + + + +
diff --git a/setup/hotel_restaurant/odoo/addons/hotel_restaurant b/setup/hotel_restaurant/odoo/addons/hotel_restaurant new file mode 120000 index 000000000..05fb72fce --- /dev/null +++ b/setup/hotel_restaurant/odoo/addons/hotel_restaurant @@ -0,0 +1 @@ +../../../../hotel_restaurant \ No newline at end of file diff --git a/setup/hotel_restaurant/setup.py b/setup/hotel_restaurant/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/hotel_restaurant/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)