diff --git a/crates/od-ontology/specs/UPSTREAM_WISHLIST.md b/crates/od-ontology/specs/UPSTREAM_WISHLIST.md index ebac9b4..bac45f0 100644 --- a/crates/od-ontology/specs/UPSTREAM_WISHLIST.md +++ b/crates/od-ontology/specs/UPSTREAM_WISHLIST.md @@ -694,3 +694,40 @@ side: emit-then-reparse should round-trip the projection's intent. **Not a request on the design session** — listed so a future od-codegen contributor knows the C++ side has a working pattern to copy from. + +## 2026-06-30 — recipe-bitmask probe surfaced two crate-path gaps + +> Filed by `tests/recipe_redundancy_probe.rs` (OGAR `D-RECIPE-BITMASK` / +> `PROBE-OGAR-AR-RECIPE-COLLAPSE`). The probe measures how much of Odoo's +> lifted behavioural arm collapses to the shared ActiveRecord-lifecycle +> recipe + a per-class override (OGAR = Open Graph **Active Record**, so the +> recipe IS the AR protocol). Two capture gaps cap the measurable collapse. + +### A · `ruff_python_spo` (the live-source CRATE path) drops `_inherit` · P2 + +The **corpus** (`spo_enrich.py`) already emits `inherits_from` (resolved via +lance-graph #526/#527 — slice_2 carries 8 edges). But the **crate** path that +`od_ontology::compile_source` uses — `ruff_python_spo::extract_from_source` → +`build_graph` — discards `RawClass.inherits` via `..Default::default()`, so a +**live-source** transpile sees no MRO at all. The two Odoo extraction paths +disagree on inheritance. + +- **Ask:** lift `RawClass.inherits` into the `Model` (emit `inherits_from`, + the same wire shape the corpus extractor and `ruff_ruby_spo` already use). + Low risk — the corpus extractor proves the shape; this just brings the crate + path to parity. +- **Why it matters for the recipe-bitmask:** inheritance is the biggest + collapse lever (inherited-default = clear bit). Without it on the live-source + path, the override-vs-inherit mask can't be computed from source — only the + shape/payload redundancy can (what the probe measures today, an upper bound). + +### B · no method-body hash / decorator-type capture · P3 + +The strict "redundant = content-hash-equal-to-default" test (lossless-DO §1) +needs **method-body identity**; today only `@api.depends` args + `reads` / +`raises` facts are captured (and only `@api.depends` among decorators — not +`@api.constrains` / `@api.onchange` / `@api.model` as distinct types). So the +probe can dedup on *shape + dependency-set*, not on *body*. A per-method body +hash (or a fuller decorator set) would let the probe measure TRUE behavioural +dedup, tightening the upper bound toward the real leftover. Optional — body +dedup can only LOWER the measured leftover, so its absence is conservative. diff --git a/crates/od-ontology/tests/recipe_chaining_collapse.rs b/crates/od-ontology/tests/recipe_chaining_collapse.rs new file mode 100644 index 0000000..add0467 --- /dev/null +++ b/crates/od-ontology/tests/recipe_chaining_collapse.rs @@ -0,0 +1,210 @@ +//! **PROBE — constructor-chaining collapse** (the second axis of `D-RECIPE-BITMASK`). +//! +//! The slice_2 probe (`recipe_redundancy_probe.rs`) measured ONE collapse axis: +//! within a class's own behavioural methods, shape + dependency-set dedup → +//! 45.7% collapse / **54.3% leftover**. It explicitly could NOT measure the +//! *inheritance* axis, because slice_2's base mixins (`mail_thread`, …) were +//! out-of-slice. +//! +//! Constructor chaining over `LazyLock` ClassViews is that second axis: a +//! derived class's ClassView is built by chaining its base ClassViews (each a +//! cached constant) + its own delta, so **inherited recipe parts are stored once +//! at the base and shared by every subclass** — they are not per-class leftover. +//! This probe measures that axis on the FULL Odoo corpus's inheritance manifest +//! (where the bases ARE present), so the chaining benefit the slice could not +//! see becomes a real number. +//! +//! # Metric (storage of the materialised method recipe) +//! +//! * **naive flatten** (no chaining): each class materialises its full recipe = +//! own methods + a COPY of every transitive ancestor's methods. +//! `naive = Σ_M (|own(M)| + Σ_{A∈anc(M)} |own(A)|)`. +//! * **chained**: every method is stored once at its defining class; subclasses +//! reach inherited methods through the shared base constant. +//! `chained = Σ_M |own(M)|` = total `has_function`. +//! * **collapse% = 1 − chained/naive** = the inherited mass that naive flatten +//! repeats and chaining shares. **leftover% = chained/naive** = the genuine +//! own fraction. +//! +//! This is ORTHOGONAL to the slice_2 within-class 54.3%: the two axes stack +//! (a class's genuine leftover is its own-after-shape-dedup methods, and even +//! those are stored once and shared wherever inherited). Default build, offline. +//! +//! # Honest bound +//! +//! The corpus's mixin harvest is shallow (popular bases carry few captured +//! methods — e.g. `mail_thread` has a handful, not its real ~100), so the +//! measured collapse is a **lower bound** on the real-world chaining benefit: +//! richer base extraction can only raise it. Fixture provenance: +//! `scratchpad/extract_manifest.rs` projected `lance-graph`'s +//! `odoo_ontology.spo.ndjson` to its `has_function` + `inherits_from` lines. + +// Pedantic lints relaxed for this reporting probe: it prints a detailed +// human-facing report (long fn), computes display percentages from small counts +// (benign usize→f64), and its module docs are narrative (bare identifiers). +#![allow(clippy::too_many_lines, clippy::cast_precision_loss, clippy::doc_markdown)] + +use std::collections::{BTreeMap, BTreeSet}; + +use od_ontology::{parse_ndjson, MethodKind, Triple}; + +fn strip_ns(iri: &str) -> &str { + iri.split_once(':').map_or(iri, |(_, r)| r) +} + +fn manifest() -> Vec { + let ndjson = include_str!("../../../data/odoo_inheritance_manifest.ndjson"); + parse_ndjson(ndjson).expect("inheritance manifest parses") +} + +/// Transitive ancestors of `m` over the `inherits_from` DAG, cycle-safe. +fn ancestors(m: &str, parents: &BTreeMap>) -> BTreeSet { + let mut seen: BTreeSet = BTreeSet::new(); + let mut stack: Vec = parents.get(m).into_iter().flatten().cloned().collect(); + while let Some(p) = stack.pop() { + if p == m { + continue; + } + if seen.insert(p.clone()) { + if let Some(ps) = parents.get(&p) { + for pp in ps { + if !seen.contains(pp) { + stack.push(pp.clone()); + } + } + } + } + } + seen.remove(m); + seen +} + +fn is_behavioral(method_iri: &str) -> bool { + matches!( + MethodKind::classify(method_iri), + MethodKind::Compute | MethodKind::Check + ) +} + +#[test] +fn constructor_chaining_collapse() { + let triples = manifest(); + + // own methods per class, and the inherits_from DAG. + let mut own: BTreeMap> = BTreeMap::new(); + let mut own_beh: BTreeMap> = BTreeMap::new(); + let mut parents: BTreeMap> = BTreeMap::new(); + let mut all: BTreeSet = BTreeSet::new(); + let (mut n_hf, mut n_inh) = (0usize, 0usize); + + for t in &triples { + match t.p.as_str() { + "has_function" => { + n_hf += 1; + let owner = strip_ns(&t.s).to_string(); + let method = strip_ns(&t.o).to_string(); + if is_behavioral(&method) { + own_beh.entry(owner.clone()).or_default().insert(method.clone()); + } + own.entry(owner.clone()).or_default().insert(method); + all.insert(owner); + } + "inherits_from" => { + n_inh += 1; + let child = strip_ns(&t.s).to_string(); + let base = strip_ns(&t.o).to_string(); + parents.entry(child.clone()).or_default().insert(base.clone()); + all.insert(child); + all.insert(base); + } + _ => {} + } + } + + let count = |m: &BTreeMap>, k: &str| m.get(k).map_or(0, BTreeSet::len); + + // Per-class naive (own + inherited) vs chained (own once). + let mut chained = 0usize; + let mut naive = 0usize; + let mut chained_beh = 0usize; + let mut naive_beh = 0usize; + let mut with_ancestors = 0usize; + let mut max_depth = 0usize; + // base → number of subclasses inheriting it (transitively) × its own size. + let mut base_inherited_copies: BTreeMap = BTreeMap::new(); + + for m in &all { + let o = count(&own, m); + let ob = count(&own_beh, m); + chained += o; + chained_beh += ob; + let anc = ancestors(m, &parents); + if !anc.is_empty() { + with_ancestors += 1; + max_depth = max_depth.max(anc.len()); + } + let inh: usize = anc.iter().map(|a| count(&own, a)).sum(); + let inh_b: usize = anc.iter().map(|a| count(&own_beh, a)).sum(); + naive += o + inh; + naive_beh += ob + inh_b; + for a in &anc { + *base_inherited_copies.entry(a.clone()).or_default() += count(&own, a); + } + } + + let pct = |num: usize, den: usize| -> f64 { + if den == 0 { + 0.0 + } else { + 100.0 * num as f64 / den as f64 + } + }; + let collapse = 100.0 - pct(chained, naive); + let leftover = pct(chained, naive); + let collapse_beh = 100.0 - pct(chained_beh, naive_beh); + let leftover_beh = pct(chained_beh, naive_beh); + + // Top bases by inherited-copy contribution (where the collapse comes from). + let mut top: Vec<(&String, &usize)> = base_inherited_copies + .iter() + .filter(|(_, &c)| c > 0) + .collect(); + top.sort_by(|a, b| b.1.cmp(a.1).then(a.0.cmp(b.0))); + + eprintln!("──── constructor-chaining collapse (full Odoo inheritance manifest) ────"); + eprintln!("classes (with methods or inheritance) : {}", all.len()); + eprintln!(" with ≥1 ancestor : {with_ancestors} (max chain depth {max_depth})"); + eprintln!("inherits_from edges : {n_inh}"); + eprintln!("has_function (methods) : {n_hf}"); + eprintln!("── full method recipe ──"); + eprintln!("chained (stored once) : {chained}"); + eprintln!("naive flatten (own + inherited copies): {naive}"); + eprintln!("CHAINING COLLAPSE : {collapse:.1}% (leftover {leftover:.1}%)"); + eprintln!("── behavioural subset (Compute + Check) ──"); + eprintln!("chained : {chained_beh}"); + eprintln!("naive flatten : {naive_beh}"); + eprintln!("CHAINING COLLAPSE (behavioural) : {collapse_beh:.1}% (leftover {leftover_beh:.1}%)"); + eprintln!("── top bases by inherited copies (where the collapse lives) ──"); + for (b, c) in top.iter().take(6) { + eprintln!(" {b:<32} {c} inherited copies"); + } + eprintln!("────────────────────────────────────────────────────────────────────"); + eprintln!("vs the slice_2 within-class baseline (54.3% own-only behavioural leftover,"); + eprintln!("NO inheritance): this is the ORTHOGONAL inheritance axis the slice could not"); + eprintln!("see — it stacks with the within-class dedup. LOWER bound: the corpus mixin"); + eprintln!("harvest is shallow (real mail.thread ~100 methods, captured handful)."); + + // ── Structural invariants (true regardless of the measured ratio) ── + assert_eq!(n_hf, 3328, "manifest has_function count drifted from the fixture"); + assert_eq!(n_inh, 166, "manifest inherits_from count drifted from the fixture"); + assert!(all.len() > 100, "full corpus spans many classes, saw {}", all.len()); + assert!(with_ancestors > 0, "expected classes with inheritance, saw {with_ancestors}"); + assert!(naive >= chained, "naive flatten must be ≥ chained storage"); + assert_eq!(chained, n_hf, "chained storage = every method once = total has_function"); + assert!( + collapse > 0.0, + "inheritance present → chaining must collapse some inherited mass (saw {collapse:.1}%)" + ); + assert!((0.0..=100.0).contains(&leftover)); + assert!((0.0..=100.0).contains(&leftover_beh)); +} diff --git a/crates/od-ontology/tests/recipe_redundancy_probe.rs b/crates/od-ontology/tests/recipe_redundancy_probe.rs new file mode 100644 index 0000000..2a4c2fe --- /dev/null +++ b/crates/od-ontology/tests/recipe_redundancy_probe.rs @@ -0,0 +1,267 @@ +//! **PROBE — AR-lifecycle-override redundancy** (the recipe-bitmask conjecture). +//! +//! Consumer-side falsifier for OGAR's `E-RECIPE-BITMASK` / +//! `D-RECIPE-BITMASK` conjecture: *OGAR is Open Graph **Active Record**, so the +//! canonical "recipe" IS the AR lifecycle protocol; a best-shaped (AR-canonical) +//! consumer stores that recipe once and carries only a per-class override +//! bitmask + the genuine deltas, collapsing the irreducible behavioral +//! "leftover" from ~15% toward ~7%.* +//! +//! # What it measures +//! +//! Odoo's lifecycle slots are the underscore-prefix method families +//! (`_compute_*` reactive recompute, `_check_*`/raising guards, `_onchange_*` +//! cooperative loops, `_inverse_*` write-backs, `_search_*`). The behavioral +//! arm (`src/ogar_actions.rs::corpus_to_actions`) lifts exactly two of these +//! into `ActionDef`s, and the recipe-bitmask claim is visible directly in their +//! shape: +//! * **guards** (a method that `raises`) are byte-identical except their +//! address — `KausalSpec::LifecycleTrigger{before_save}` + `Reject`. The +//! recipe (one shape) IS the whole spec, so a guard collapses to +//! `(recipe-shape, address)` with ZERO per-class payload. Pure bitmask. +//! * **computes** (`_compute_*`, not raising) share one shape and differ only +//! in their `Depends.paths` (the lifted `@api.depends` = the method's +//! `reads_field` set). The path-set is the genuine per-class delta; two +//! computes with an identical path-set dedup to one. +//! +//! So: behavioral methods partition into `recipe-collapsible` +//! (guards + computes whose path-set is shared with another compute) and +//! `genuine-leftover` (computes with a unique path-set). The probe reports both +//! ratios — the headline number the conjecture predicts. +//! +//! # Honest bounds (why this is an UPPER bound, and why Rails is the clean test) +//! +//! 1. Method *bodies* are not captured by the ruff Python frontend (only the +//! `reads`/`raises` facts), so "redundant" here means *same lifecycle +//! shape + same dependency set* — not content-hash-identical bodies +//! (lossless-DO §1's stricter test). True body dedup can only lower the +//! leftover further, never raise it. +//! 2. inherited-default-vs-override is unmeasurable on this slice. The corpus +//! *does* carry `inherits_from` (8 edges in slice_2), but every base mixin +//! it points at (`mail_thread`, `sequence_mixin`, `analytic_mixin`, …) is +//! OUT-OF-SLICE — so the bases' method sets aren't present to dedup an +//! override against. (Separately, the live-source `ruff_python_spo` crate +//! path — `compile_source` — drops `_inherit` in `build_graph` entirely.) +//! The clean measurement lives on the Rails/OpenProject side, where +//! `ruff_ruby_spo` captures `callbacks`/`validations`/`sti` as first-class +//! `Model` data — see `openproject-nexgen-rs/.claude/handovers/`. +//! +//! Default build — no `ogar-emit`, no git deps — so it runs offline and in CI. +//! Mirrors the classification in `corpus_to_actions` (raises ⇒ guard; else +//! `MethodKind::Compute` ⇒ compute); the `ogar-emit`-gated assertion at the end +//! pins the mirror to the real lift so the two can never silently drift. + +// Pedantic lints relaxed for this reporting probe: it prints a detailed +// human-facing report (long fn), computes display percentages from small counts +// (benign usize→f64), and its module docs are narrative (bare identifiers). +#![allow(clippy::too_many_lines, clippy::cast_precision_loss, clippy::doc_markdown)] + +use std::collections::{BTreeMap, BTreeSet}; + +use od_ontology::{model_of, parse_ndjson, MethodKind, Triple}; + +/// Strip a known namespace prefix (`odoo:` / `ogit:` / `exc:`) — mirrors the +/// crate-private `triple::strip_ns` (not re-exported), used only for map keys. +fn strip_ns(iri: &str) -> &str { + iri.split_once(':').map_or(iri, |(_, r)| r) +} + +fn corpus() -> Vec { + // Same richest committed corpus the `corpus_to_actions` unit test uses: + // account_move + account_move_line + res_partner + res_company (2 739 rows). + let ndjson = include_str!("../../../data/slice_2.spo.ndjson"); + parse_ndjson(ndjson).expect("slice 2 corpus parses") +} + +/// The lifted behavioral arm, partitioned exactly as `corpus_to_actions` would. +struct Arm { + models: BTreeSet, + methods: BTreeSet, + guards: BTreeSet, + /// compute method IRI → its `reads_field` path-set (the `Depends.paths`). + computes: BTreeMap>, +} + +fn lift(triples: &[Triple]) -> Arm { + let mut methods: BTreeSet = BTreeSet::new(); + let mut raises: BTreeSet = BTreeSet::new(); + let mut reads: BTreeMap> = BTreeMap::new(); + + for t in triples { + match t.p.as_str() { + "has_function" => { + methods.insert(strip_ns(&t.o).to_string()); + } + "raises" => { + raises.insert(strip_ns(&t.s).to_string()); + } + "reads_field" => { + reads + .entry(strip_ns(&t.s).to_string()) + .or_default() + .insert(strip_ns(&t.o).to_string()); + } + _ => {} + } + } + + let mut models: BTreeSet = BTreeSet::new(); + let mut guards: BTreeSet = BTreeSet::new(); + let mut computes: BTreeMap> = BTreeMap::new(); + + for m in &methods { + models.insert(model_of(m).to_string()); + // raises wins over compute (matches `raises_wins_over_compute_classification`). + if raises.contains(m) { + guards.insert(m.clone()); + } else if MethodKind::classify(m) == MethodKind::Compute { + computes.insert(m.clone(), reads.get(m).cloned().unwrap_or_default()); + } + // else: onchange / inverse / search / other — not the behavioral arm. + } + + Arm { + models, + methods, + guards, + computes, + } +} + +#[test] +fn ar_lifecycle_override_redundancy() { + let triples = corpus(); + let arm = lift(&triples); + + let n_models = arm.models.len(); + let n_methods = arm.methods.len(); + let n_guards = arm.guards.len(); + let n_computes = arm.computes.len(); + + // Split computes by whether their reads were captured. An EMPTY path-set is + // a data gap (the Python frontend didn't infer the method's reads), NOT + // evidence of a shared dependency — counting all empties as "deduped to one" + // would inflate the collapse with missing data. Exclude them from the + // headline; report them separately as "unresolved". + let nonempty: Vec<&BTreeSet> = + arm.computes.values().filter(|p| !p.is_empty()).collect(); + let n_compute_nonempty = nonempty.len(); + let n_compute_empty = n_computes - n_compute_nonempty; + let distinct_nonempty: BTreeSet<&BTreeSet> = nonempty.iter().copied().collect(); + let n_distinct_nonempty = distinct_nonempty.len(); + let dedup_nonempty = n_compute_nonempty - n_distinct_nonempty; + let total_paths: usize = nonempty.iter().map(|p| p.len()).sum(); + let avg_paths = if n_compute_nonempty > 0 { + total_paths as f64 / n_compute_nonempty as f64 + } else { + 0.0 + }; + + // Recipe shapes present in the lifted arm (guard-shape, compute-shape). + let recipe_shapes = usize::from(n_guards > 0) + usize::from(n_computes > 0); + + // Headline is computed over the RESOLVED behavioral arm only + // (guards + non-empty computes); empty computes are excluded as a data gap. + // distinct payloads you must store = 1 shared guard recipe (all guards + // identical) + the distinct non-empty compute path-sets. + // recipe-collapsible = everything else (guard duplicates + compute dups). + let resolved = n_guards + n_compute_nonempty; + let distinct_payloads = usize::from(n_guards > 0) + n_distinct_nonempty; + let genuine_leftover = distinct_payloads; + let recipe_collapsible = resolved.saturating_sub(distinct_payloads); + + let pct = |num: usize| -> f64 { + if resolved == 0 { + 0.0 + } else { + 100.0 * num as f64 / resolved as f64 + } + }; + let leftover_pct = pct(genuine_leftover); + let collapse_pct = pct(recipe_collapsible); + + eprintln!("──── AR-lifecycle-override redundancy (slice_2 corpus) ────"); + eprintln!("models : {n_models}"); + eprintln!("methods (all) : {n_methods}"); + eprintln!("behavioral arm : {} (guards {n_guards} + computes {n_computes})", n_guards + n_computes); + eprintln!(" computes resolved : {n_compute_nonempty} (reads captured)"); + eprintln!(" computes unresolved : {n_compute_empty} (reads NOT captured — excluded from headline)"); + eprintln!("recipe shapes : {recipe_shapes} (1 guard-shape + 1 compute-shape) carry all {} methods", n_guards + n_computes); + eprintln!("guard arm : {n_guards} guards → 1 shared recipe shape, 0 per-class payload"); + eprintln!("compute path-sets : {n_distinct_nonempty} distinct of {n_compute_nonempty} ({dedup_nonempty} dedup) · avg {avg_paths:.1} paths"); + // Guard-arm full collapse: all guards share ONE recipe shape, so the arm + // contributes exactly 1 distinct payload — N guards = 1 recipe + N bits. + let guard_collapsed = n_guards.saturating_sub(1); + eprintln!("── headline (over {resolved} RESOLVED behavioral methods) ──"); + eprintln!("recipe-collapsible : {recipe_collapsible} ({collapse_pct:.1}%)"); + eprintln!("genuine leftover : {genuine_leftover} ({leftover_pct:.1}%)"); + eprintln!("───────────────────────────────────────────────────────────"); + eprintln!("VERDICT (Odoo / Python, UPPER bound):"); + eprintln!( + " • guard arm collapses FULLY — {n_guards} guards → 1 shared recipe ({guard_collapsed} hidden)." + ); + eprintln!( + " • compute arm is mostly genuine — {n_distinct_nonempty} distinct path-sets of\n \ + {n_compute_nonempty} resolved computes; recipe-bitmask hides only {dedup_nonempty}." + ); + eprintln!( + " • leftover {leftover_pct:.1}% >> 7% target → REFUTES the strong reading\n \ + (\"Odoo collapses to 7%\") and CONFIRMS the conjecture's SCOPING: 7% is the\n \ + best-shaped Rails-AR case, not compute-heavy Odoo-Python." + ); + eprintln!( + " • why upper bound: inherited-vs-override is unmeasurable HERE — the corpus\n \ + carries inherits_from, but every base mixin (mail_thread, sequence_mixin, …)\n \ + is OUT-OF-SLICE, so inherited method sets aren't present to dedup against;\n \ + the live-source `ruff_python_spo` path drops `_inherit` outright; and method\n \ + bodies aren't captured. All three can only LOWER the leftover. Clean\n \ + measurement = the Rails/OpenProject probe (callbacks as first-class data)." + ); + + // ── Structural invariants (true regardless of the measured ratio) ── + assert!(n_models >= 4, "slice_2 spans 4 models, saw {n_models}"); + assert!( + n_computes > 50, + "expected many compute methods in slice_2, saw {n_computes}" + ); + assert!(n_guards > 0, "expected at least one guard method, saw {n_guards}"); + assert!( + recipe_shapes <= 2, + "the lifted behavioral arm has exactly two recipe shapes (guard, compute); saw {recipe_shapes}" + ); + assert!(resolved > 0, "no resolved behavioral methods to measure"); + // The strong mechanism claim that DOES hold for Odoo: the guard arm is + // perfectly redundant — every guard is the same AR-lifecycle recipe, so the + // whole arm folds to a single shared shape + per-class address bits. + assert_eq!( + distinct_payloads, + 1 + n_distinct_nonempty, + "guard arm must contribute exactly one shared recipe payload" + ); + // Ratios are a measurement, not a gate — only that they're well-formed. + assert!((0.0..=100.0).contains(&leftover_pct)); + assert!( + (leftover_pct + collapse_pct - 100.0).abs() < 1e-6, + "leftover% + collapse% must sum to 100 (saw {leftover_pct} + {collapse_pct})" + ); + + // ── ogar-emit consistency pin: the default-build mirror above must agree + // with the REAL lift (`corpus_action_rows`), so the two classifications can + // never silently drift, and every guard must render ONE recipe detail. + #[cfg(feature = "ogar-emit")] + { + let rows = od_ontology::corpus_action_rows(&triples); + let guard_rows: Vec<&(String, String, String, String)> = + rows.iter().filter(|r| r.2 == "guard").collect(); + let depends_rows = rows.iter().filter(|r| r.2 == "depends").count(); + assert_eq!(guard_rows.len(), n_guards, "mirror guard count vs real lift"); + assert_eq!(depends_rows, n_computes, "mirror compute count vs real lift"); + let distinct_guard_detail: BTreeSet<&str> = + guard_rows.iter().map(|r| r.3.as_str()).collect(); + assert_eq!( + distinct_guard_detail.len(), + 1, + "all guards must share ONE recipe shape (full collapse), saw {distinct_guard_detail:?}" + ); + } +} diff --git a/data/odoo_inheritance_manifest.ndjson b/data/odoo_inheritance_manifest.ndjson new file mode 100644 index 0000000..becf51e --- /dev/null +++ b/data/odoo_inheritance_manifest.ndjson @@ -0,0 +1,3494 @@ +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._check_account_code","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._check_account_is_bank_journal_bank_account","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._check_account_type_sales_purchase_journal","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._check_company_consistency","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._check_journal_consistency","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._check_parent_not_circular","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._check_reconcile","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_account_group","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_account_root","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_account_tags","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_account_type","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_code","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_code_prefix_end","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_code_prefix_start","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_include_initial_balance","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_internal_group","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_placeholder_code","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_reconcile","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._compute_tds_tcs_features","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._constrains_reconcile","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._constraint_prefix_overlap","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._onchange_account_type","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"has_function","o":"odoo:account_account._onchange_name","f":1.0,"c":0.95} +{"s":"odoo:account_account_tag","p":"has_function","o":"odoo:account_account_tag._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:account_account_tag","p":"has_function","o":"odoo:account_account_tag._compute_report_expression_id","f":1.0,"c":0.95} +{"s":"odoo:account_analytic_account","p":"has_function","o":"odoo:account_analytic_account._compute_invoice_count","f":1.0,"c":0.95} +{"s":"odoo:account_analytic_account","p":"has_function","o":"odoo:account_analytic_account._compute_project_count","f":1.0,"c":0.95} +{"s":"odoo:account_analytic_account","p":"has_function","o":"odoo:account_analytic_account._compute_vendor_bill_count","f":1.0,"c":0.95} +{"s":"odoo:account_analytic_distribution_model","p":"has_function","o":"odoo:account_analytic_distribution_model._compute_prefix_placeholder","f":1.0,"c":0.95} +{"s":"odoo:account_analytic_line","p":"has_function","o":"odoo:account_analytic_line._check_general_account_id","f":1.0,"c":0.95} +{"s":"odoo:account_analytic_line","p":"has_function","o":"odoo:account_analytic_line._compute_general_account_id","f":1.0,"c":0.95} +{"s":"odoo:account_analytic_line","p":"has_function","o":"odoo:account_analytic_line._compute_partner_id","f":1.0,"c":0.95} +{"s":"odoo:account_analytic_line","p":"has_function","o":"odoo:account_analytic_line.on_change_unit_amount","f":1.0,"c":0.95} +{"s":"odoo:account_analytic_plan","p":"has_function","o":"odoo:account_analytic_plan._compute_display_account_prefix","f":1.0,"c":0.95} +{"s":"odoo:account_analytic_plan","p":"has_function","o":"odoo:account_analytic_plan._compute_prefix_placeholder","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_balance_end","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_balance_end_real","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_balance_start","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_date","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_first_line_index","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_is_complete","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_is_valid","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_journal_id","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_name","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement","p":"has_function","o":"odoo:account_bank_statement._compute_problem_description","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement_line","p":"has_function","o":"odoo:account_bank_statement_line._check_amounts_currencies","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement_line","p":"has_function","o":"odoo:account_bank_statement_line._compute_amount_currency","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement_line","p":"has_function","o":"odoo:account_bank_statement_line._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement_line","p":"has_function","o":"odoo:account_bank_statement_line._compute_internal_index","f":1.0,"c":0.95} +{"s":"odoo:account_bank_statement_line","p":"has_function","o":"odoo:account_bank_statement_line._compute_is_reconciled","f":1.0,"c":0.95} +{"s":"odoo:account_cash_rounding","p":"has_function","o":"odoo:account_cash_rounding.validate_rounding","f":1.0,"c":0.95} +{"s":"odoo:account_code_mapping","p":"has_function","o":"odoo:account_code_mapping._compute_code","f":1.0,"c":0.95} +{"s":"odoo:account_edi_document","p":"has_function","o":"odoo:account_edi_document._compute_edi_content","f":1.0,"c":0.95} +{"s":"odoo:account_incoterms","p":"has_function","o":"odoo:account_incoterms._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_ddt_ids","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_fiscal_position_id","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_incoterm_location","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_is_purchase_matched","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_l10n_ch_qr_is_valid","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_l10n_in_display_higher_tcs_button","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_l10n_in_gst_treatment","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_l10n_in_partner_gstin_status_and_date","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_l10n_in_show_gstin_status","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_l10n_in_state_id","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_l10n_in_warning","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_l10n_in_withholding_line_ids","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_origin_po_count","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_purchase_line_warn_msg","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_purchase_order_name","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._compute_purchase_warning_text","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._onchange_name_warning","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._onchange_partner_id","f":1.0,"c":0.95} +{"s":"odoo:account_invoice","p":"has_function","o":"odoo:account_invoice._onchange_purchase_auto_complete","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_afip_pos_number","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_afip_pos_system","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_auto_post_draft_entries","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_bank_account","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_company_consistency","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_fik_creditor_number","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_incoming_einvoice_notification_email","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_l10n_se_invoice_ocr_length","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_payment_method_line_ids_multiplicity","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_type","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_type_default_account_id_type","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._check_type_for_peppol_journal","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_accounting_date","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_available_payment_method_ids","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_check_next_number","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_code","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_compatible_edi_ids","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_debit_sequence","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_default_account_type","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_edi_format_ids","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_inbound_payment_method_line_ids","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_l10n_ar_afip_pos_system","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_l10n_ar_is_pos","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_l10n_dk_fik_creditor_number","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_l10n_ec_require_emission","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_l10n_hr_is_mer_journal","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_l10n_latam_company_use_documents","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_l10n_tr_default_sales_return_account_id","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_name_placeholder","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_outbound_payment_method_line_ids","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_payment_sequence","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_refund_sequence","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_selected_payment_method_codes","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_show_fetch_in_einvoices_button","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_show_refresh_out_einvoices_status_button","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._compute_suspense_account_id","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._onchange_company","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._onchange_incoming_einvoice_notification_email","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._onchange_set_short_name","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal._onchange_type","f":1.0,"c":0.95} +{"s":"odoo:account_journal","p":"has_function","o":"odoo:account_journal.check_use_document","f":1.0,"c":0.95} +{"s":"odoo:account_journal_dashboard","p":"has_function","o":"odoo:account_journal_dashboard._kanban_dashboard_graph","f":1.0,"c":0.95} +{"s":"odoo:account_lock_exception","p":"has_function","o":"odoo:account_lock_exception._compute_lock_dates","f":1.0,"c":0.95} +{"s":"odoo:account_lock_exception","p":"has_function","o":"odoo:account_lock_exception._compute_state","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_expense_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_fapiao","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_invoice_currency_rate","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_invoice_type_document_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_journal_move_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_l10n_hr_process_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_l10n_it_edi_doi_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_l10n_latam_document_number_is_numeric","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_l10n_latam_documents","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_moves_use_documents","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._check_posted_if_active","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_abnormal_warnings","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_adjusting_entries_count","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_adjusting_entry_origin_label","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_adjusting_entry_origin_moves_count","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_alerts","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_always_tax_exigible","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_amount","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_amount_paid","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_amount_total_words","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_authorized_transaction_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_auto_post_until","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_bank_partner_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_carrier_info","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_checked","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_commercial_partner_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_date","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_debit_count","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_delivery_date","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_direction_sign","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_display_inactive_currency_warning","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_display_link_qr_code","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_display_qr_code","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_display_send_button","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_duplicated_ref_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_edi_error_count","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_edi_error_message","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_edi_show_abandon_cancel_button","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_edi_show_cancel_button","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_edi_show_force_cancel_button","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_edi_state","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_edi_web_services_to_process","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_eta_long_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_eta_qr_code_str","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_eta_response_data","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_expected_currency_rate","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_filename","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_fiscal_position_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_from_l10n_gr_edi_document_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_has_reconciled_entries","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_hide_post_button","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_highest_name","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_highlight_send_button","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_incoterm","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_incoterm_location","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_invoice_currency_rate","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_invoice_date_due","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_invoice_default_sale_person","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_invoice_filter_type_domain","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_invoice_has_outstanding","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_invoice_incoterm_placeholder","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_invoice_partner_display_info","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_invoice_payment_term_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_is_being_sent","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_is_draft_duplicated_ref_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_is_print","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_is_storno","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_journal_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_kode_transaksi","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_ar_afip_concept","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_ar_withholding_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_bg_document_number","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_bg_document_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_edi_facturae_reason_code","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_edi_is_required","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_edi_verifactu_available_clave_regimens","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_edi_verifactu_clave_regimen","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_edi_verifactu_qr_code","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_edi_verifactu_show_cancel_button","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_edi_verifactu_state","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_edi_verifactu_warning","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_is_simplified","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_payment_means","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_tbai_is_required","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_es_tbai_state","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_fr_is_company_french","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_gcc_line_name","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_gr_edi_alerts","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_gr_edi_available_inv_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_gr_edi_enable_fields","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_gr_edi_inv_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_gr_edi_need_fields","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_gr_edi_payment_method","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_hr_payment_unreported","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_hr_process_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_hu_edi_attachment_filename","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_id_coretax_add_info","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_id_coretax_efaktur_available","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_id_coretax_facility_info","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_in_ewaybill_details","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_in_state_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_document_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_edi_button_label","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_edi_doi_amount","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_edi_doi_date","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_edi_doi_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_edi_doi_use","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_edi_doi_warning","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_edi_is_self_invoice","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_partner_is_public_administration","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_partner_pa","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_it_payment_method","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_jo_edi_computed_xml","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_jo_edi_invoice_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_jo_edi_is_needed","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_jo_edi_uuid","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_ke_cu_show_send_button","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_latam_available_document_types","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_latam_document_number","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_latam_document_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_latam_manual_document_number","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_latam_use_documents","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_my_edi_display_tax_exemption_reason","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_my_edi_state","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_my_invoice_need_edi","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_ro_edi_state","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_rs_edi_is_eligible","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_rs_edi_uuid","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_rs_tax_date_obligations_code","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_tr_exemption_code_domain_list","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_tr_exemption_code_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_tr_gib_invoice_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_tw_edi_invoice_type","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_tw_edi_is_b2b","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_tw_edi_is_zero_tax_rate","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_vn_edi_invoice_state","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_l10n_vn_edi_invoice_symbol","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_landed_costs_visible","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_love_code","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_message_html","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_name","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_name_placeholder","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_narration","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_need_cancel_request","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_needed_terms","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_nemhandel_can_send_response","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_nemhandel_move_state","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_next_payment_date","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_no_followup","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_origin_pos_count","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_origin_so_count","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_partner_bank_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_partner_credit_warning","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_partner_shipping_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_payment_count","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_payment_state","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_payment_term_details","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_payments_widget_reconciled_info","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_peppol_can_send_response","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_peppol_is_sent","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_peppol_move_state","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_preferred_payment_method_line_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_qr_code_str","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_quick_edit_mode","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_quick_encoding_vals","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_reconciled_payment_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_sale_warning_text","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_secured","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_show_delivery_date","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_show_journal","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_show_payment_term_details","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_show_reset_to_draft_button","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_show_taxable_supply_date","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_status_in_payment","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_suitable_journal_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_tax_amount","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_tax_country_code","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_tax_country_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_tax_lock_date_message","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_tax_totals","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_taxable_supply_date","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_taxable_supply_date_placeholder","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_taxes_legal_notes","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_team_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_timesheet_count","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_timesheet_total_duration","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_transaction_count","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_type_name","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_website_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._compute_wip_production_count","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._inverse_company_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._inverse_currency_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._inverse_invoice_payment_term_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._inverse_journal_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._inverse_l10n_latam_document_number","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._inverse_partner_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._inverse_payment_reference","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._l10n_cl_onchange_journal","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._l10n_se_check_payment_reference","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_afip_responsibility","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_date","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_fpos_id_show_update_fpos","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_invoice_cash_rounding_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_invoice_vendor_bill","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_is_landed_costs_line","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_journal_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_l10n_latam_document_type_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_name_warning","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_partner_id","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_partner_journal","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_product_id_landed_costs","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_quick_edit_line_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._onchange_quick_edit_total_amount","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._quick_edit_mode_suggest_invoice_date","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._require_bill_date_for_autopost","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move._validate_taxes_country","f":1.0,"c":0.95} +{"s":"odoo:account_move","p":"has_function","o":"odoo:account_move.compute_move_sent_values","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._check_caba_non_caba_shared_tags","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._check_l10n_tr_ctsp_number","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._check_off_balance","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._check_payable_receivable","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_allowed_uom_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_amount_currency","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_amount_residual","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_analytic_distribution","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_balance","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_currency_rate","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_debit_credit","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_discount_allocation_key","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_discount_allocation_needed","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_display_type","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_epd_key","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_epd_needed","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_has_invalid_analytics","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_is_refund","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_is_storno","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_gr_edi_available_cls_category","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_gr_edi_available_cls_type","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_gr_edi_cls_category","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_gr_edi_cls_type","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_gr_edi_cls_vat","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_gr_edi_detail_type","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_gr_edi_need_exemption_category","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_gr_edi_tax_exemption_category","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_hr_product_id_kpd","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_in_hsn_code","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_in_withhold_tax_amount","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_my_edi_classification_code","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_l10n_tr_ctsp_number","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_name","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_no_followup","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_payment_date","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_price_unit","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_quantity","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_reconciled_lines_excluding_exchange_diff_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_reconciled_lines_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_sale_line_warn_msg","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_same_currency","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_sequence","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_tax_ids","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_term_key","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_totals","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._compute_translated_product_name","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._constrains_deductible_amount","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._constrains_matching_number","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._inverse_account_id","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._inverse_amount_currency","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._inverse_credit","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._inverse_debit","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._inverse_partner_id","f":1.0,"c":0.95} +{"s":"odoo:account_move_line","p":"has_function","o":"odoo:account_move_line._inverse_product_id","f":1.0,"c":0.95} +{"s":"odoo:account_move_reversal","p":"has_function","o":"odoo:account_move_reversal._compute_document_type","f":1.0,"c":0.95} +{"s":"odoo:account_move_reversal","p":"has_function","o":"odoo:account_move_reversal._compute_documents_info","f":1.0,"c":0.95} +{"s":"odoo:account_move_reversal","p":"has_function","o":"odoo:account_move_reversal._compute_l10n_es_tbai_is_required","f":1.0,"c":0.95} +{"s":"odoo:account_move_reversal","p":"has_function","o":"odoo:account_move_reversal._compute_l10n_latam_manual_document_number","f":1.0,"c":0.95} +{"s":"odoo:account_move_reversal","p":"has_function","o":"odoo:account_move_reversal._onchange_l10n_latam_document_number","f":1.0,"c":0.95} +{"s":"odoo:account_partial_reconcile","p":"has_function","o":"odoo:account_partial_reconcile._check_required_computed_currencies","f":1.0,"c":0.95} +{"s":"odoo:account_partial_reconcile","p":"has_function","o":"odoo:account_partial_reconcile._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:account_partial_reconcile","p":"has_function","o":"odoo:account_partial_reconcile._compute_max_date","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._check_move_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._check_payment_method_line_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_amount","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_amount_company_currency_signed","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_amount_signed","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_available_journal_ids","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_available_partner_bank_ids","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_check_amount_in_words","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_check_number","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_destination_account_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_display_withholding","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_duplicate_payment_ids","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_journal_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_l10n_ch_reference_warning_msg","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_l10n_latam_check_warning_msg","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_l10n_pl_verification_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_name","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_outstanding_account_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_partner_bank_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_payment_method_line_fields","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_payment_method_line_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_payment_receipt_title","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_qr_code","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_reconciliation_status","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_should_withhold_tax","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_show_check_number","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_show_require_partner_bank","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_stat_buttons_from_reconciliation","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_state","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_suitable_payment_token_ids","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_use_electronic_payment_method","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._compute_withholding_hide_tax_base_account","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._constrains_check_number","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._constrains_check_number_unique","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._onchange_set_payment_token_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment","p":"has_function","o":"odoo:account_payment._onchange_withholding_line_ids","f":1.0,"c":0.95} +{"s":"odoo:account_payment_method","p":"has_function","o":"odoo:account_payment_method._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:account_payment_method","p":"has_function","o":"odoo:account_payment_method._compute_name","f":1.0,"c":0.95} +{"s":"odoo:account_payment_method","p":"has_function","o":"odoo:account_payment_method._ensure_unique_name_for_journal","f":1.0,"c":0.95} +{"s":"odoo:account_payment_method_line","p":"has_function","o":"odoo:account_payment_method_line._compute_name","f":1.0,"c":0.95} +{"s":"odoo:account_payment_method_line","p":"has_function","o":"odoo:account_payment_method_line._compute_payment_provider_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_amount","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_display_withholding","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_l10n_ar_adjustment_warning","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_l10n_ar_net_amount","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_l10n_ar_withholding_ids","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_payment_token_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_should_withhold_tax","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_suitable_payment_token_ids","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_use_electronic_payment_method","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_withholding_hide_tax_base_account","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_withholding_line_ids","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_withholding_net_amount","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._compute_withholding_outstanding_account_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register","p":"has_function","o":"odoo:account_payment_register._onchange_withholding_line_ids","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register_withholding_line","p":"has_function","o":"odoo:account_payment_register_withholding_line._compute_comodel_currency_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register_withholding_line","p":"has_function","o":"odoo:account_payment_register_withholding_line._compute_comodel_date","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register_withholding_line","p":"has_function","o":"odoo:account_payment_register_withholding_line._compute_comodel_payment_type","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register_withholding_line","p":"has_function","o":"odoo:account_payment_register_withholding_line._compute_comodel_percentage_paid_factor","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register_withholding_line","p":"has_function","o":"odoo:account_payment_register_withholding_line._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register_withholding_line","p":"has_function","o":"odoo:account_payment_register_withholding_line._compute_original_amounts","f":1.0,"c":0.95} +{"s":"odoo:account_payment_register_withholding_line","p":"has_function","o":"odoo:account_payment_register_withholding_line._compute_type_tax_use","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._check_lines","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._check_percent","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._check_valid_char_value","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._compute_days","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._compute_discount_computation","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._compute_display_days_next_month","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._compute_example_invalid","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._compute_example_preview","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._compute_fiscal_country_codes","f":1.0,"c":0.95} +{"s":"odoo:account_payment_term","p":"has_function","o":"odoo:account_payment_term._compute_value_amount","f":1.0,"c":0.95} +{"s":"odoo:account_payment_withholding_line","p":"has_function","o":"odoo:account_payment_withholding_line._compute_comodel_currency_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment_withholding_line","p":"has_function","o":"odoo:account_payment_withholding_line._compute_comodel_date","f":1.0,"c":0.95} +{"s":"odoo:account_payment_withholding_line","p":"has_function","o":"odoo:account_payment_withholding_line._compute_comodel_full_amount","f":1.0,"c":0.95} +{"s":"odoo:account_payment_withholding_line","p":"has_function","o":"odoo:account_payment_withholding_line._compute_comodel_payment_type","f":1.0,"c":0.95} +{"s":"odoo:account_payment_withholding_line","p":"has_function","o":"odoo:account_payment_withholding_line._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:account_payment_withholding_line","p":"has_function","o":"odoo:account_payment_withholding_line._compute_original_amounts","f":1.0,"c":0.95} +{"s":"odoo:account_payment_withholding_line","p":"has_function","o":"odoo:account_payment_withholding_line._compute_type_tax_use","f":1.0,"c":0.95} +{"s":"odoo:account_reconcile_model","p":"has_function","o":"odoo:account_reconcile_model._check_match_label_param","f":1.0,"c":0.95} +{"s":"odoo:account_reconcile_model","p":"has_function","o":"odoo:account_reconcile_model._compute_can_be_proposed","f":1.0,"c":0.95} +{"s":"odoo:account_reconcile_model","p":"has_function","o":"odoo:account_reconcile_model._compute_float_amount","f":1.0,"c":0.95} +{"s":"odoo:account_reconcile_model","p":"has_function","o":"odoo:account_reconcile_model._compute_partner_mapping","f":1.0,"c":0.95} +{"s":"odoo:account_reconcile_model","p":"has_function","o":"odoo:account_reconcile_model._onchange_amount_type","f":1.0,"c":0.95} +{"s":"odoo:account_reconcile_model","p":"has_function","o":"odoo:account_reconcile_model._validate_amount","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._check_carryover_target","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._check_formula","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._check_parent_line","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._compute_auditable","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._compute_default_availability_condition","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._compute_hierarchy_level","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._compute_horizontal_split_side","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._compute_report_id","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._compute_use_sections","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._compute_user_groupby","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._onchange_availability_condition","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._validate_availability_condition","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._validate_engine","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._validate_groupby","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._validate_groupby_no_child","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._validate_parent_sequence","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._validate_root_report_id","f":1.0,"c":0.95} +{"s":"odoo:account_report","p":"has_function","o":"odoo:account_report._validate_section_report_ids","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._check_amount_type","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._check_amount_type_code_formula","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._check_children_scope","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._check_company_consistency","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._check_special_tax_type_constrains","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_country_id","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_display_alternative_taxes_field","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_factor","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_formula_decoded_info","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_has_negative_factor","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_invoice_repartition_line_ids","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_is_domestic","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_l10n_ar_type_tax_use","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_l10n_hu_tax_reason","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_l10n_in_gst_tax_type","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_l10n_mx_tax_type","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_l10n_my_tax_type","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_l10n_tw_edi_tax_type","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_price_include","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_refund_repartition_line_ids","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_repartition_lines_str","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_tag_ids_domain","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_tax_group_id","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_tax_label","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_ubl_cii_requires_exemption_reason","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._compute_use_in_tax_closing","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._constrains_cash_basis_transition_account","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._constrains_name","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._inverse_l10n_ar_type_tax_use","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._l10n_it_edi_check_exoneration_with_no_tax","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._l10n_sa_constrain_is_retention","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._onchange_amount","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._onchange_is_withholding_tax_on_payment","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._onchange_l10n_it_withholding_type","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._onchange_l10n_ke_item_code_id","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._onchange_l10n_tw_edi_tax_type","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._onchange_repartition_type","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._onchange_ubl_cii_tax_category_code","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._validate_repartition_lines","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax._validate_withholding","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax.onchange_amount","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax.onchange_amount_type","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax.onchange_price_include","f":1.0,"c":0.95} +{"s":"odoo:account_tax","p":"has_function","o":"odoo:account_tax.validate_tax_group_id","f":1.0,"c":0.95} +{"s":"odoo:account_withholding_line","p":"has_function","o":"odoo:account_withholding_line._compute_account_id","f":1.0,"c":0.95} +{"s":"odoo:account_withholding_line","p":"has_function","o":"odoo:account_withholding_line._compute_amount","f":1.0,"c":0.95} +{"s":"odoo:account_withholding_line","p":"has_function","o":"odoo:account_withholding_line._compute_base_amount","f":1.0,"c":0.95} +{"s":"odoo:account_withholding_line","p":"has_function","o":"odoo:account_withholding_line._compute_original_amounts","f":1.0,"c":0.95} +{"s":"odoo:account_withholding_line","p":"has_function","o":"odoo:account_withholding_line._compute_placeholder_type","f":1.0,"c":0.95} +{"s":"odoo:account_withholding_line","p":"has_function","o":"odoo:account_withholding_line._constrains_account_id","f":1.0,"c":0.95} +{"s":"odoo:account_withholding_line","p":"has_function","o":"odoo:account_withholding_line._constrains_base_amount","f":1.0,"c":0.95} +{"s":"odoo:analytic","p":"has_function","o":"odoo:analytic._compute_display_account_prefix","f":1.0,"c":0.95} +{"s":"odoo:analytic_account","p":"has_function","o":"odoo:analytic_account._check_company_consistency","f":1.0,"c":0.95} +{"s":"odoo:analytic_account","p":"has_function","o":"odoo:analytic_account._compute_bom_count","f":1.0,"c":0.95} +{"s":"odoo:analytic_account","p":"has_function","o":"odoo:analytic_account._compute_debit_credit_balance","f":1.0,"c":0.95} +{"s":"odoo:analytic_account","p":"has_function","o":"odoo:analytic_account._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:analytic_account","p":"has_function","o":"odoo:analytic_account._compute_production_count","f":1.0,"c":0.95} +{"s":"odoo:analytic_account","p":"has_function","o":"odoo:analytic_account._compute_purchase_order_count","f":1.0,"c":0.95} +{"s":"odoo:analytic_account","p":"has_function","o":"odoo:analytic_account._compute_workorder_count","f":1.0,"c":0.95} +{"s":"odoo:analytic_distribution_model","p":"has_function","o":"odoo:analytic_distribution_model._check_company_accounts","f":1.0,"c":0.95} +{"s":"odoo:analytic_line","p":"has_function","o":"odoo:analytic_line._check_account_id","f":1.0,"c":0.95} +{"s":"odoo:analytic_mixin","p":"has_function","o":"odoo:analytic_mixin._compute_distribution_analytic_account_ids","f":1.0,"c":0.95} +{"s":"odoo:analytic_plan","p":"has_function","o":"odoo:analytic_plan._compute_all_analytic_account_count","f":1.0,"c":0.95} +{"s":"odoo:analytic_plan","p":"has_function","o":"odoo:analytic_plan._compute_analytic_account_count","f":1.0,"c":0.95} +{"s":"odoo:analytic_plan","p":"has_function","o":"odoo:analytic_plan._compute_children_count","f":1.0,"c":0.95} +{"s":"odoo:analytic_plan","p":"has_function","o":"odoo:analytic_plan._compute_complete_name","f":1.0,"c":0.95} +{"s":"odoo:analytic_plan","p":"has_function","o":"odoo:analytic_plan._compute_root_id","f":1.0,"c":0.95} +{"s":"odoo:analytic_plan","p":"has_function","o":"odoo:analytic_plan._onchange_parent_id","f":1.0,"c":0.95} +{"s":"odoo:badge","p":"has_function","o":"odoo:badge._compute_survey_id","f":1.0,"c":0.95} +{"s":"odoo:bank_account_verification","p":"has_function","o":"odoo:bank_account_verification._compute_partner_bank_account_number","f":1.0,"c":0.95} +{"s":"odoo:bank_account_verification","p":"has_function","o":"odoo:bank_account_verification._compute_partner_vat","f":1.0,"c":0.95} +{"s":"odoo:bank_account_verification","p":"has_function","o":"odoo:bank_account_verification._compute_verification_date","f":1.0,"c":0.95} +{"s":"odoo:barcode_events_mixin","p":"has_function","o":"odoo:barcode_events_mixin._on_barcode_scanned","f":1.0,"c":0.95} +{"s":"odoo:barcode_nomenclature","p":"has_function","o":"odoo:barcode_nomenclature._check_pattern","f":1.0,"c":0.95} +{"s":"odoo:barcode_rule","p":"has_function","o":"odoo:barcode_rule._check_pattern","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._check_action_server_model","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._check_time_trigger","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._check_trigger","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._check_trigger_state","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_action_server_ids","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_filter_domain","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_filter_pre_domain","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_on_change_field_ids","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_trg_date_calendar_id","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_trg_date_id","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_trg_date_range_data","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_trg_field_ref","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_trg_field_ref_model_name","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_trg_selection_field_id","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_trigger","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_trigger_field_ids","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._compute_url","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._onchange_domain","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._onchange_trg_date_range_data","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._onchange_trigger","f":1.0,"c":0.95} +{"s":"odoo:base_automation","p":"has_function","o":"odoo:base_automation._onchange_trigger_or_actions","f":1.0,"c":0.95} +{"s":"odoo:base_document_layout","p":"has_function","o":"odoo:base_document_layout._compute_custom_colors","f":1.0,"c":0.95} +{"s":"odoo:base_document_layout","p":"has_function","o":"odoo:base_document_layout._compute_empty_company_details","f":1.0,"c":0.95} +{"s":"odoo:base_document_layout","p":"has_function","o":"odoo:base_document_layout._compute_logo_colors","f":1.0,"c":0.95} +{"s":"odoo:base_document_layout","p":"has_function","o":"odoo:base_document_layout._compute_preview","f":1.0,"c":0.95} +{"s":"odoo:base_document_layout","p":"has_function","o":"odoo:base_document_layout._onchange_company_id","f":1.0,"c":0.95} +{"s":"odoo:base_document_layout","p":"has_function","o":"odoo:base_document_layout._onchange_custom_colors","f":1.0,"c":0.95} +{"s":"odoo:base_document_layout","p":"has_function","o":"odoo:base_document_layout._onchange_logo","f":1.0,"c":0.95} +{"s":"odoo:base_document_layout","p":"has_function","o":"odoo:base_document_layout._onchange_report_layout_id","f":1.0,"c":0.95} +{"s":"odoo:calendar","p":"has_function","o":"odoo:calendar._compute_google_id","f":1.0,"c":0.95} +{"s":"odoo:calendar","p":"has_function","o":"odoo:calendar._compute_videocall_source","f":1.0,"c":0.95} +{"s":"odoo:calendar_alarm","p":"has_function","o":"odoo:calendar_alarm._compute_duration_minutes","f":1.0,"c":0.95} +{"s":"odoo:calendar_alarm","p":"has_function","o":"odoo:calendar_alarm._compute_mail_template_id","f":1.0,"c":0.95} +{"s":"odoo:calendar_alarm","p":"has_function","o":"odoo:calendar_alarm._compute_sms_template_id","f":1.0,"c":0.95} +{"s":"odoo:calendar_alarm","p":"has_function","o":"odoo:calendar_alarm._onchange_duration_interval","f":1.0,"c":0.95} +{"s":"odoo:calendar_attendee","p":"has_function","o":"odoo:calendar_attendee._compute_common_name","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._check_closing_date","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_attendees_count","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_current_attendee","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_dates","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_display_description","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_duration","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_effective_privacy","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_invalid_email_partner_ids","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_is_organizer_alone","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_recurrence","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_rrule_type_ui","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_should_show_status","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_stop","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_unavailable_partner_ids","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_user_can_edit","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_videocall_location","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._compute_videocall_source","f":1.0,"c":0.95} +{"s":"odoo:calendar_event","p":"has_function","o":"odoo:calendar_event._onchange_date","f":1.0,"c":0.95} +{"s":"odoo:calendar_recurrence","p":"has_function","o":"odoo:calendar_recurrence._compute_dtstart","f":1.0,"c":0.95} +{"s":"odoo:calendar_recurrence","p":"has_function","o":"odoo:calendar_recurrence._compute_name","f":1.0,"c":0.95} +{"s":"odoo:calendar_recurrence","p":"has_function","o":"odoo:calendar_recurrence._compute_rrule","f":1.0,"c":0.95} +{"s":"odoo:card_campaign","p":"has_function","o":"odoo:card_campaign._compute_card_stats","f":1.0,"c":0.95} +{"s":"odoo:card_campaign","p":"has_function","o":"odoo:card_campaign._compute_image_preview","f":1.0,"c":0.95} +{"s":"odoo:card_campaign","p":"has_function","o":"odoo:card_campaign._compute_mailing_count","f":1.0,"c":0.95} +{"s":"odoo:card_campaign","p":"has_function","o":"odoo:card_campaign._compute_render_model","f":1.0,"c":0.95} +{"s":"odoo:card_campaign","p":"has_function","o":"odoo:card_campaign._compute_res_model","f":1.0,"c":0.95} +{"s":"odoo:card_card","p":"has_function","o":"odoo:card_card._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:card_card","p":"has_function","o":"odoo:card_card._compute_res_model","f":1.0,"c":0.95} +{"s":"odoo:certificate","p":"has_function","o":"odoo:certificate._compute_is_valid","f":1.0,"c":0.95} +{"s":"odoo:certificate","p":"has_function","o":"odoo:certificate._compute_pem_certificate","f":1.0,"c":0.95} +{"s":"odoo:certificate","p":"has_function","o":"odoo:certificate._compute_private_key","f":1.0,"c":0.95} +{"s":"odoo:certificate","p":"has_function","o":"odoo:certificate._constrains_certificate_key_compatibility","f":1.0,"c":0.95} +{"s":"odoo:certificate","p":"has_function","o":"odoo:certificate._constrains_certificate_loaded","f":1.0,"c":0.95} +{"s":"odoo:chatbot_script","p":"has_function","o":"odoo:chatbot_script._check_question_selection","f":1.0,"c":0.95} +{"s":"odoo:chatbot_script","p":"has_function","o":"odoo:chatbot_script._compute_first_step_warning","f":1.0,"c":0.95} +{"s":"odoo:chatbot_script","p":"has_function","o":"odoo:chatbot_script._onchange_script_step_ids","f":1.0,"c":0.95} +{"s":"odoo:chatbot_script_answer","p":"has_function","o":"odoo:chatbot_script_answer._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:chatbot_script_step","p":"has_function","o":"odoo:chatbot_script_step._compute_is_forward_operator","f":1.0,"c":0.95} +{"s":"odoo:chatbot_script_step","p":"has_function","o":"odoo:chatbot_script_step._compute_is_forward_operator_child","f":1.0,"c":0.95} +{"s":"odoo:chatbot_script_step","p":"has_function","o":"odoo:chatbot_script_step._compute_name","f":1.0,"c":0.95} +{"s":"odoo:chatbot_script_step","p":"has_function","o":"odoo:chatbot_script_step._compute_triggering_answer_ids","f":1.0,"c":0.95} +{"s":"odoo:ciusro_document","p":"has_function","o":"odoo:ciusro_document._compute_show_fetch_status_button","f":1.0,"c":0.95} +{"s":"odoo:cloud_storage_migration_report","p":"has_function","o":"odoo:cloud_storage_migration_report._compute_has_attachment_rel","f":1.0,"c":0.95} +{"s":"odoo:cloud_storage_migration_report","p":"has_function","o":"odoo:cloud_storage_migration_report._compute_res_model_name","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._check_audit_trail_restriction","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._check_fiscalyear_last_day","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._check_set_account_price_include","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_account_enabled_tax_country_ids","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_account_fiscal_country_group_codes","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_account_storno","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_company_registry_placeholder","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_company_vat_placeholder","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_display_account_storno","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_domestic_fiscal_position_id","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_force_restrictive_audit_trail","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_invoice_terms_html","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_l10n_in_hsn_code_digit","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_l10n_in_parent_based_features","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_multi_vat_foreign_country","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_user_fiscalyear_lock_date","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_user_hard_lock_date","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_user_purchase_lock_date","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_user_sale_lock_date","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company._compute_user_tax_lock_date","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company.compute_account_tax_fiscal_country","f":1.0,"c":0.95} +{"s":"odoo:company","p":"has_function","o":"odoo:company.onchange_vat","f":1.0,"c":0.95} +{"s":"odoo:cpv_code","p":"has_function","o":"odoo:cpv_code._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_mining_request","p":"has_function","o":"odoo:crm_iap_lead_mining_request._compute_available_state_ids","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_mining_request","p":"has_function","o":"odoo:crm_iap_lead_mining_request._compute_lead_count","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_mining_request","p":"has_function","o":"odoo:crm_iap_lead_mining_request._compute_team_id","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_mining_request","p":"has_function","o":"odoo:crm_iap_lead_mining_request._compute_tooltip","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_mining_request","p":"has_function","o":"odoo:crm_iap_lead_mining_request._onchange_available_state_ids","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_mining_request","p":"has_function","o":"odoo:crm_iap_lead_mining_request._onchange_company_size_max","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_mining_request","p":"has_function","o":"odoo:crm_iap_lead_mining_request._onchange_company_size_min","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_mining_request","p":"has_function","o":"odoo:crm_iap_lead_mining_request._onchange_contact_number","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_mining_request","p":"has_function","o":"odoo:crm_iap_lead_mining_request._onchange_country_ids","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_mining_request","p":"has_function","o":"odoo:crm_iap_lead_mining_request._onchange_lead_number","f":1.0,"c":0.95} +{"s":"odoo:crm_iap_lead_seniority","p":"has_function","o":"odoo:crm_iap_lead_seniority._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._check_won_validity","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_commercial_partner_id","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_company_currency","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_contact_name","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_date_last_stage_update","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_date_open","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_date_partner_assign","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_day_close","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_day_open","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_email_domain_criterion","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_email_from","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_email_state","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_function","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_is_automated_probability","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_is_partner_visible","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_lang_active_count","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_lang_id","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_meeting_display","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_name","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_partner_address_values","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_partner_email_update","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_partner_name","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_partner_phone_update","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_phone","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_phone_state","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_potential_lead_duplicates","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_probabilities","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_prorated_revenue","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_recurring_revenue_monthly","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_recurring_revenue_monthly_prorated","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_recurring_revenue_prorated","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_registration_count","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_sale_data","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_show_enrich_button","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_stage_id","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_team_id","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_user_company_ids","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_visitor_page_count","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_visitor_sessions_count","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_website","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._compute_won_status","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._onchange_commercial_partner_id","f":1.0,"c":0.95} +{"s":"odoo:crm_lead","p":"has_function","o":"odoo:crm_lead._onchange_phone_validation","f":1.0,"c":0.95} +{"s":"odoo:crm_reveal_rule","p":"has_function","o":"odoo:crm_reveal_rule._check_regex_url","f":1.0,"c":0.95} +{"s":"odoo:crm_stage","p":"has_function","o":"odoo:crm_stage._compute_team_count","f":1.0,"c":0.95} +{"s":"odoo:crm_stage","p":"has_function","o":"odoo:crm_stage._onchange_is_won","f":1.0,"c":0.95} +{"s":"odoo:crm_team","p":"has_function","o":"odoo:crm_team._compute_assignment_max","f":1.0,"c":0.95} +{"s":"odoo:crm_team","p":"has_function","o":"odoo:crm_team._compute_is_membership_multi","f":1.0,"c":0.95} +{"s":"odoo:crm_team","p":"has_function","o":"odoo:crm_team._compute_lead_all_assigned_month_count","f":1.0,"c":0.95} +{"s":"odoo:crm_team","p":"has_function","o":"odoo:crm_team._compute_member_company_ids","f":1.0,"c":0.95} +{"s":"odoo:crm_team","p":"has_function","o":"odoo:crm_team._compute_member_ids","f":1.0,"c":0.95} +{"s":"odoo:crm_team","p":"has_function","o":"odoo:crm_team._compute_member_warning","f":1.0,"c":0.95} +{"s":"odoo:crm_team","p":"has_function","o":"odoo:crm_team._constrains_assignment_domain","f":1.0,"c":0.95} +{"s":"odoo:crm_team","p":"has_function","o":"odoo:crm_team._constrains_company_members","f":1.0,"c":0.95} +{"s":"odoo:crm_team","p":"has_function","o":"odoo:crm_team._onchange_use_leads_opportunities","f":1.0,"c":0.95} +{"s":"odoo:crm_team_member","p":"has_function","o":"odoo:crm_team_member._compute_is_membership_multi","f":1.0,"c":0.95} +{"s":"odoo:crm_team_member","p":"has_function","o":"odoo:crm_team_member._compute_lead_day_count","f":1.0,"c":0.95} +{"s":"odoo:crm_team_member","p":"has_function","o":"odoo:crm_team_member._compute_lead_month_count","f":1.0,"c":0.95} +{"s":"odoo:crm_team_member","p":"has_function","o":"odoo:crm_team_member._compute_member_warning","f":1.0,"c":0.95} +{"s":"odoo:crm_team_member","p":"has_function","o":"odoo:crm_team_member._compute_user_company_ids","f":1.0,"c":0.95} +{"s":"odoo:crm_team_member","p":"has_function","o":"odoo:crm_team_member._compute_user_in_teams_ids","f":1.0,"c":0.95} +{"s":"odoo:crm_team_member","p":"has_function","o":"odoo:crm_team_member._constrains_assignment_domain","f":1.0,"c":0.95} +{"s":"odoo:crm_team_member","p":"has_function","o":"odoo:crm_team_member._constrains_assignment_domain_preferred","f":1.0,"c":0.95} +{"s":"odoo:crm_team_member","p":"has_function","o":"odoo:crm_team_member._constrains_company_membership","f":1.0,"c":0.95} +{"s":"odoo:crm_team_member","p":"has_function","o":"odoo:crm_team_member._constrains_membership","f":1.0,"c":0.95} +{"s":"odoo:data_recycle_model","p":"has_function","o":"odoo:data_recycle_model._check_recycle_action","f":1.0,"c":0.95} +{"s":"odoo:data_recycle_model","p":"has_function","o":"odoo:data_recycle_model._compute_domain","f":1.0,"c":0.95} +{"s":"odoo:data_recycle_model","p":"has_function","o":"odoo:data_recycle_model._compute_name","f":1.0,"c":0.95} +{"s":"odoo:data_recycle_record","p":"has_function","o":"odoo:data_recycle_record._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:data_recycle_record","p":"has_function","o":"odoo:data_recycle_record._compute_name","f":1.0,"c":0.95} +{"s":"odoo:ddt","p":"has_function","o":"odoo:ddt._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:declaration_of_intent","p":"has_function","o":"odoo:declaration_of_intent._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:declaration_of_intent","p":"has_function","o":"odoo:declaration_of_intent._compute_invoiced","f":1.0,"c":0.95} +{"s":"odoo:declaration_of_intent","p":"has_function","o":"odoo:declaration_of_intent._compute_not_yet_invoiced","f":1.0,"c":0.95} +{"s":"odoo:declaration_of_intent","p":"has_function","o":"odoo:declaration_of_intent._compute_remaining","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._check_in_store_dm_has_warehouses_when_published","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._check_tags","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._check_warehouses_have_same_company","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._compute_can_generate_return","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._compute_fixed_price","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._compute_is_mondialrelay","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._compute_supports_shipping_insurance","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._onchange_can_generate_return","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._onchange_country_ids","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._onchange_integration_level","f":1.0,"c":0.95} +{"s":"odoo:delivery_carrier","p":"has_function","o":"odoo:delivery_carrier._onchange_return_label_on_delivery","f":1.0,"c":0.95} +{"s":"odoo:delivery_price_rule","p":"has_function","o":"odoo:delivery_price_rule._compute_name","f":1.0,"c":0.95} +{"s":"odoo:digest","p":"has_function","o":"odoo:digest._compute_is_subscribed","f":1.0,"c":0.95} +{"s":"odoo:digest","p":"has_function","o":"odoo:digest._onchange_periodicity","f":1.0,"c":0.95} +{"s":"odoo:discuss_call_history","p":"has_function","o":"odoo:discuss_call_history._compute_duration_hour","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_avatar_128","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_avatar_cache_key","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_channel_name_member_ids","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_channel_partner_ids","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_duration","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_group_public_id","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_has_crm_lead","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_invitation_url","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_invited_member_ids","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_is_editable","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_is_member","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_agent_history_ids","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_agent_partner_ids","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_agent_providing_help_history","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_agent_requesting_help_history","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_bot_history_ids","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_bot_partner_ids","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_customer_history_ids","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_customer_partner_ids","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_is_escalated","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_outcome","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_start_hour","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_status","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_livechat_week_day","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_member_count","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_message_count","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._compute_self_member_id","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._constraint_from_message_id","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._constraint_group_id_channel","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._constraint_parent_channel_id","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._constraint_partners_chat","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel","p":"has_function","o":"odoo:discuss_channel._constraint_subscription_department_ids_channel","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel_member","p":"has_function","o":"odoo:discuss_channel_member._compute_agent_expertise_ids","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel_member","p":"has_function","o":"odoo:discuss_channel_member._compute_chatbot_script_id","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel_member","p":"has_function","o":"odoo:discuss_channel_member._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel_member","p":"has_function","o":"odoo:discuss_channel_member._compute_is_pinned","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel_member","p":"has_function","o":"odoo:discuss_channel_member._compute_livechat_member_type","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel_member","p":"has_function","o":"odoo:discuss_channel_member._compute_message_unread","f":1.0,"c":0.95} +{"s":"odoo:discuss_channel_member","p":"has_function","o":"odoo:discuss_channel_member._contrains_no_public_member","f":1.0,"c":0.95} +{"s":"odoo:efaktur_document","p":"has_function","o":"odoo:efaktur_document._compute_name","f":1.0,"c":0.95} +{"s":"odoo:employee","p":"has_function","o":"odoo:employee._check_work_contact_id","f":1.0,"c":0.95} +{"s":"odoo:employee","p":"has_function","o":"odoo:employee._compute_license_plate","f":1.0,"c":0.95} +{"s":"odoo:equipment","p":"has_function","o":"odoo:equipment._compute_equipment_assign","f":1.0,"c":0.95} +{"s":"odoo:equipment","p":"has_function","o":"odoo:equipment._compute_owner","f":1.0,"c":0.95} +{"s":"odoo:event_booth","p":"has_function","o":"odoo:event_booth._compute_contact_email","f":1.0,"c":0.95} +{"s":"odoo:event_booth","p":"has_function","o":"odoo:event_booth._compute_contact_name","f":1.0,"c":0.95} +{"s":"odoo:event_booth","p":"has_function","o":"odoo:event_booth._compute_contact_phone","f":1.0,"c":0.95} +{"s":"odoo:event_booth","p":"has_function","o":"odoo:event_booth._compute_is_available","f":1.0,"c":0.95} +{"s":"odoo:event_booth_category","p":"has_function","o":"odoo:event_booth_category._check_service_tracking","f":1.0,"c":0.95} +{"s":"odoo:event_booth_category","p":"has_function","o":"odoo:event_booth_category._compute_image_1920","f":1.0,"c":0.95} +{"s":"odoo:event_booth_category","p":"has_function","o":"odoo:event_booth_category._compute_price","f":1.0,"c":0.95} +{"s":"odoo:event_booth_category","p":"has_function","o":"odoo:event_booth_category._compute_price_incl","f":1.0,"c":0.95} +{"s":"odoo:event_booth_category","p":"has_function","o":"odoo:event_booth_category._compute_price_reduce","f":1.0,"c":0.95} +{"s":"odoo:event_booth_category","p":"has_function","o":"odoo:event_booth_category._compute_price_reduce_taxinc","f":1.0,"c":0.95} +{"s":"odoo:event_booth_category","p":"has_function","o":"odoo:event_booth_category._onchange_use_sponsor","f":1.0,"c":0.95} +{"s":"odoo:event_booth_registration","p":"has_function","o":"odoo:event_booth_registration._compute_contact_email","f":1.0,"c":0.95} +{"s":"odoo:event_booth_registration","p":"has_function","o":"odoo:event_booth_registration._compute_contact_name","f":1.0,"c":0.95} +{"s":"odoo:event_booth_registration","p":"has_function","o":"odoo:event_booth_registration._compute_contact_phone","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._check_closing_date","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._check_event_url","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._check_slots_dates","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._check_website_id","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_address_inline","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_address_search","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_booth_menu","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_community_menu","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_date_tz","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_booth_category_available_ids","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_booth_category_ids","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_booth_count","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_booth_ids","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_mail_ids","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_register_url","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_registrations_open","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_registrations_sold_out","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_registrations_started","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_share_url","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_slot_count","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_ticket_ids","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_event_url","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_exhibitor_menu","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_field_is_one_day","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_is_finished","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_is_ongoing","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_is_participating","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_is_visible_on_website","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_kanban_state","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_lead_count","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_note","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_question_ids","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_sale_price_total","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_seats","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_seats_limited","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_seats_max","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_start_sale_date","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_tag_ids","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_ticket_instructions","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_time_data","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_tracks_tag_ids","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_website_menu","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_website_menu_data","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_website_track","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_website_track_proposal","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._compute_website_url","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._onchange_event_url","f":1.0,"c":0.95} +{"s":"odoo:event_event","p":"has_function","o":"odoo:event_event._onchange_seats_max","f":1.0,"c":0.95} +{"s":"odoo:event_event_ticket","p":"has_function","o":"odoo:event_event_ticket._compute_price_incl","f":1.0,"c":0.95} +{"s":"odoo:event_event_ticket","p":"has_function","o":"odoo:event_event_ticket._compute_sale_available","f":1.0,"c":0.95} +{"s":"odoo:event_lead_rule","p":"has_function","o":"odoo:event_lead_rule._onchange_lead_sales_team_id","f":1.0,"c":0.95} +{"s":"odoo:event_mail","p":"has_function","o":"odoo:event_mail._compute_mail_state","f":1.0,"c":0.95} +{"s":"odoo:event_mail","p":"has_function","o":"odoo:event_mail._compute_notification_type","f":1.0,"c":0.95} +{"s":"odoo:event_mail","p":"has_function","o":"odoo:event_mail._compute_scheduled_date","f":1.0,"c":0.95} +{"s":"odoo:event_mail_registration","p":"has_function","o":"odoo:event_mail_registration._compute_scheduled_date","f":1.0,"c":0.95} +{"s":"odoo:event_mail_slot","p":"has_function","o":"odoo:event_mail_slot._compute_scheduled_date","f":1.0,"c":0.95} +{"s":"odoo:event_question","p":"has_function","o":"odoo:event_question._compute_event_count","f":1.0,"c":0.95} +{"s":"odoo:event_question","p":"has_function","o":"odoo:event_question._compute_is_reusable","f":1.0,"c":0.95} +{"s":"odoo:event_quiz","p":"has_function","o":"odoo:event_quiz._check_answers_integrity","f":1.0,"c":0.95} +{"s":"odoo:event_quiz","p":"has_function","o":"odoo:event_quiz._compute_awarded_points","f":1.0,"c":0.95} +{"s":"odoo:event_quiz","p":"has_function","o":"odoo:event_quiz._compute_correct_answer_id","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._check_event_slot","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._check_event_ticket","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._check_seats_availability","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_company_name","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_date_closed","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_date_range","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_email","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_event_begin_date","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_event_end_date","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_lead_count","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_name","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_phone","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_registration_status","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_utm_campaign_id","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_utm_medium_id","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._compute_utm_source_id","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._onchange_event","f":1.0,"c":0.95} +{"s":"odoo:event_registration","p":"has_function","o":"odoo:event_registration._onchange_phone_validation","f":1.0,"c":0.95} +{"s":"odoo:event_registration_answer","p":"has_function","o":"odoo:event_registration_answer._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:event_slot","p":"has_function","o":"odoo:event_slot._check_hours","f":1.0,"c":0.95} +{"s":"odoo:event_slot","p":"has_function","o":"odoo:event_slot._check_time_range","f":1.0,"c":0.95} +{"s":"odoo:event_slot","p":"has_function","o":"odoo:event_slot._compute_datetimes","f":1.0,"c":0.95} +{"s":"odoo:event_slot","p":"has_function","o":"odoo:event_slot._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:event_slot","p":"has_function","o":"odoo:event_slot._compute_is_sold_out","f":1.0,"c":0.95} +{"s":"odoo:event_slot","p":"has_function","o":"odoo:event_slot._compute_seats","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_country_flag_url","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_email","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_image_512","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_is_in_opening_hours","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_name","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_phone","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_url","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_website_absolute_url","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_website_description","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_website_image_url","f":1.0,"c":0.95} +{"s":"odoo:event_sponsor","p":"has_function","o":"odoo:event_sponsor._compute_website_url","f":1.0,"c":0.95} +{"s":"odoo:event_ticket","p":"has_function","o":"odoo:event_ticket._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:event_ticket","p":"has_function","o":"odoo:event_ticket._compute_is_expired","f":1.0,"c":0.95} +{"s":"odoo:event_ticket","p":"has_function","o":"odoo:event_ticket._compute_is_launched","f":1.0,"c":0.95} +{"s":"odoo:event_ticket","p":"has_function","o":"odoo:event_ticket._compute_is_sold_out","f":1.0,"c":0.95} +{"s":"odoo:event_ticket","p":"has_function","o":"odoo:event_ticket._compute_sale_available","f":1.0,"c":0.95} +{"s":"odoo:event_ticket","p":"has_function","o":"odoo:event_ticket._compute_seats","f":1.0,"c":0.95} +{"s":"odoo:event_ticket","p":"has_function","o":"odoo:event_ticket._constrains_dates_coherency","f":1.0,"c":0.95} +{"s":"odoo:event_ticket","p":"has_function","o":"odoo:event_ticket._constrains_limit_max_per_order","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_contact_email","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_contact_phone","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_cta_time_data","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_date","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_end_date","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_field_is_one_day","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_is_reminder_on","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_is_youtube_chat_available","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_kanban_state_label","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_partner_biography","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_partner_company_name","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_partner_email","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_partner_function","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_partner_image","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_partner_name","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_partner_phone","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_partner_tag_line","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_quiz_data","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_quiz_id","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_quiz_questions_count","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_track_time_data","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_website_image_url","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_website_url","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_wishlist_visitor_ids","f":1.0,"c":0.95} +{"s":"odoo:event_track","p":"has_function","o":"odoo:event_track._compute_youtube_video_id","f":1.0,"c":0.95} +{"s":"odoo:event_track_stage","p":"has_function","o":"odoo:event_track_stage._compute_is_fully_accessible","f":1.0,"c":0.95} +{"s":"odoo:event_track_stage","p":"has_function","o":"odoo:event_track_stage._compute_is_visible_in_agenda","f":1.0,"c":0.95} +{"s":"odoo:event_track_visitor","p":"has_function","o":"odoo:event_track_visitor._compute_partner_id","f":1.0,"c":0.95} +{"s":"odoo:event_type","p":"has_function","o":"odoo:event_type._compute_booth_menu","f":1.0,"c":0.95} +{"s":"odoo:event_type","p":"has_function","o":"odoo:event_type._compute_community_menu","f":1.0,"c":0.95} +{"s":"odoo:event_type","p":"has_function","o":"odoo:event_type._compute_exhibitor_menu","f":1.0,"c":0.95} +{"s":"odoo:event_type","p":"has_function","o":"odoo:event_type._compute_seats_max","f":1.0,"c":0.95} +{"s":"odoo:event_type","p":"has_function","o":"odoo:event_type._compute_website_track_menu_data","f":1.0,"c":0.95} +{"s":"odoo:event_type_mail","p":"has_function","o":"odoo:event_type_mail._compute_notification_type","f":1.0,"c":0.95} +{"s":"odoo:event_type_ticket","p":"has_function","o":"odoo:event_type_ticket._compute_description","f":1.0,"c":0.95} +{"s":"odoo:event_type_ticket","p":"has_function","o":"odoo:event_type_ticket._compute_price","f":1.0,"c":0.95} +{"s":"odoo:event_type_ticket","p":"has_function","o":"odoo:event_type_ticket._compute_price_reduce","f":1.0,"c":0.95} +{"s":"odoo:event_type_ticket","p":"has_function","o":"odoo:event_type_ticket._compute_seats_limited","f":1.0,"c":0.95} +{"s":"odoo:ewaybill_type","p":"has_function","o":"odoo:ewaybill_type._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:fetchmail","p":"has_function","o":"odoo:fetchmail._compute_server_type_info","f":1.0,"c":0.95} +{"s":"odoo:fetchmail","p":"has_function","o":"odoo:fetchmail.onchange_server_type","f":1.0,"c":0.95} +{"s":"odoo:fetchmail_server","p":"has_function","o":"odoo:fetchmail_server._check_use_google_gmail_service","f":1.0,"c":0.95} +{"s":"odoo:fetchmail_server","p":"has_function","o":"odoo:fetchmail_server._check_use_microsoft_outlook_service","f":1.0,"c":0.95} +{"s":"odoo:fetchmail_server","p":"has_function","o":"odoo:fetchmail_server.onchange_server_type","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_category","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_co2","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_co2_emission_unit","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_co2_standard","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_color","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_contract_reminder","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_doors","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_driver_employee_id","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_electric_assistance","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_fuel_type","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_future_driver_employee_id","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_horsepower","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_horsepower_tax","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_mobility_card","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_model_year","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_power","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_range_unit","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_seats","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_service_activity","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_trailer_hook","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_transmission","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_vehicle_name","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle","p":"has_function","o":"odoo:fleet_vehicle._compute_vehicle_range","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_assignation_log","p":"has_function","o":"odoo:fleet_vehicle_assignation_log._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_assignation_log","p":"has_function","o":"odoo:fleet_vehicle_assignation_log._compute_driver_employee_id","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_log_contract","p":"has_function","o":"odoo:fleet_vehicle_log_contract._compute_contract_name","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_log_contract","p":"has_function","o":"odoo:fleet_vehicle_log_contract._compute_days_left","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_log_contract","p":"has_function","o":"odoo:fleet_vehicle_log_contract._compute_has_open_contract","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_log_services","p":"has_function","o":"odoo:fleet_vehicle_log_services._compute_amount","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_log_services","p":"has_function","o":"odoo:fleet_vehicle_log_services._compute_purchaser_employee_id","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_log_services","p":"has_function","o":"odoo:fleet_vehicle_log_services._compute_purchaser_id","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_log_services","p":"has_function","o":"odoo:fleet_vehicle_log_services._compute_vehicle_id","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_model","p":"has_function","o":"odoo:fleet_vehicle_model._compute_co2_emission_unit","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_model","p":"has_function","o":"odoo:fleet_vehicle_model._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_model_brand","p":"has_function","o":"odoo:fleet_vehicle_model_brand._compute_model_count","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_odometer","p":"has_function","o":"odoo:fleet_vehicle_odometer._compute_driver_id","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_odometer","p":"has_function","o":"odoo:fleet_vehicle_odometer._compute_vehicle_log_name","f":1.0,"c":0.95} +{"s":"odoo:fleet_vehicle_odometer","p":"has_function","o":"odoo:fleet_vehicle_odometer._onchange_vehicle","f":1.0,"c":0.95} +{"s":"odoo:forum_forum","p":"has_function","o":"odoo:forum_forum._compute_can_moderate","f":1.0,"c":0.95} +{"s":"odoo:forum_forum","p":"has_function","o":"odoo:forum_forum._compute_forum_statistics","f":1.0,"c":0.95} +{"s":"odoo:forum_forum","p":"has_function","o":"odoo:forum_forum._compute_image_1920","f":1.0,"c":0.95} +{"s":"odoo:forum_forum","p":"has_function","o":"odoo:forum_forum._compute_last_post_id","f":1.0,"c":0.95} +{"s":"odoo:forum_forum","p":"has_function","o":"odoo:forum_forum._compute_slide_channel_id","f":1.0,"c":0.95} +{"s":"odoo:forum_forum","p":"has_function","o":"odoo:forum_forum._compute_tag_ids_usage","f":1.0,"c":0.95} +{"s":"odoo:forum_post","p":"has_function","o":"odoo:forum_post._check_parent_id","f":1.0,"c":0.95} +{"s":"odoo:forum_post","p":"has_function","o":"odoo:forum_post._compute_child_count","f":1.0,"c":0.95} +{"s":"odoo:forum_post","p":"has_function","o":"odoo:forum_post._compute_favorite_count","f":1.0,"c":0.95} +{"s":"odoo:forum_post","p":"has_function","o":"odoo:forum_post._compute_has_validated_answer","f":1.0,"c":0.95} +{"s":"odoo:forum_post","p":"has_function","o":"odoo:forum_post._compute_plain_content","f":1.0,"c":0.95} +{"s":"odoo:forum_post","p":"has_function","o":"odoo:forum_post._compute_relevancy","f":1.0,"c":0.95} +{"s":"odoo:forum_post","p":"has_function","o":"odoo:forum_post._compute_self_reply","f":1.0,"c":0.95} +{"s":"odoo:forum_post","p":"has_function","o":"odoo:forum_post._compute_vote_count","f":1.0,"c":0.95} +{"s":"odoo:forum_post","p":"has_function","o":"odoo:forum_post._compute_website_url","f":1.0,"c":0.95} +{"s":"odoo:forum_tag","p":"has_function","o":"odoo:forum_tag._compute_posts_count","f":1.0,"c":0.95} +{"s":"odoo:forum_tag","p":"has_function","o":"odoo:forum_tag._compute_website_url","f":1.0,"c":0.95} +{"s":"odoo:gamification","p":"has_function","o":"odoo:gamification._check_employee_related_user","f":1.0,"c":0.95} +{"s":"odoo:gamification","p":"has_function","o":"odoo:gamification._compute_granted_employees_count","f":1.0,"c":0.95} +{"s":"odoo:gamification_badge","p":"has_function","o":"odoo:gamification_badge._get_badge_user_stats","f":1.0,"c":0.95} +{"s":"odoo:gamification_badge","p":"has_function","o":"odoo:gamification_badge._get_owners_info","f":1.0,"c":0.95} +{"s":"odoo:gamification_badge","p":"has_function","o":"odoo:gamification_badge._remaining_sending_calc","f":1.0,"c":0.95} +{"s":"odoo:gamification_challenge","p":"has_function","o":"odoo:gamification_challenge._compute_user_count","f":1.0,"c":0.95} +{"s":"odoo:gamification_challenge","p":"has_function","o":"odoo:gamification_challenge._get_next_report_date","f":1.0,"c":0.95} +{"s":"odoo:gamification_goal","p":"has_function","o":"odoo:gamification_goal._compute_color","f":1.0,"c":0.95} +{"s":"odoo:gamification_goal","p":"has_function","o":"odoo:gamification_goal._get_completion","f":1.0,"c":0.95} +{"s":"odoo:gamification_goal_definition","p":"has_function","o":"odoo:gamification_goal_definition._compute_full_suffix","f":1.0,"c":0.95} +{"s":"odoo:gamification_karma_rank","p":"has_function","o":"odoo:gamification_karma_rank._compute_rank_users_count","f":1.0,"c":0.95} +{"s":"odoo:gamification_karma_tracking","p":"has_function","o":"odoo:gamification_karma_tracking._compute_gain","f":1.0,"c":0.95} +{"s":"odoo:gamification_karma_tracking","p":"has_function","o":"odoo:gamification_karma_tracking._compute_origin_ref_model_name","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._check_talent_pool_required","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_application_count","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_application_status","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_company","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_current_applicant_skill_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_date_closed","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_day","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_delay","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_department","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_is_applicant_in_pool","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_is_pool","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_matching_skill_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_meeting_display","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_partner_phone_email","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_partner_phone_sanitized","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_skill_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_stage","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_talent_pool_count","f":1.0,"c":0.95} +{"s":"odoo:hr_applicant","p":"has_function","o":"odoo:hr_applicant._compute_user","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._check_validity","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._check_validity_check_in_check_out","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._compute_date","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._compute_expected_hours","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._compute_is_manager","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._compute_linked_overtime_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._compute_overtime_hours","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._compute_overtime_status","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._compute_validated_overtime_hours","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance","p":"has_function","o":"odoo:hr_attendance._compute_worked_hours","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance_overtime","p":"has_function","o":"odoo:hr_attendance_overtime._compute_is_manager","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance_overtime","p":"has_function","o":"odoo:hr_attendance_overtime._compute_manual_duration","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance_overtime","p":"has_function","o":"odoo:hr_attendance_overtime._compute_status","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance_overtime_rule","p":"has_function","o":"odoo:hr_attendance_overtime_rule._check_expected_hours","f":1.0,"c":0.95} +{"s":"odoo:hr_attendance_overtime_rule","p":"has_function","o":"odoo:hr_attendance_overtime_rule._check_work_schedule","f":1.0,"c":0.95} +{"s":"odoo:hr_contract_type","p":"has_function","o":"odoo:hr_contract_type._compute_code","f":1.0,"c":0.95} +{"s":"odoo:hr_department","p":"has_function","o":"odoo:hr_department._check_parent_id","f":1.0,"c":0.95} +{"s":"odoo:hr_department","p":"has_function","o":"odoo:hr_department._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:hr_department","p":"has_function","o":"odoo:hr_department._compute_complete_name","f":1.0,"c":0.95} +{"s":"odoo:hr_department","p":"has_function","o":"odoo:hr_department._compute_master_department_id","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._check_salary_distribution","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_attendance_state","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_avatar_1024","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_avatar_128","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_avatar_1920","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_avatar_256","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_avatar_512","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_birthday_public_display_string","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_certification_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_coach","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_courses_completion_text","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_current_employee_skill_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_current_version_id","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_employee_badges","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_employee_goals","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_equipment_count","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_expense_manager","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_has_multiple_bank_accounts","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_is_trusted_bank_account","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_last_activity","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_last_attendance_id","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_leave_manager","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_legal_name","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_presence_icon","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_presence_state","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_primary_bank_account_id","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_related_partners_count","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_skill_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_total_overtime","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_version_id","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_work_contact_details","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_work_location_name","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_work_location_type","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._compute_work_permit_name","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._onchange_company_id","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._onchange_contract_date_start","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._onchange_contract_template_id","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._onchange_phone_validation_employee","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._onchange_private_state_id","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._onchange_timezone","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._onchange_user","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._sync_salary_distribution","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._verify_barcode","f":1.0,"c":0.95} +{"s":"odoo:hr_employee","p":"has_function","o":"odoo:hr_employee._verify_pin","f":1.0,"c":0.95} +{"s":"odoo:hr_employee_public","p":"has_function","o":"odoo:hr_employee_public._compute_is_manager","f":1.0,"c":0.95} +{"s":"odoo:hr_employee_public","p":"has_function","o":"odoo:hr_employee_public._compute_last_activity","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._check_non_zero","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._check_o2o_payment","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_account_id","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_analytic_distribution","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_can_approve","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_can_be_reinvoiced","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_can_reset","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_currency_rate","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_duplicate_expense_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_employee_id","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_from_employee_id","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_from_product","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_is_editable","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_is_multiple_currency","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_name","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_payment_method_line_id","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_price_unit","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_product_description","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_sale_order_id","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_same_receipt_expense_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_selectable_payment_method_line_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_state","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_tax_amount","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_tax_amount_currency","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_tax_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_total_amount","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_total_amount_currency","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._compute_uom_id","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._inverse_total_amount_currency","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._onchange_product_has_cost","f":1.0,"c":0.95} +{"s":"odoo:hr_expense","p":"has_function","o":"odoo:hr_expense._onchange_sale_order_id","f":1.0,"c":0.95} +{"s":"odoo:hr_expense_split","p":"has_function","o":"odoo:hr_expense_split._compute_can_be_reinvoiced","f":1.0,"c":0.95} +{"s":"odoo:hr_expense_split","p":"has_function","o":"odoo:hr_expense_split._compute_sale_order_id","f":1.0,"c":0.95} +{"s":"odoo:hr_homeworking","p":"has_function","o":"odoo:hr_homeworking._compute_day_week_string","f":1.0,"c":0.95} +{"s":"odoo:hr_individual_skill_mixin","p":"has_function","o":"odoo:hr_individual_skill_mixin._check_date","f":1.0,"c":0.95} +{"s":"odoo:hr_individual_skill_mixin","p":"has_function","o":"odoo:hr_individual_skill_mixin._check_not_overlapping_regular_skill","f":1.0,"c":0.95} +{"s":"odoo:hr_individual_skill_mixin","p":"has_function","o":"odoo:hr_individual_skill_mixin._check_skill_level","f":1.0,"c":0.95} +{"s":"odoo:hr_individual_skill_mixin","p":"has_function","o":"odoo:hr_individual_skill_mixin._check_skill_type","f":1.0,"c":0.95} +{"s":"odoo:hr_individual_skill_mixin","p":"has_function","o":"odoo:hr_individual_skill_mixin._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_individual_skill_mixin","p":"has_function","o":"odoo:hr_individual_skill_mixin._compute_skill_id","f":1.0,"c":0.95} +{"s":"odoo:hr_individual_skill_mixin","p":"has_function","o":"odoo:hr_individual_skill_mixin._compute_skill_level_id","f":1.0,"c":0.95} +{"s":"odoo:hr_individual_skill_mixin","p":"has_function","o":"odoo:hr_individual_skill_mixin._onchange_is_certification","f":1.0,"c":0.95} +{"s":"odoo:hr_individual_skill_mixin","p":"has_function","o":"odoo:hr_individual_skill_mixin._onchange_valid_date","f":1.0,"c":0.95} +{"s":"odoo:hr_job","p":"has_function","o":"odoo:hr_job._compute_allowed_user_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_job","p":"has_function","o":"odoo:hr_job._compute_current_job_skill_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_job","p":"has_function","o":"odoo:hr_job._compute_employees","f":1.0,"c":0.95} +{"s":"odoo:hr_job","p":"has_function","o":"odoo:hr_job._compute_extended_interviewer_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_job","p":"has_function","o":"odoo:hr_job._compute_full_url","f":1.0,"c":0.95} +{"s":"odoo:hr_job","p":"has_function","o":"odoo:hr_job._compute_no_of_hired_employee","f":1.0,"c":0.95} +{"s":"odoo:hr_job","p":"has_function","o":"odoo:hr_job._compute_old_application_count","f":1.0,"c":0.95} +{"s":"odoo:hr_job","p":"has_function","o":"odoo:hr_job._compute_published_date","f":1.0,"c":0.95} +{"s":"odoo:hr_job","p":"has_function","o":"odoo:hr_job._compute_skill_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_job","p":"has_function","o":"odoo:hr_job._onchange_website_published","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._check_contracts","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._check_date","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._check_date_state","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_can_approve","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_can_back_to_approve","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_can_cancel","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_can_refuse","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_can_validate","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_dashboard_warning_message","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_date_from_to","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_department_id","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_duration","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_duration_display","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_employee_overtime","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_from_employee_id","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_has_mandatory_day","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_is_hatched","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_last_several_days","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_leave_type_increases_duration","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_leaves","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_overtime_deductible","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_request_hour_from_to","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_request_unit_half","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_request_unit_hours","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_resource_calendar_id","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_supported_attachment_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_tz","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._compute_tz_mismatch","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._l10n_in_check_optional_holiday_request_dates","f":1.0,"c":0.95} +{"s":"odoo:hr_leave","p":"has_function","o":"odoo:hr_leave._onchange_hours","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan","p":"has_function","o":"odoo:hr_leave_accrual_plan._compute_carryover_day","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan","p":"has_function","o":"odoo:hr_leave_accrual_plan._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan","p":"has_function","o":"odoo:hr_leave_accrual_plan._compute_employee_count","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan","p":"has_function","o":"odoo:hr_leave_accrual_plan._compute_is_based_on_worked_time","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan","p":"has_function","o":"odoo:hr_leave_accrual_plan._compute_level_count","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan","p":"has_function","o":"odoo:hr_leave_accrual_plan._compute_show_transition_mode","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._check_dates","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._check_maximum_leaves","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._check_worked_hours","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_accrual_validity","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_action_with_unused_accruals","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_added_value_type","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_can_modify_value_type","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_carryover_options","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_first_month_day","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_frequency","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_maximum_leave","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_milestone_date","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_second_month_day","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_sequence","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_accrual_plan_level","p":"has_function","o":"odoo:hr_leave_accrual_plan_level._compute_yearly_day","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._check_date_from_date_to","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_accrual_plan_id","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_can_approve","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_can_refuse","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_can_validate","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_department_id","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_description","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_description_validity","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_duration_display","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_employee_overtime","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_holiday_status_id","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_is_officer","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_leaves","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_manager_id","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_number_of_days","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_number_of_days_display","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_number_of_hours_display","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_overtime_deductible","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._compute_type_request_unit","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._onchange_allocation_type","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._onchange_date_from","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_allocation","p":"has_function","o":"odoo:hr_leave_allocation._onchange_name","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_type","p":"has_function","o":"odoo:hr_leave_type._check_allow_request_on_top","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_type","p":"has_function","o":"odoo:hr_leave_type._check_elligible_for_accrual_rate","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_type","p":"has_function","o":"odoo:hr_leave_type._check_overlapping_public_holidays","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_type","p":"has_function","o":"odoo:hr_leave_type._compute_country_id","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_type","p":"has_function","o":"odoo:hr_leave_type._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_type","p":"has_function","o":"odoo:hr_leave_type._compute_eligible_for_accrual_rate","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_type","p":"has_function","o":"odoo:hr_leave_type._compute_valid","f":1.0,"c":0.95} +{"s":"odoo:hr_leave_type","p":"has_function","o":"odoo:hr_leave_type.check_allocation_requirement_edit_validity","f":1.0,"c":0.95} +{"s":"odoo:hr_org_chart_mixin","p":"has_function","o":"odoo:hr_org_chart_mixin._compute_is_subordinate","f":1.0,"c":0.95} +{"s":"odoo:hr_org_chart_mixin","p":"has_function","o":"odoo:hr_org_chart_mixin._compute_subordinates","f":1.0,"c":0.95} +{"s":"odoo:hr_recruitment_source","p":"has_function","o":"odoo:hr_recruitment_source._compute_url","f":1.0,"c":0.95} +{"s":"odoo:hr_recruitment_stage","p":"has_function","o":"odoo:hr_recruitment_stage._compute_is_warning_visible","f":1.0,"c":0.95} +{"s":"odoo:hr_resume_line","p":"has_function","o":"odoo:hr_resume_line._compute_channel_id","f":1.0,"c":0.95} +{"s":"odoo:hr_resume_line","p":"has_function","o":"odoo:hr_resume_line._compute_color","f":1.0,"c":0.95} +{"s":"odoo:hr_resume_line","p":"has_function","o":"odoo:hr_resume_line._compute_duration","f":1.0,"c":0.95} +{"s":"odoo:hr_resume_line","p":"has_function","o":"odoo:hr_resume_line._compute_event_id","f":1.0,"c":0.95} +{"s":"odoo:hr_resume_line","p":"has_function","o":"odoo:hr_resume_line._compute_expiration_status","f":1.0,"c":0.95} +{"s":"odoo:hr_resume_line","p":"has_function","o":"odoo:hr_resume_line._compute_external_url","f":1.0,"c":0.95} +{"s":"odoo:hr_resume_line","p":"has_function","o":"odoo:hr_resume_line._onchange_channel_id","f":1.0,"c":0.95} +{"s":"odoo:hr_resume_line","p":"has_function","o":"odoo:hr_resume_line._onchange_event_id","f":1.0,"c":0.95} +{"s":"odoo:hr_resume_line","p":"has_function","o":"odoo:hr_resume_line._onchange_external_url","f":1.0,"c":0.95} +{"s":"odoo:hr_skill","p":"has_function","o":"odoo:hr_skill._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_skill_type","p":"has_function","o":"odoo:hr_skill_type._check_no_null_skill_or_skill_level","f":1.0,"c":0.95} +{"s":"odoo:hr_skill_type","p":"has_function","o":"odoo:hr_skill_type._compute_levels_count","f":1.0,"c":0.95} +{"s":"odoo:hr_skill_type","p":"has_function","o":"odoo:hr_skill_type._onchange_skill_level_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._compute_commercial_partner","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._compute_department_id","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._compute_message_partner_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._compute_partner_id","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._compute_project_id","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._compute_so_line","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._compute_task_id","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._compute_timesheet_invoice_type","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._compute_user_id","f":1.0,"c":0.95} +{"s":"odoo:hr_timesheet","p":"has_function","o":"odoo:hr_timesheet._onchange_project_id","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._check_contracts","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._check_dates","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._check_ssnid","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_allowed_country_state_ids","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_contract_wage","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_dates","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_is_custom_job_title","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_is_flexible","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_job_title","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_km_home_work","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_part_of_department","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_structure_type_id","f":1.0,"c":0.95} +{"s":"odoo:hr_version","p":"has_function","o":"odoo:hr_version._compute_work_entry_source_calendar_invalid","f":1.0,"c":0.95} +{"s":"odoo:hr_work_entry","p":"has_function","o":"odoo:hr_work_entry._check_duration","f":1.0,"c":0.95} +{"s":"odoo:hr_work_entry","p":"has_function","o":"odoo:hr_work_entry._compute_conflict","f":1.0,"c":0.95} +{"s":"odoo:hr_work_entry","p":"has_function","o":"odoo:hr_work_entry._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:hr_work_entry","p":"has_function","o":"odoo:hr_work_entry._compute_name","f":1.0,"c":0.95} +{"s":"odoo:hr_work_entry","p":"has_function","o":"odoo:hr_work_entry._onchange_version_id","f":1.0,"c":0.95} +{"s":"odoo:hr_work_entry_type","p":"has_function","o":"odoo:hr_work_entry_type._check_code_unicity","f":1.0,"c":0.95} +{"s":"odoo:hr_work_entry_type","p":"has_function","o":"odoo:hr_work_entry_type._check_work_entry_type_country","f":1.0,"c":0.95} +{"s":"odoo:hr_work_entry_type","p":"has_function","o":"odoo:hr_work_entry_type._compute_is_work","f":1.0,"c":0.95} +{"s":"odoo:html_field_history_mixin","p":"has_function","o":"odoo:html_field_history_mixin._compute_metadata","f":1.0,"c":0.95} +{"s":"odoo:iap_account","p":"has_function","o":"odoo:iap_account.validate_warning_alerts","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel","p":"has_function","o":"odoo:im_livechat_channel._check_review_link","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel","p":"has_function","o":"odoo:im_livechat_channel._compute_available_operator_ids","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel","p":"has_function","o":"odoo:im_livechat_channel._compute_chatbot_script_count","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel","p":"has_function","o":"odoo:im_livechat_channel._compute_nbr_channel","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel","p":"has_function","o":"odoo:im_livechat_channel._compute_ongoing_sessions_count","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel","p":"has_function","o":"odoo:im_livechat_channel._compute_remaining_session_capacity","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel_member_history","p":"has_function","o":"odoo:im_livechat_channel_member_history._compute_avatar_128","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel_member_history","p":"has_function","o":"odoo:im_livechat_channel_member_history._compute_call_duration_hour","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel_member_history","p":"has_function","o":"odoo:im_livechat_channel_member_history._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel_member_history","p":"has_function","o":"odoo:im_livechat_channel_member_history._compute_has_call","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel_member_history","p":"has_function","o":"odoo:im_livechat_channel_member_history._compute_help_status","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel_member_history","p":"has_function","o":"odoo:im_livechat_channel_member_history._compute_member_fields","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel_member_history","p":"has_function","o":"odoo:im_livechat_channel_member_history._compute_rating_id","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel_member_history","p":"has_function","o":"odoo:im_livechat_channel_member_history._compute_session_duration_hour","f":1.0,"c":0.95} +{"s":"odoo:im_livechat_channel_member_history","p":"has_function","o":"odoo:im_livechat_channel_member_history._constraint_channel_id","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._compute_activity_info","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._compute_activity_user_info","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._compute_available_model_ids","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._compute_followers_info","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._compute_followers_type","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._compute_mail_post_autofollow","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._compute_mail_post_method","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._compute_sms_method","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._compute_sms_template_id","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._compute_template_id","f":1.0,"c":0.95} +{"s":"odoo:ir_actions_server","p":"has_function","o":"odoo:ir_actions_server._get_website_url","f":1.0,"c":0.95} +{"s":"odoo:ir_attachment","p":"has_function","o":"odoo:ir_attachment._compute_has_thumbnail","f":1.0,"c":0.95} +{"s":"odoo:ir_attachment","p":"has_function","o":"odoo:ir_attachment._compute_image_size","f":1.0,"c":0.95} +{"s":"odoo:ir_attachment","p":"has_function","o":"odoo:ir_attachment._compute_image_src","f":1.0,"c":0.95} +{"s":"odoo:ir_mail_server","p":"has_function","o":"odoo:ir_mail_server._check_use_google_gmail_service","f":1.0,"c":0.95} +{"s":"odoo:ir_mail_server","p":"has_function","o":"odoo:ir_mail_server._check_use_microsoft_outlook_service","f":1.0,"c":0.95} +{"s":"odoo:ir_mail_server","p":"has_function","o":"odoo:ir_mail_server._on_change_smtp_user_gmail","f":1.0,"c":0.95} +{"s":"odoo:ir_mail_server","p":"has_function","o":"odoo:ir_mail_server._on_change_smtp_user_outlook","f":1.0,"c":0.95} +{"s":"odoo:ir_mail_server","p":"has_function","o":"odoo:ir_mail_server._onchange_encryption","f":1.0,"c":0.95} +{"s":"odoo:ir_mail_server","p":"has_function","o":"odoo:ir_mail_server._onchange_smtp_authentication_gmail","f":1.0,"c":0.95} +{"s":"odoo:ir_mail_server","p":"has_function","o":"odoo:ir_mail_server._onchange_smtp_authentication_outlook","f":1.0,"c":0.95} +{"s":"odoo:ir_model","p":"has_function","o":"odoo:ir_model._compute_is_mail_thread_sms","f":1.0,"c":0.95} +{"s":"odoo:ir_module","p":"has_function","o":"odoo:ir_module._compute_account_templates","f":1.0,"c":0.95} +{"s":"odoo:ir_module","p":"has_function","o":"odoo:ir_module._get_icon_image","f":1.0,"c":0.95} +{"s":"odoo:ir_module","p":"has_function","o":"odoo:ir_module._get_latest_version","f":1.0,"c":0.95} +{"s":"odoo:ir_ui_view","p":"has_function","o":"odoo:ir_ui_view._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:ir_ui_view","p":"has_function","o":"odoo:ir_ui_view._get_pwd","f":1.0,"c":0.95} +{"s":"odoo:key","p":"has_function","o":"odoo:key._compute_pem_key","f":1.0,"c":0.95} +{"s":"odoo:l10n_ar_earnings_scale","p":"has_function","o":"odoo:l10n_ar_earnings_scale._compute_from_amount","f":1.0,"c":0.95} +{"s":"odoo:l10n_ar_partner_tax","p":"has_function","o":"odoo:l10n_ar_partner_tax.check_partner_tax_dates","f":1.0,"c":0.95} +{"s":"odoo:l10n_ar_payment_register_withholding","p":"has_function","o":"odoo:l10n_ar_payment_register_withholding._compute_amount","f":1.0,"c":0.95} +{"s":"odoo:l10n_ar_payment_register_withholding","p":"has_function","o":"odoo:l10n_ar_payment_register_withholding._compute_base_amount","f":1.0,"c":0.95} +{"s":"odoo:l10n_br_zip_range","p":"has_function","o":"odoo:l10n_br_zip_range._check_range","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_ewaybill","p":"has_function","o":"odoo:l10n_in_ewaybill._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_ewaybill","p":"has_function","o":"odoo:l10n_in_ewaybill._compute_document_partners_details","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_ewaybill","p":"has_function","o":"odoo:l10n_in_ewaybill._compute_ewaybill_company","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_ewaybill","p":"has_function","o":"odoo:l10n_in_ewaybill._compute_ewaybill_document_details","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_ewaybill","p":"has_function","o":"odoo:l10n_in_ewaybill._compute_fiscal_position","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_ewaybill","p":"has_function","o":"odoo:l10n_in_ewaybill._compute_is_editable","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_ewaybill","p":"has_function","o":"odoo:l10n_in_ewaybill._compute_is_process_through_irn","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_ewaybill","p":"has_function","o":"odoo:l10n_in_ewaybill._compute_supply_type","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_ewaybill","p":"has_function","o":"odoo:l10n_in_ewaybill._compute_vehicle_type","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_hr_leave_optional_holiday","p":"has_function","o":"odoo:l10n_in_hr_leave_optional_holiday._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_pan_entity","p":"has_function","o":"odoo:l10n_in_pan_entity._check_pan_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_pan_entity","p":"has_function","o":"odoo:l10n_in_pan_entity._compute_type","f":1.0,"c":0.95} +{"s":"odoo:l10n_in_section_alert","p":"has_function","o":"odoo:l10n_in_section_alert._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_it_document_type","p":"has_function","o":"odoo:l10n_it_document_type._check_code_unique","f":1.0,"c":0.95} +{"s":"odoo:l10n_ke_item_code","p":"has_function","o":"odoo:l10n_ke_item_code._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_check","p":"has_function","o":"odoo:l10n_latam_check._check_issuer_vat","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_check","p":"has_function","o":"odoo:l10n_latam_check._clean_issuer_vat","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_check","p":"has_function","o":"odoo:l10n_latam_check._compute_bank_id","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_check","p":"has_function","o":"odoo:l10n_latam_check._compute_current_journal","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_check","p":"has_function","o":"odoo:l10n_latam_check._compute_issue_state","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_check","p":"has_function","o":"odoo:l10n_latam_check._compute_issuer_vat","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_check","p":"has_function","o":"odoo:l10n_latam_check._constrains_min_amount","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_check","p":"has_function","o":"odoo:l10n_latam_check._onchange_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_document_type","p":"has_function","o":"odoo:l10n_latam_document_type._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_identification_type","p":"has_function","o":"odoo:l10n_latam_identification_type._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_payment_mass_transfer","p":"has_function","o":"odoo:l10n_latam_payment_mass_transfer._compute_journal_company","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_payment_register_check","p":"has_function","o":"odoo:l10n_latam_payment_register_check._clean_issuer_vat","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_payment_register_check","p":"has_function","o":"odoo:l10n_latam_payment_register_check._compute_bank_id","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_payment_register_check","p":"has_function","o":"odoo:l10n_latam_payment_register_check._compute_issuer_vat","f":1.0,"c":0.95} +{"s":"odoo:l10n_latam_payment_register_check","p":"has_function","o":"odoo:l10n_latam_payment_register_check._onchange_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_my_edi_industry_classification","p":"has_function","o":"odoo:l10n_my_edi_industry_classification._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_pl_tax_office","p":"has_function","o":"odoo:l10n_pl_tax_office._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:l10n_tr_nilvera_einvoice_extended_account_tax_code","p":"has_function","o":"odoo:l10n_tr_nilvera_einvoice_extended_account_tax_code._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:link_tracker","p":"has_function","o":"odoo:link_tracker._check_unicity","f":1.0,"c":0.95} +{"s":"odoo:link_tracker","p":"has_function","o":"odoo:link_tracker._compute_absolute_url","f":1.0,"c":0.95} +{"s":"odoo:link_tracker","p":"has_function","o":"odoo:link_tracker._compute_count","f":1.0,"c":0.95} +{"s":"odoo:link_tracker","p":"has_function","o":"odoo:link_tracker._compute_redirected_url","f":1.0,"c":0.95} +{"s":"odoo:link_tracker","p":"has_function","o":"odoo:link_tracker._compute_short_url","f":1.0,"c":0.95} +{"s":"odoo:link_tracker","p":"has_function","o":"odoo:link_tracker._get_title_from_url","f":1.0,"c":0.95} +{"s":"odoo:loyalty_card","p":"has_function","o":"odoo:loyalty_card._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:loyalty_card","p":"has_function","o":"odoo:loyalty_card._compute_points_display","f":1.0,"c":0.95} +{"s":"odoo:loyalty_card","p":"has_function","o":"odoo:loyalty_card._contrains_code","f":1.0,"c":0.95} +{"s":"odoo:loyalty_card","p":"has_function","o":"odoo:loyalty_card._restrict_expiration_on_loyalty","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._check_date_from_date_to","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._check_pricelist_currency","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_coupon_count","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_coupon_count_display","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_from_program_type","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_is_nominative","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_is_payment_program","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_mail_template_id","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_payment_program_discount_product_id","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_portal_point_name","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_pos_config_ids","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_pos_report_print_id","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._compute_show_non_published_product_warning","f":1.0,"c":0.95} +{"s":"odoo:loyalty_program","p":"has_function","o":"odoo:loyalty_program._constrains_reward_ids","f":1.0,"c":0.95} +{"s":"odoo:loyalty_reward","p":"has_function","o":"odoo:loyalty_reward._check_reward_product_id_no_combo","f":1.0,"c":0.95} +{"s":"odoo:loyalty_reward","p":"has_function","o":"odoo:loyalty_reward._compute_all_discount_product_ids","f":1.0,"c":0.95} +{"s":"odoo:loyalty_reward","p":"has_function","o":"odoo:loyalty_reward._compute_description","f":1.0,"c":0.95} +{"s":"odoo:loyalty_reward","p":"has_function","o":"odoo:loyalty_reward._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:loyalty_reward","p":"has_function","o":"odoo:loyalty_reward._compute_is_global_discount","f":1.0,"c":0.95} +{"s":"odoo:loyalty_reward","p":"has_function","o":"odoo:loyalty_reward._compute_multi_product","f":1.0,"c":0.95} +{"s":"odoo:loyalty_reward","p":"has_function","o":"odoo:loyalty_reward._compute_reward_product_domain","f":1.0,"c":0.95} +{"s":"odoo:loyalty_reward","p":"has_function","o":"odoo:loyalty_reward._compute_reward_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:loyalty_reward","p":"has_function","o":"odoo:loyalty_reward._compute_user_has_debug","f":1.0,"c":0.95} +{"s":"odoo:loyalty_rule","p":"has_function","o":"odoo:loyalty_rule._compute_code","f":1.0,"c":0.95} +{"s":"odoo:loyalty_rule","p":"has_function","o":"odoo:loyalty_rule._compute_mode","f":1.0,"c":0.95} +{"s":"odoo:loyalty_rule","p":"has_function","o":"odoo:loyalty_rule._compute_promo_barcode","f":1.0,"c":0.95} +{"s":"odoo:loyalty_rule","p":"has_function","o":"odoo:loyalty_rule._compute_user_has_debug","f":1.0,"c":0.95} +{"s":"odoo:loyalty_rule","p":"has_function","o":"odoo:loyalty_rule._compute_valid_product_ids","f":1.0,"c":0.95} +{"s":"odoo:loyalty_rule","p":"has_function","o":"odoo:loyalty_rule._constrains_code","f":1.0,"c":0.95} +{"s":"odoo:loyalty_rule","p":"has_function","o":"odoo:loyalty_rule._constraint_trigger_multi","f":1.0,"c":0.95} +{"s":"odoo:lunch_alert","p":"has_function","o":"odoo:lunch_alert._compute_available_today","f":1.0,"c":0.95} +{"s":"odoo:lunch_order","p":"has_function","o":"odoo:lunch_order._check_topping_quantity","f":1.0,"c":0.95} +{"s":"odoo:lunch_order","p":"has_function","o":"odoo:lunch_order._compute_available_on_date","f":1.0,"c":0.95} +{"s":"odoo:lunch_order","p":"has_function","o":"odoo:lunch_order._compute_available_toppings","f":1.0,"c":0.95} +{"s":"odoo:lunch_order","p":"has_function","o":"odoo:lunch_order._compute_display_add_button","f":1.0,"c":0.95} +{"s":"odoo:lunch_order","p":"has_function","o":"odoo:lunch_order._compute_display_reorder_button","f":1.0,"c":0.95} +{"s":"odoo:lunch_order","p":"has_function","o":"odoo:lunch_order._compute_display_toppings","f":1.0,"c":0.95} +{"s":"odoo:lunch_order","p":"has_function","o":"odoo:lunch_order._compute_order_deadline_passed","f":1.0,"c":0.95} +{"s":"odoo:lunch_order","p":"has_function","o":"odoo:lunch_order._compute_product_images","f":1.0,"c":0.95} +{"s":"odoo:lunch_order","p":"has_function","o":"odoo:lunch_order._compute_total_price","f":1.0,"c":0.95} +{"s":"odoo:lunch_product","p":"has_function","o":"odoo:lunch_product._check_active_categories","f":1.0,"c":0.95} +{"s":"odoo:lunch_product","p":"has_function","o":"odoo:lunch_product._check_active_suppliers","f":1.0,"c":0.95} +{"s":"odoo:lunch_product","p":"has_function","o":"odoo:lunch_product._compute_is_favorite","f":1.0,"c":0.95} +{"s":"odoo:lunch_product","p":"has_function","o":"odoo:lunch_product._compute_is_new","f":1.0,"c":0.95} +{"s":"odoo:lunch_product","p":"has_function","o":"odoo:lunch_product._compute_product_image","f":1.0,"c":0.95} +{"s":"odoo:lunch_supplier","p":"has_function","o":"odoo:lunch_supplier._compute_available_today","f":1.0,"c":0.95} +{"s":"odoo:lunch_supplier","p":"has_function","o":"odoo:lunch_supplier._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:lunch_supplier","p":"has_function","o":"odoo:lunch_supplier._compute_order_deadline_passed","f":1.0,"c":0.95} +{"s":"odoo:lunch_topping","p":"has_function","o":"odoo:lunch_topping._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:mail_activity","p":"has_function","o":"odoo:mail_activity._compute_can_write","f":1.0,"c":0.95} +{"s":"odoo:mail_activity","p":"has_function","o":"odoo:mail_activity._compute_date_done","f":1.0,"c":0.95} +{"s":"odoo:mail_activity","p":"has_function","o":"odoo:mail_activity._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:mail_activity","p":"has_function","o":"odoo:mail_activity._compute_has_recommended_activities","f":1.0,"c":0.95} +{"s":"odoo:mail_activity","p":"has_function","o":"odoo:mail_activity._compute_res_name","f":1.0,"c":0.95} +{"s":"odoo:mail_activity","p":"has_function","o":"odoo:mail_activity._compute_state","f":1.0,"c":0.95} +{"s":"odoo:mail_activity","p":"has_function","o":"odoo:mail_activity._onchange_activity_type_id","f":1.0,"c":0.95} +{"s":"odoo:mail_activity","p":"has_function","o":"odoo:mail_activity._onchange_previous_activity_type_id","f":1.0,"c":0.95} +{"s":"odoo:mail_activity","p":"has_function","o":"odoo:mail_activity._onchange_recommended_activity_type_id","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_mixin","p":"has_function","o":"odoo:mail_activity_mixin._compute_activity_calendar_event_id","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_mixin","p":"has_function","o":"odoo:mail_activity_mixin._compute_activity_date_deadline","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_mixin","p":"has_function","o":"odoo:mail_activity_mixin._compute_activity_exception_type","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_mixin","p":"has_function","o":"odoo:mail_activity_mixin._compute_activity_state","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_mixin","p":"has_function","o":"odoo:mail_activity_mixin._compute_activity_user_id","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_mixin","p":"has_function","o":"odoo:mail_activity_mixin._compute_my_activity_date_deadline","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan","p":"has_function","o":"odoo:mail_activity_plan._check_compatibility_with_model","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan","p":"has_function","o":"odoo:mail_activity_plan._check_res_model_compatibility_with_templates","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan","p":"has_function","o":"odoo:mail_activity_plan._compute_department_assignable","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan","p":"has_function","o":"odoo:mail_activity_plan._compute_department_id","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan","p":"has_function","o":"odoo:mail_activity_plan._compute_has_user_on_demand","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan","p":"has_function","o":"odoo:mail_activity_plan._compute_res_model_id","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan","p":"has_function","o":"odoo:mail_activity_plan._compute_steps_count","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan_template","p":"has_function","o":"odoo:mail_activity_plan_template._check_activity_type_res_model","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan_template","p":"has_function","o":"odoo:mail_activity_plan_template._check_responsible","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan_template","p":"has_function","o":"odoo:mail_activity_plan_template._check_responsible_hr","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan_template","p":"has_function","o":"odoo:mail_activity_plan_template._check_responsible_hr_fleet","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan_template","p":"has_function","o":"odoo:mail_activity_plan_template._compute_next_activity_ids","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan_template","p":"has_function","o":"odoo:mail_activity_plan_template._compute_note","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan_template","p":"has_function","o":"odoo:mail_activity_plan_template._compute_responsible_id","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan_template","p":"has_function","o":"odoo:mail_activity_plan_template._compute_responsible_type","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_plan_template","p":"has_function","o":"odoo:mail_activity_plan_template._compute_summary","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_type","p":"has_function","o":"odoo:mail_activity_type._check_activity_type_res_model","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_type","p":"has_function","o":"odoo:mail_activity_type._compute_delay_label","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_type","p":"has_function","o":"odoo:mail_activity_type._compute_suggested_next_type_ids","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_type","p":"has_function","o":"odoo:mail_activity_type._compute_triggered_next_type_id","f":1.0,"c":0.95} +{"s":"odoo:mail_activity_type","p":"has_function","o":"odoo:mail_activity_type._onchange_res_model","f":1.0,"c":0.95} +{"s":"odoo:mail_alias","p":"has_function","o":"odoo:mail_alias._check_alias_defaults","f":1.0,"c":0.95} +{"s":"odoo:mail_alias","p":"has_function","o":"odoo:mail_alias._check_alias_domain_clash","f":1.0,"c":0.95} +{"s":"odoo:mail_alias","p":"has_function","o":"odoo:mail_alias._check_alias_domain_id_mc","f":1.0,"c":0.95} +{"s":"odoo:mail_alias","p":"has_function","o":"odoo:mail_alias._check_alias_is_ascii","f":1.0,"c":0.95} +{"s":"odoo:mail_alias","p":"has_function","o":"odoo:mail_alias._compute_alias_full_name","f":1.0,"c":0.95} +{"s":"odoo:mail_alias","p":"has_function","o":"odoo:mail_alias._compute_alias_status","f":1.0,"c":0.95} +{"s":"odoo:mail_alias","p":"has_function","o":"odoo:mail_alias._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:mail_alias_domain","p":"has_function","o":"odoo:mail_alias_domain._check_bounce_catchall_uniqueness","f":1.0,"c":0.95} +{"s":"odoo:mail_alias_domain","p":"has_function","o":"odoo:mail_alias_domain._check_name","f":1.0,"c":0.95} +{"s":"odoo:mail_alias_domain","p":"has_function","o":"odoo:mail_alias_domain._compute_bounce_email","f":1.0,"c":0.95} +{"s":"odoo:mail_alias_domain","p":"has_function","o":"odoo:mail_alias_domain._compute_catchall_email","f":1.0,"c":0.95} +{"s":"odoo:mail_alias_domain","p":"has_function","o":"odoo:mail_alias_domain._compute_default_from_email","f":1.0,"c":0.95} +{"s":"odoo:mail_alias_mixin_optional","p":"has_function","o":"odoo:mail_alias_mixin_optional._compute_alias_email","f":1.0,"c":0.95} +{"s":"odoo:mail_canned_response","p":"has_function","o":"odoo:mail_canned_response._compute_is_editable","f":1.0,"c":0.95} +{"s":"odoo:mail_canned_response","p":"has_function","o":"odoo:mail_canned_response._compute_is_shared","f":1.0,"c":0.95} +{"s":"odoo:mail_composer_mixin","p":"has_function","o":"odoo:mail_composer_mixin._compute_body","f":1.0,"c":0.95} +{"s":"odoo:mail_composer_mixin","p":"has_function","o":"odoo:mail_composer_mixin._compute_body_has_template_value","f":1.0,"c":0.95} +{"s":"odoo:mail_composer_mixin","p":"has_function","o":"odoo:mail_composer_mixin._compute_can_edit_body","f":1.0,"c":0.95} +{"s":"odoo:mail_composer_mixin","p":"has_function","o":"odoo:mail_composer_mixin._compute_lang","f":1.0,"c":0.95} +{"s":"odoo:mail_composer_mixin","p":"has_function","o":"odoo:mail_composer_mixin._compute_subject","f":1.0,"c":0.95} +{"s":"odoo:mail_followers","p":"has_function","o":"odoo:mail_followers._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:mail_gateway_allowed","p":"has_function","o":"odoo:mail_gateway_allowed._compute_email_normalized","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._check_access_mode","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._check_moderation_guidelines","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._check_moderation_notify","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._check_moderator_email","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._check_moderator_existence","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._compute_can_manage_group","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._compute_is_moderator","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._compute_mail_group_message_count","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._compute_mail_group_message_last_month_count","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._compute_mail_group_message_moderation_count","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._compute_member_count","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._compute_member_partner_ids","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._compute_moderation_rule_count","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._onchange_access_mode","f":1.0,"c":0.95} +{"s":"odoo:mail_group","p":"has_function","o":"odoo:mail_group._onchange_moderation","f":1.0,"c":0.95} +{"s":"odoo:mail_group_member","p":"has_function","o":"odoo:mail_group_member._compute_email","f":1.0,"c":0.95} +{"s":"odoo:mail_group_member","p":"has_function","o":"odoo:mail_group_member._compute_email_normalized","f":1.0,"c":0.95} +{"s":"odoo:mail_group_message","p":"has_function","o":"odoo:mail_group_message._compute_author_moderation","f":1.0,"c":0.95} +{"s":"odoo:mail_group_message","p":"has_function","o":"odoo:mail_group_message._compute_email_from_normalized","f":1.0,"c":0.95} +{"s":"odoo:mail_group_message","p":"has_function","o":"odoo:mail_group_message._constrains_mail_message_id","f":1.0,"c":0.95} +{"s":"odoo:mail_guest","p":"has_function","o":"odoo:mail_guest._compute_im_status","f":1.0,"c":0.95} +{"s":"odoo:mail_mail","p":"has_function","o":"odoo:mail_mail._check_mail_server_id","f":1.0,"c":0.95} +{"s":"odoo:mail_mail","p":"has_function","o":"odoo:mail_mail._compute_restricted_attachments","f":1.0,"c":0.95} +{"s":"odoo:mail_message","p":"has_function","o":"odoo:mail_message._compute_account_audit_log_preview","f":1.0,"c":0.95} +{"s":"odoo:mail_message","p":"has_function","o":"odoo:mail_message._compute_channel_id","f":1.0,"c":0.95} +{"s":"odoo:mail_message","p":"has_function","o":"odoo:mail_message._compute_is_current_user_or_guest_author","f":1.0,"c":0.95} +{"s":"odoo:mail_message","p":"has_function","o":"odoo:mail_message._compute_linked_message_ids","f":1.0,"c":0.95} +{"s":"odoo:mail_message","p":"has_function","o":"odoo:mail_message._compute_preview","f":1.0,"c":0.95} +{"s":"odoo:mail_message","p":"has_function","o":"odoo:mail_message._compute_rating_id","f":1.0,"c":0.95} +{"s":"odoo:mail_message","p":"has_function","o":"odoo:mail_message._compute_rating_value","f":1.0,"c":0.95} +{"s":"odoo:mail_message","p":"has_function","o":"odoo:mail_message._compute_record_name","f":1.0,"c":0.95} +{"s":"odoo:mail_message","p":"has_function","o":"odoo:mail_message._compute_snailmail_error","f":1.0,"c":0.95} +{"s":"odoo:mail_message","p":"has_function","o":"odoo:mail_message._compute_starred","f":1.0,"c":0.95} +{"s":"odoo:mail_notification","p":"has_function","o":"odoo:mail_notification._compute_sms_id","f":1.0,"c":0.95} +{"s":"odoo:mail_scheduled_message","p":"has_function","o":"odoo:mail_scheduled_message._check_model","f":1.0,"c":0.95} +{"s":"odoo:mail_scheduled_message","p":"has_function","o":"odoo:mail_scheduled_message._check_scheduled_date","f":1.0,"c":0.95} +{"s":"odoo:mail_template","p":"has_function","o":"odoo:mail_template._compute_has_dynamic_reports","f":1.0,"c":0.95} +{"s":"odoo:mail_template","p":"has_function","o":"odoo:mail_template._compute_render_model","f":1.0,"c":0.95} +{"s":"odoo:mail_template","p":"has_function","o":"odoo:mail_template._compute_template_category","f":1.0,"c":0.95} +{"s":"odoo:mail_template","p":"has_function","o":"odoo:mail_template._onchange_model","f":1.0,"c":0.95} +{"s":"odoo:mail_test_ticket","p":"has_function","o":"odoo:mail_test_ticket._compute_email_from","f":1.0,"c":0.95} +{"s":"odoo:mail_thread","p":"has_function","o":"odoo:mail_thread._compute_message_is_follower","f":1.0,"c":0.95} +{"s":"odoo:mail_thread","p":"has_function","o":"odoo:mail_thread._compute_message_partner_ids","f":1.0,"c":0.95} +{"s":"odoo:mail_thread_blacklist","p":"has_function","o":"odoo:mail_thread_blacklist._compute_email_normalized","f":1.0,"c":0.95} +{"s":"odoo:mail_thread_blacklist","p":"has_function","o":"odoo:mail_thread_blacklist._compute_is_blacklisted","f":1.0,"c":0.95} +{"s":"odoo:mail_thread_phone","p":"has_function","o":"odoo:mail_thread_phone._compute_blacklisted","f":1.0,"c":0.95} +{"s":"odoo:mail_thread_phone","p":"has_function","o":"odoo:mail_thread_phone._compute_phone_sanitized","f":1.0,"c":0.95} +{"s":"odoo:mail_tracking_duration_mixin","p":"has_function","o":"odoo:mail_tracking_duration_mixin._compute_rotting","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._check_mailing_filter_model","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_ab_testing_description","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_ab_testing_is_winner_mailing","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_calendar_date","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_email_from","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_favorite_date","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_is_ab_test_sent","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_is_body_empty","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_mailing_domain","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_mailing_filter_count","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_mailing_filter_id","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_mailing_model_real","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_mailing_on_mailing_list","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_mailing_type_description","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_medium_id","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_next_departure","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_render_model","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_reply_to","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_reply_to_mode","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_schedule_date","f":1.0,"c":0.95} +{"s":"odoo:mailing","p":"has_function","o":"odoo:mailing._compute_warning_message","f":1.0,"c":0.95} +{"s":"odoo:mailing_contact","p":"has_function","o":"odoo:mailing_contact._compute_name","f":1.0,"c":0.95} +{"s":"odoo:mailing_contact","p":"has_function","o":"odoo:mailing_contact._compute_opt_out","f":1.0,"c":0.95} +{"s":"odoo:mailing_filter","p":"has_function","o":"odoo:mailing_filter._check_mailing_domain","f":1.0,"c":0.95} +{"s":"odoo:mailing_list","p":"has_function","o":"odoo:mailing_list._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:mailing_list","p":"has_function","o":"odoo:mailing_list._compute_mailing_count","f":1.0,"c":0.95} +{"s":"odoo:mailing_list","p":"has_function","o":"odoo:mailing_list._compute_mailing_list_statistics","f":1.0,"c":0.95} +{"s":"odoo:mailing_mailing","p":"has_function","o":"odoo:mailing_mailing._check_mailing_domain","f":1.0,"c":0.95} +{"s":"odoo:mailing_mailing","p":"has_function","o":"odoo:mailing_mailing._compute_body_plaintext","f":1.0,"c":0.95} +{"s":"odoo:mailing_mailing","p":"has_function","o":"odoo:mailing_mailing._compute_card_requires_sync_count","f":1.0,"c":0.95} +{"s":"odoo:mailing_mailing","p":"has_function","o":"odoo:mailing_mailing._compute_mailing_model_id","f":1.0,"c":0.95} +{"s":"odoo:mailing_mailing","p":"has_function","o":"odoo:mailing_mailing._compute_medium_id","f":1.0,"c":0.95} +{"s":"odoo:mailing_mailing","p":"has_function","o":"odoo:mailing_mailing._compute_sale_invoiced_amount","f":1.0,"c":0.95} +{"s":"odoo:mailing_mailing","p":"has_function","o":"odoo:mailing_mailing._compute_sale_quotation_count","f":1.0,"c":0.95} +{"s":"odoo:mailing_mailing","p":"has_function","o":"odoo:mailing_mailing._compute_sms_has_iap_failure","f":1.0,"c":0.95} +{"s":"odoo:mailing_models","p":"has_function","o":"odoo:mailing_models._compute_email_from","f":1.0,"c":0.95} +{"s":"odoo:mailing_models_cornercase","p":"has_function","o":"odoo:mailing_models_cornercase._compute_partner_id","f":1.0,"c":0.95} +{"s":"odoo:mailing_subscription","p":"has_function","o":"odoo:mailing_subscription._compute_opt_out_datetime","f":1.0,"c":0.95} +{"s":"odoo:mailing_trace","p":"has_function","o":"odoo:mailing_trace._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:mailing_trace","p":"has_function","o":"odoo:mailing_trace._compute_sms_id","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._check_repeat_interval","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._check_schedule_end","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_duration","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_equipment","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_fold","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_maintenance_count","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_maintenance_request","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_maintenance_team_id","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_match_serial","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_recurring_maintenance","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_schedule_end","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_todo_requests","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._compute_user_id","f":1.0,"c":0.95} +{"s":"odoo:maintenance","p":"has_function","o":"odoo:maintenance._onchange_category_id","f":1.0,"c":0.95} +{"s":"odoo:mixins","p":"has_function","o":"odoo:mixins._compute_is_seo_optimized","f":1.0,"c":0.95} +{"s":"odoo:mixins","p":"has_function","o":"odoo:mixins._compute_website_absolute_url","f":1.0,"c":0.95} +{"s":"odoo:mixins","p":"has_function","o":"odoo:mixins._compute_website_published","f":1.0,"c":0.95} +{"s":"odoo:models_export_impex","p":"has_function","o":"odoo:models_export_impex._check_name_starts_with_uppercase_except_demo_data","f":1.0,"c":0.95} +{"s":"odoo:models_import","p":"has_function","o":"odoo:models_import._compute_all_import_properties","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._check_bom_cycle","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._check_bom_lines","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._check_subcontracting_no_operation","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._check_valid_batch_size","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._compute_attachments_count","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._compute_child_bom_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._compute_child_line_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._compute_operation_count","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._compute_possible_product_template_attribute_value_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._compute_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom._onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom.check_kit_has_not_orderpoint","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom.onchange_bom_structure","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom.onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_bom","p":"has_function","o":"odoo:mrp_bom.onchange_product_tmpl_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._check_byproducts","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._check_lot_producing_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_allowed_uom_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_bom_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_components_availability","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_date_deadline","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_date_finished","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_delay_alert_date","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_duration","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_duration_expected","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_forecasted_issue","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_has_analytic_account","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_is_delayed","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_is_planned","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_lines","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_locations","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_move_byproduct_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_move_finished_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_move_line_raw_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_move_raw_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_mrp_production_backorder","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_mrp_production_child_count","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_mrp_production_source_count","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_picking_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_picking_type_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_product_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_product_qty","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_product_uom_qty","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_production_capacity","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_production_location","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_project_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_purchase_order_count","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_reservation_state","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_sale_order_count","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_serial_numbers_count","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_show_allocation","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_show_generate_bom","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_show_lock","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_show_lot_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_show_lots","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_show_produce","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_state","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_unbuild_count","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_unreserve_visible","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_uom_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_wip_move_count","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._compute_workorder_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._get_produced_qty","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._onchange_lot_producing","f":1.0,"c":0.95} +{"s":"odoo:mrp_production","p":"has_function","o":"odoo:mrp_production._onchange_qty_producing","f":1.0,"c":0.95} +{"s":"odoo:mrp_routing","p":"has_function","o":"odoo:mrp_routing._check_no_cyclic_dependencies","f":1.0,"c":0.95} +{"s":"odoo:mrp_routing","p":"has_function","o":"odoo:mrp_routing._compute_cost","f":1.0,"c":0.95} +{"s":"odoo:mrp_routing","p":"has_function","o":"odoo:mrp_routing._compute_time_computed_on","f":1.0,"c":0.95} +{"s":"odoo:mrp_routing","p":"has_function","o":"odoo:mrp_routing._compute_time_cycle","f":1.0,"c":0.95} +{"s":"odoo:mrp_unbuild","p":"has_function","o":"odoo:mrp_unbuild._compute_bom_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_unbuild","p":"has_function","o":"odoo:mrp_unbuild._compute_location_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_unbuild","p":"has_function","o":"odoo:mrp_unbuild._compute_product_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_unbuild","p":"has_function","o":"odoo:mrp_unbuild._compute_product_qty","f":1.0,"c":0.95} +{"s":"odoo:mrp_unbuild","p":"has_function","o":"odoo:mrp_unbuild._compute_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._check_alternative_workcenter","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._check_open_time_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._compute_costs_hour_account_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._compute_duration","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._compute_has_routing_lines","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._compute_oee","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._compute_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._compute_working_state","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._compute_workorder_count","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._date_end_changed","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._date_start_changed","f":1.0,"c":0.95} +{"s":"odoo:mrp_workcenter","p":"has_function","o":"odoo:mrp_workcenter._duration_changed","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._check_no_cyclic_dependencies","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_barcode","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_dates","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_duration","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_duration_expected","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_is_produced","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_json_popover","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_production_date","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_progress","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_qty_producing","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_qty_ready","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_qty_remaining","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._compute_state","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._onchange_date_finished","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._onchange_date_start","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._onchange_finished_lot_ids","f":1.0,"c":0.95} +{"s":"odoo:mrp_workorder","p":"has_function","o":"odoo:mrp_workorder._onchange_operation_id","f":1.0,"c":0.95} +{"s":"odoo:myinvois_document","p":"has_function","o":"odoo:myinvois_document._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:myinvois_document","p":"has_function","o":"odoo:myinvois_document._compute_name","f":1.0,"c":0.95} +{"s":"odoo:myinvois_document_pos","p":"has_function","o":"odoo:myinvois_document_pos._compute_pos_order_date_range","f":1.0,"c":0.95} +{"s":"odoo:onboarding_onboarding","p":"has_function","o":"odoo:onboarding_onboarding._compute_current_progress","f":1.0,"c":0.95} +{"s":"odoo:onboarding_onboarding","p":"has_function","o":"odoo:onboarding_onboarding._compute_is_per_company","f":1.0,"c":0.95} +{"s":"odoo:onboarding_onboarding_step","p":"has_function","o":"odoo:onboarding_onboarding_step._compute_current_progress","f":1.0,"c":0.95} +{"s":"odoo:onboarding_onboarding_step","p":"has_function","o":"odoo:onboarding_onboarding_step.check_step_on_onboarding_has_action","f":1.0,"c":0.95} +{"s":"odoo:onboarding_progress","p":"has_function","o":"odoo:onboarding_progress._compute_onboarding_state","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._check_zip","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._compute_account_map","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._compute_days_sales_outstanding","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._compute_fiscal_country_codes","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._compute_fiscal_country_group_codes","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._compute_foreign_vat_header_mode","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._compute_invoice_edi_format","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._compute_is_domestic","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._compute_partner_company_registry_placeholder","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._compute_partner_vat_placeholder","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._compute_tax_map","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._onchange_country_group_id","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._onchange_country_id","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._onchange_foreign_vat","f":1.0,"c":0.95} +{"s":"odoo:partner","p":"has_function","o":"odoo:partner._validate_foreign_vat_country","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._check_amount_to_capture_within_boundaries","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._compute_amount_to_capture","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._compute_authorized_amount","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._compute_available_amount","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._compute_captured_amount","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._compute_has_adyen_tx","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._compute_has_draft_children","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._compute_has_remaining_amount","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._compute_is_amount_to_capture_valid","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._compute_support_partial_capture","f":1.0,"c":0.95} +{"s":"odoo:payment_capture_wizard","p":"has_function","o":"odoo:payment_capture_wizard._compute_voided_amount","f":1.0,"c":0.95} +{"s":"odoo:payment_link_wizard","p":"has_function","o":"odoo:payment_link_wizard._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:payment_link_wizard","p":"has_function","o":"odoo:payment_link_wizard._compute_display_open_installments","f":1.0,"c":0.95} +{"s":"odoo:payment_link_wizard","p":"has_function","o":"odoo:payment_link_wizard._compute_epd_info","f":1.0,"c":0.95} +{"s":"odoo:payment_link_wizard","p":"has_function","o":"odoo:payment_link_wizard._compute_invoice_amount_due","f":1.0,"c":0.95} +{"s":"odoo:payment_link_wizard","p":"has_function","o":"odoo:payment_link_wizard._compute_link","f":1.0,"c":0.95} +{"s":"odoo:payment_link_wizard","p":"has_function","o":"odoo:payment_link_wizard._compute_open_installments_preview","f":1.0,"c":0.95} +{"s":"odoo:payment_link_wizard","p":"has_function","o":"odoo:payment_link_wizard._compute_warning_message","f":1.0,"c":0.95} +{"s":"odoo:payment_method","p":"has_function","o":"odoo:payment_method._check_manual_capture_supported_by_providers","f":1.0,"c":0.95} +{"s":"odoo:payment_method","p":"has_function","o":"odoo:payment_method._onchange_provider_ids_warn_before_attaching_payment_method","f":1.0,"c":0.95} +{"s":"odoo:payment_method","p":"has_function","o":"odoo:payment_method._onchange_warn_before_disabling_tokens","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._check_available_country_currency_ids","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._check_available_currency_ids_only_contains_supported_currencies","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._check_currency_is_supported","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._check_manual_capture_supported_by_payment_methods","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._check_mercado_pago_credentials_are_set_before_allowing_tokenization","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._check_mercado_pago_credentials_are_set_before_enabling","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._check_onboarding_of_enabled_provider_is_completed","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._check_provider_state","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._check_razorpay_credentials_are_set_before_enabling","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._check_state_of_connected_account_is_never_test","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._compute_available_currency_ids","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._compute_color","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._compute_feature_support_fields","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._compute_journal_id","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._limit_available_currency_ids","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._onchange_company_block_if_existing_transactions","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._onchange_state_switch_is_published","f":1.0,"c":0.95} +{"s":"odoo:payment_provider","p":"has_function","o":"odoo:payment_provider._onchange_state_warn_before_disabling_tokens","f":1.0,"c":0.95} +{"s":"odoo:payment_refund_wizard","p":"has_function","o":"odoo:payment_refund_wizard._check_amount_to_refund_within_boundaries","f":1.0,"c":0.95} +{"s":"odoo:payment_refund_wizard","p":"has_function","o":"odoo:payment_refund_wizard._compute_amount_to_refund","f":1.0,"c":0.95} +{"s":"odoo:payment_refund_wizard","p":"has_function","o":"odoo:payment_refund_wizard._compute_has_pending_refund","f":1.0,"c":0.95} +{"s":"odoo:payment_refund_wizard","p":"has_function","o":"odoo:payment_refund_wizard._compute_refunded_amount","f":1.0,"c":0.95} +{"s":"odoo:payment_refund_wizard","p":"has_function","o":"odoo:payment_refund_wizard._compute_support_refund","f":1.0,"c":0.95} +{"s":"odoo:payment_token","p":"has_function","o":"odoo:payment_token._check_partner_is_never_public","f":1.0,"c":0.95} +{"s":"odoo:payment_token","p":"has_function","o":"odoo:payment_token._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:payment_transaction","p":"has_function","o":"odoo:payment_transaction._check_state_authorized_supported","f":1.0,"c":0.95} +{"s":"odoo:payment_transaction","p":"has_function","o":"odoo:payment_transaction._check_token_is_active","f":1.0,"c":0.95} +{"s":"odoo:payment_transaction","p":"has_function","o":"odoo:payment_transaction._compute_invoices_count","f":1.0,"c":0.95} +{"s":"odoo:payment_transaction","p":"has_function","o":"odoo:payment_transaction._compute_sale_order_ids_nbr","f":1.0,"c":0.95} +{"s":"odoo:pos","p":"has_function","o":"odoo:pos._compute_previous_order","f":1.0,"c":0.95} +{"s":"odoo:pos_category","p":"has_function","o":"odoo:pos_category._check_category_recursion","f":1.0,"c":0.95} +{"s":"odoo:pos_category","p":"has_function","o":"odoo:pos_category._check_hour","f":1.0,"c":0.95} +{"s":"odoo:pos_category","p":"has_function","o":"odoo:pos_category._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:pos_category","p":"has_function","o":"odoo:pos_category._compute_has_image","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_adyen_ask_customer_for_tip","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_companies","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_company_payment","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_currencies","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_default_user","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_online_payment_methods","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_payment_method_ids_journal","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_pricelists","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_rounding_method_strategy","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_self_order_online_payment_method_id","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._check_trusted_config_ids_currency","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_cash_control","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_company_has_template","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_currency","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_current_session","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_current_session_user","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_fast_payment_method_ids","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_is_spanish","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_l10n_vn_pos_symbol","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_last_session","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_local_data_integrity","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_self_order","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._compute_warehouse_id","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._onchange_advanced_employee_ids","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._onchange_basic_employee_ids","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._onchange_epson_printer_ip","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._onchange_minimal_employee_ids","f":1.0,"c":0.95} +{"s":"odoo:pos_config","p":"has_function","o":"odoo:pos_config._onchange_payment_method_ids","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._check_session_state","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_attendee_count","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_cashier","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_contact_details","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_currency_rate","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_has_refundable_lines","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_invoice_status","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_is_edited","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_is_invoiced","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_is_total_cost_computed","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_l10n_es_edi_verifactu_qr_code","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_l10n_es_edi_verifactu_state","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_l10n_es_edi_verifactu_warning","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_l10n_es_simplified_invoice_number","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_l10n_es_tbai_state","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_l10n_jo_edi_pos_computed_xml","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_l10n_jo_edi_pos_uuid","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_l10n_sa_reason_value","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_margin","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_online_payment_method_id","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_order_config_id","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_picking_count","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_qty_delivered","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_refund_qty","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_refund_related_fields","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_sinvoice_has_pdf","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._compute_use_self_order_online_payment","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._get_tax_ids_after_fiscal_position","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._onchange_amount_all","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._onchange_amount_line_all","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._onchange_l10n_jo_edi_pos_state","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._onchange_partner_id","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:pos_order","p":"has_function","o":"odoo:pos_order._onchange_qty","f":1.0,"c":0.95} +{"s":"odoo:pos_order_line","p":"has_function","o":"odoo:pos_order_line._compute_l10n_in_hsn_code","f":1.0,"c":0.95} +{"s":"odoo:pos_payment","p":"has_function","o":"odoo:pos_payment._check_amount","f":1.0,"c":0.95} +{"s":"odoo:pos_payment","p":"has_function","o":"odoo:pos_payment._check_payment_method_id","f":1.0,"c":0.95} +{"s":"odoo:pos_payment","p":"has_function","o":"odoo:pos_payment._compute_cashier","f":1.0,"c":0.95} +{"s":"odoo:pos_payment","p":"has_function","o":"odoo:pos_payment._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_adyen_terminal_identifier","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_business_short_code","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_cash_method_single_shop","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_company_config","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_payment_method","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_pine_labs_terminal","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_pos_config_online_payment","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_qfpay_terminal","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_razorpay_terminal","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_stripe_serial_number","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._check_viva_com_credentials","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._compute_has_an_online_payment_provider","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._compute_hide_qr_code_method","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._compute_hide_use_payment_terminal","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._compute_is_cash_count","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._compute_l10n_jo_edi_pos_is_cash","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._compute_open_session_ids","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._compute_qr","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._compute_type","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._onchange_is_online_payment","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._onchange_journal_id","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._onchange_payment_method_type","f":1.0,"c":0.95} +{"s":"odoo:pos_payment_method","p":"has_function","o":"odoo:pos_payment_method._onchange_use_payment_terminal","f":1.0,"c":0.95} +{"s":"odoo:pos_preset","p":"has_function","o":"odoo:pos_preset._check_slots","f":1.0,"c":0.95} +{"s":"odoo:pos_preset","p":"has_function","o":"odoo:pos_preset._compute_has_image","f":1.0,"c":0.95} +{"s":"odoo:pos_printer","p":"has_function","o":"odoo:pos_printer._constrains_epson_printer_ip","f":1.0,"c":0.95} +{"s":"odoo:pos_printer","p":"has_function","o":"odoo:pos_printer._onchange_epson_printer_ip","f":1.0,"c":0.95} +{"s":"odoo:pos_restaurant","p":"has_function","o":"odoo:pos_restaurant._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:pos_self_order_custom_link","p":"has_function","o":"odoo:pos_self_order_custom_link._compute_link_html","f":1.0,"c":0.95} +{"s":"odoo:pos_session","p":"has_function","o":"odoo:pos_session._check_pos_config","f":1.0,"c":0.95} +{"s":"odoo:pos_session","p":"has_function","o":"odoo:pos_session._check_start_date","f":1.0,"c":0.95} +{"s":"odoo:pos_session","p":"has_function","o":"odoo:pos_session._compute_cash_balance","f":1.0,"c":0.95} +{"s":"odoo:pos_session","p":"has_function","o":"odoo:pos_session._compute_cash_control","f":1.0,"c":0.95} +{"s":"odoo:pos_session","p":"has_function","o":"odoo:pos_session._compute_cash_journal","f":1.0,"c":0.95} +{"s":"odoo:pos_session","p":"has_function","o":"odoo:pos_session._compute_is_in_company_currency","f":1.0,"c":0.95} +{"s":"odoo:pos_session","p":"has_function","o":"odoo:pos_session._compute_picking_count","f":1.0,"c":0.95} +{"s":"odoo:pos_session","p":"has_function","o":"odoo:pos_session._compute_total_payments_amount","f":1.0,"c":0.95} +{"s":"odoo:preferred_classification","p":"has_function","o":"odoo:preferred_classification._compute_l10n_gr_edi_available_cls_category","f":1.0,"c":0.95} +{"s":"odoo:preferred_classification","p":"has_function","o":"odoo:preferred_classification._compute_l10n_gr_edi_available_cls_type","f":1.0,"c":0.95} +{"s":"odoo:preferred_classification","p":"has_function","o":"odoo:preferred_classification._onchange_reset_cls_category","f":1.0,"c":0.95} +{"s":"odoo:preferred_classification","p":"has_function","o":"odoo:preferred_classification._onchange_reset_cls_type","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._check_uom_not_in_invoice","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_cost_method","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_fiscal_country_codes","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_has_available_route_ids","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_is_subcontractor","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_lot_valuated","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_next_serial","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_parent_route_ids","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_purchase_method","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_quantities","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_serial_prefix_format","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_show_qty_status_button","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_show_qty_update_button","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_suggest_estimated_price","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_suggested_quantity","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_tax_string","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_total_route_ids","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_tracking","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_valid_ean","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_valuation","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._compute_value","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._onchange_buy_route","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._onchange_partner_id","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._onchange_tracking","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product._onchange_type","f":1.0,"c":0.95} +{"s":"odoo:product","p":"has_function","o":"odoo:product.compute_is_storable","f":1.0,"c":0.95} +{"s":"odoo:product_attribute","p":"has_function","o":"odoo:product_attribute._compute_number_related_products","f":1.0,"c":0.95} +{"s":"odoo:product_attribute","p":"has_function","o":"odoo:product_attribute._compute_products","f":1.0,"c":0.95} +{"s":"odoo:product_attribute","p":"has_function","o":"odoo:product_attribute._onchange_disable_preview_variants","f":1.0,"c":0.95} +{"s":"odoo:product_attribute","p":"has_function","o":"odoo:product_attribute._onchange_display_type","f":1.0,"c":0.95} +{"s":"odoo:product_attribute_custom_value","p":"has_function","o":"odoo:product_attribute_custom_value._compute_name","f":1.0,"c":0.95} +{"s":"odoo:product_attribute_value","p":"has_function","o":"odoo:product_attribute_value._compute_default_extra_price_changed","f":1.0,"c":0.95} +{"s":"odoo:product_attribute_value","p":"has_function","o":"odoo:product_attribute_value._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:product_attribute_value","p":"has_function","o":"odoo:product_attribute_value._compute_is_used_on_products","f":1.0,"c":0.95} +{"s":"odoo:product_category","p":"has_function","o":"odoo:product_category._check_category_recursion","f":1.0,"c":0.95} +{"s":"odoo:product_category","p":"has_function","o":"odoo:product_category._compute_complete_name","f":1.0,"c":0.95} +{"s":"odoo:product_code","p":"has_function","o":"odoo:product_code._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:product_combo","p":"has_function","o":"odoo:product_combo._check_combo_item_ids_no_duplicates","f":1.0,"c":0.95} +{"s":"odoo:product_combo","p":"has_function","o":"odoo:product_combo._check_combo_item_ids_not_empty","f":1.0,"c":0.95} +{"s":"odoo:product_combo","p":"has_function","o":"odoo:product_combo._check_company_id","f":1.0,"c":0.95} +{"s":"odoo:product_combo","p":"has_function","o":"odoo:product_combo._check_qty_free","f":1.0,"c":0.95} +{"s":"odoo:product_combo","p":"has_function","o":"odoo:product_combo._check_qty_max","f":1.0,"c":0.95} +{"s":"odoo:product_combo","p":"has_function","o":"odoo:product_combo._check_qty_max_greater_than_qty_free","f":1.0,"c":0.95} +{"s":"odoo:product_combo","p":"has_function","o":"odoo:product_combo._compute_base_price","f":1.0,"c":0.95} +{"s":"odoo:product_combo","p":"has_function","o":"odoo:product_combo._compute_combo_item_count","f":1.0,"c":0.95} +{"s":"odoo:product_combo","p":"has_function","o":"odoo:product_combo._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:product_combo_item","p":"has_function","o":"odoo:product_combo_item._check_product_id_no_combo","f":1.0,"c":0.95} +{"s":"odoo:product_document","p":"has_function","o":"odoo:product_document._check_attached_on_and_datas_compatibility","f":1.0,"c":0.95} +{"s":"odoo:product_document","p":"has_function","o":"odoo:product_document._check_product_is_unpublished_before_removing_print_images","f":1.0,"c":0.95} +{"s":"odoo:product_document","p":"has_function","o":"odoo:product_document._compute_form_field_ids","f":1.0,"c":0.95} +{"s":"odoo:product_document","p":"has_function","o":"odoo:product_document._onchange_url","f":1.0,"c":0.95} +{"s":"odoo:product_document","p":"has_function","o":"odoo:product_document._unsupported_product_product_document_on_ecommerce","f":1.0,"c":0.95} +{"s":"odoo:product_feed","p":"has_function","o":"odoo:product_feed._check_product_limit","f":1.0,"c":0.95} +{"s":"odoo:product_feed","p":"has_function","o":"odoo:product_feed._compute_feed_cache","f":1.0,"c":0.95} +{"s":"odoo:product_feed","p":"has_function","o":"odoo:product_feed._compute_lang_id","f":1.0,"c":0.95} +{"s":"odoo:product_feed","p":"has_function","o":"odoo:product_feed._compute_url","f":1.0,"c":0.95} +{"s":"odoo:product_image","p":"has_function","o":"odoo:product_image._check_valid_video_url","f":1.0,"c":0.95} +{"s":"odoo:product_image","p":"has_function","o":"odoo:product_image._compute_can_image_1024_be_zoomed","f":1.0,"c":0.95} +{"s":"odoo:product_image","p":"has_function","o":"odoo:product_image._compute_embed_code","f":1.0,"c":0.95} +{"s":"odoo:product_image","p":"has_function","o":"odoo:product_image._onchange_video_url","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist","p":"has_function","o":"odoo:product_pricelist._check_websites_in_company","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist","p":"has_function","o":"odoo:product_pricelist._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist","p":"has_function","o":"odoo:product_pricelist._onchange_event_sale_warning","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._check_base_pricelist_id","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._check_date_range","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._check_margin","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._check_pricelist_recursion","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._check_product_consistency","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._compute_name","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._compute_price_label","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._compute_price_markup","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._compute_rule_tip","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._onchange_base","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._onchange_base_pricelist_id","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._onchange_compute_price","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._onchange_display_applied_on","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._onchange_price_round","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._onchange_product_tmpl_id","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._onchange_rule_content","f":1.0,"c":0.95} +{"s":"odoo:product_pricelist_item","p":"has_function","o":"odoo:product_pricelist_item._onchange_validity_period","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._check_barcode_uniqueness","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._check_base_unit_count","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._check_company_id","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._check_event_ticket_service_tracking","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._check_l10n_tr_ctsp_number","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._check_service_tracking_for_event_booths","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_all_product_tag_ids","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_base_unit_name","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_base_unit_price","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_can_image_variant_1024_be_zoomed","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_combination_indices","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_import_attribute_values","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_pricelist_rule_ids","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_product_lst_price","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_product_price_extra","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_product_website_url","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_standard_price_update_warning","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._compute_write_date","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._on_change_available_in_pos","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._onchange_default_code","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._onchange_public_categ_ids","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._onchange_service_fields","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._onchange_service_policy","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._onchange_service_tracking","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._onchange_standard_price","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._onchange_type","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._onchange_type_event_booth","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._onchange_uom_id","f":1.0,"c":0.95} +{"s":"odoo:product_product","p":"has_function","o":"odoo:product_product._set_product_lst_price","f":1.0,"c":0.95} +{"s":"odoo:product_public_category","p":"has_function","o":"odoo:product_public_category._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:product_public_category","p":"has_function","o":"odoo:product_public_category._compute_parents_and_self","f":1.0,"c":0.95} +{"s":"odoo:product_public_category","p":"has_function","o":"odoo:product_public_category.check_parent_id","f":1.0,"c":0.95} +{"s":"odoo:product_ribbon","p":"has_function","o":"odoo:product_ribbon._check_assign","f":1.0,"c":0.95} +{"s":"odoo:product_strategy","p":"has_function","o":"odoo:product_strategy._compute_storage_category","f":1.0,"c":0.95} +{"s":"odoo:product_strategy","p":"has_function","o":"odoo:product_strategy._onchange_location_in","f":1.0,"c":0.95} +{"s":"odoo:product_strategy","p":"has_function","o":"odoo:product_strategy._onchange_sublocation","f":1.0,"c":0.95} +{"s":"odoo:product_supplierinfo","p":"has_function","o":"odoo:product_supplierinfo._compute_price","f":1.0,"c":0.95} +{"s":"odoo:product_supplierinfo","p":"has_function","o":"odoo:product_supplierinfo._compute_price_discounted","f":1.0,"c":0.95} +{"s":"odoo:product_supplierinfo","p":"has_function","o":"odoo:product_supplierinfo._compute_product_id","f":1.0,"c":0.95} +{"s":"odoo:product_supplierinfo","p":"has_function","o":"odoo:product_supplierinfo._compute_product_tmpl_id","f":1.0,"c":0.95} +{"s":"odoo:product_supplierinfo","p":"has_function","o":"odoo:product_supplierinfo._compute_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:product_supplierinfo","p":"has_function","o":"odoo:product_supplierinfo._onchange_product_tmpl_id","f":1.0,"c":0.95} +{"s":"odoo:product_tag","p":"has_function","o":"odoo:product_tag._compute_has_image","f":1.0,"c":0.95} +{"s":"odoo:product_tag","p":"has_function","o":"odoo:product_tag._compute_product_ids","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._check_barcode_uniqueness","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._check_combo_ids_not_empty","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._check_combo_inclusions","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._check_incompatible_types","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._check_print_images_are_set_before_publishing","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._check_project_and_template","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._check_sale_combo_ids","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._check_sale_product_company","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._check_service_to_purchase","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._check_service_tracking_for_event_booths","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_barcode","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_base_unit_count","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_base_unit_id","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_base_unit_name","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_base_unit_price","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_can_be_expensed","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_can_image_1024_be_zoomed","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_color","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_cost_currency_id","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_default_code","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_expense_policy","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_expense_policy_tooltip","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_gelato_missing_images","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_gelato_product_uid","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_has_configurable_attributes","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_invoice_policy","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_is_dynamically_created","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_l10n_eg_eta_code","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_l10n_id_product_code","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_l10n_in_hsn_warning","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_l10n_in_is_gst_registered_enabled","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_l10n_tr_ctsp_number","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_product_tooltip","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_product_variant_count","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_product_variant_id","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_publish_date","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_purchase_ok","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_sales_count","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_service_policy","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_service_tracking","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_service_type","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_service_upsell_threshold_ratio","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_standard_price","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_task_template","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_valid_product_template_attribute_line_ids","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_variants_default_code","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_visible_expense_policy","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_volume","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_volume_uom_name","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_weight","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._compute_weight_uom_name","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._inverse_service_policy","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_available_in_pos","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_default_code","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_sale_ok","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_service_fields","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_service_policy","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_service_to_purchase","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_service_tracking","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_standard_price","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_type","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_type_event","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_type_event_booth","f":1.0,"c":0.95} +{"s":"odoo:product_template","p":"has_function","o":"odoo:product_template._onchange_uom_id","f":1.0,"c":0.95} +{"s":"odoo:product_template_attribute_line","p":"has_function","o":"odoo:product_template_attribute_line._check_valid_values","f":1.0,"c":0.95} +{"s":"odoo:product_template_attribute_line","p":"has_function","o":"odoo:product_template_attribute_line._compute_value_count","f":1.0,"c":0.95} +{"s":"odoo:product_template_attribute_line","p":"has_function","o":"odoo:product_template_attribute_line._onchange_attribute_id","f":1.0,"c":0.95} +{"s":"odoo:product_template_attribute_value","p":"has_function","o":"odoo:product_template_attribute_value._check_valid_values","f":1.0,"c":0.95} +{"s":"odoo:product_template_attribute_value","p":"has_function","o":"odoo:product_template_attribute_value._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:product_uom","p":"has_function","o":"odoo:product_uom._check_barcode_uniqueness","f":1.0,"c":0.95} +{"s":"odoo:product_value","p":"has_function","o":"odoo:product_value._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:product_wishlist","p":"has_function","o":"odoo:product_wishlist._compute_stock_notification","f":1.0,"c":0.95} +{"s":"odoo:production","p":"has_function","o":"odoo:production._compute_repair_count","f":1.0,"c":0.95} +{"s":"odoo:production_lot","p":"has_function","o":"odoo:production_lot._compute_dates","f":1.0,"c":0.95} +{"s":"odoo:production_lot","p":"has_function","o":"odoo:production_lot._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:production_lot","p":"has_function","o":"odoo:production_lot._compute_expiration_date","f":1.0,"c":0.95} +{"s":"odoo:production_lot","p":"has_function","o":"odoo:production_lot._compute_product_expiry_alert","f":1.0,"c":0.95} +{"s":"odoo:project_collaborator","p":"has_function","o":"odoo:project_collaborator._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:project_milestone","p":"has_function","o":"odoo:project_milestone._compute_is_deadline_exceeded","f":1.0,"c":0.95} +{"s":"odoo:project_milestone","p":"has_function","o":"odoo:project_milestone._compute_is_deadline_future","f":1.0,"c":0.95} +{"s":"odoo:project_milestone","p":"has_function","o":"odoo:project_milestone._compute_product_uom_qty","f":1.0,"c":0.95} +{"s":"odoo:project_milestone","p":"has_function","o":"odoo:project_milestone._compute_project_allow_milestones","f":1.0,"c":0.95} +{"s":"odoo:project_milestone","p":"has_function","o":"odoo:project_milestone._compute_quantity_percentage","f":1.0,"c":0.95} +{"s":"odoo:project_milestone","p":"has_function","o":"odoo:project_milestone._compute_reached_date","f":1.0,"c":0.95} +{"s":"odoo:project_milestone","p":"has_function","o":"odoo:project_milestone._compute_task_count","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._check_account_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._check_allow_timesheet","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._check_sale_line_type","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_access_instruction_message","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_allow_timesheets","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_billing_type","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_collaborator_count","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_display_sales_stat_buttons","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_has_any_so_to_invoice","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_has_any_so_with_nothing_to_invoice","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_is_internal_project","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_is_milestone_exceeded","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_last_update_color","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_last_update_status","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_milestone_count","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_milestone_reached_count","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_next_milestone_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_partner_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_pricing_type","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_privacy_visibility_warning","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_remaining_hours","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_resource_calendar_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_sale_line_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_sale_order_count","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_show_ratings","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_task_completion_percentage","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_timesheet_encode_uom_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_timesheet_product_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_total_timesheet_time","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._compute_total_update_ids","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._ensure_stage_has_same_company","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._onchange_company_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._onchange_reinvoiced_sale_order_id","f":1.0,"c":0.95} +{"s":"odoo:project_project","p":"has_function","o":"odoo:project_project._onchange_sale_line_id","f":1.0,"c":0.95} +{"s":"odoo:project_sale_line_employee_map","p":"has_function","o":"odoo:project_sale_line_employee_map._compute_cost","f":1.0,"c":0.95} +{"s":"odoo:project_sale_line_employee_map","p":"has_function","o":"odoo:project_sale_line_employee_map._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:project_sale_line_employee_map","p":"has_function","o":"odoo:project_sale_line_employee_map._compute_display_cost","f":1.0,"c":0.95} +{"s":"odoo:project_sale_line_employee_map","p":"has_function","o":"odoo:project_sale_line_employee_map._compute_existing_employee_ids","f":1.0,"c":0.95} +{"s":"odoo:project_sale_line_employee_map","p":"has_function","o":"odoo:project_sale_line_employee_map._compute_is_cost_changed","f":1.0,"c":0.95} +{"s":"odoo:project_sale_line_employee_map","p":"has_function","o":"odoo:project_sale_line_employee_map._compute_price_unit","f":1.0,"c":0.95} +{"s":"odoo:project_sale_line_employee_map","p":"has_function","o":"odoo:project_sale_line_employee_map._compute_sale_line_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._check_no_cyclic_dependencies","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._check_parent_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._check_project_root","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._check_sale_line_type","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_allow_timesheets","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_depend_on_count","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_dependent_tasks_count","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_display_in_project","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_display_sale_order_button","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_effective_hours","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_elapsed","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_has_multi_sol","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_has_template_ancestor","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_is_closed","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_is_project_map_empty","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_milestone_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_partner_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_partner_phone","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_personal_stage_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_portal_user_names","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_progress_hours","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_project_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_recurring_count","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_remaining_hours","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_remaining_hours_percentage","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_remaining_hours_so","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_repeat","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_sale_line","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_sale_order_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_stage_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_state","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_subtask_allocated_hours","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_subtask_completion_percentage","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_subtask_count","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_subtask_effective_hours","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_task_to_invoice","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._compute_total_hours_spent","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._ensure_company_consistency_with_partner","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._ensure_super_task_is_not_private","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._onchange_partner_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._onchange_project_id","f":1.0,"c":0.95} +{"s":"odoo:project_task","p":"has_function","o":"odoo:project_task._onchange_task_company","f":1.0,"c":0.95} +{"s":"odoo:project_task_recurrence","p":"has_function","o":"odoo:project_task_recurrence._check_repeat_interval","f":1.0,"c":0.95} +{"s":"odoo:project_task_recurrence","p":"has_function","o":"odoo:project_task_recurrence._check_repeat_until_date","f":1.0,"c":0.95} +{"s":"odoo:project_task_type","p":"has_function","o":"odoo:project_task_type._check_personal_stage_not_linked_to_projects","f":1.0,"c":0.95} +{"s":"odoo:project_task_type","p":"has_function","o":"odoo:project_task_type._compute_rating_request_deadline","f":1.0,"c":0.95} +{"s":"odoo:project_task_type","p":"has_function","o":"odoo:project_task_type._compute_show_rating_active","f":1.0,"c":0.95} +{"s":"odoo:project_task_type","p":"has_function","o":"odoo:project_task_type._compute_user_id","f":1.0,"c":0.95} +{"s":"odoo:project_task_type","p":"has_function","o":"odoo:project_task_type._onchange_project_ids","f":1.0,"c":0.95} +{"s":"odoo:project_update","p":"has_function","o":"odoo:project_update._compute_color","f":1.0,"c":0.95} +{"s":"odoo:project_update","p":"has_function","o":"odoo:project_update._compute_name_cropped","f":1.0,"c":0.95} +{"s":"odoo:project_update","p":"has_function","o":"odoo:project_update._compute_progress_percentage","f":1.0,"c":0.95} +{"s":"odoo:purchase","p":"has_function","o":"odoo:purchase._apply_grid","f":1.0,"c":0.95} +{"s":"odoo:purchase","p":"has_function","o":"odoo:purchase._compute_default_location_dest_id_is_subcontracting_loc","f":1.0,"c":0.95} +{"s":"odoo:purchase","p":"has_function","o":"odoo:purchase._compute_dest_address_id","f":1.0,"c":0.95} +{"s":"odoo:purchase","p":"has_function","o":"odoo:purchase._compute_incoming_picking_count","f":1.0,"c":0.95} +{"s":"odoo:purchase","p":"has_function","o":"odoo:purchase._compute_mrp_production_count","f":1.0,"c":0.95} +{"s":"odoo:purchase","p":"has_function","o":"odoo:purchase._compute_on_time_rate_perc","f":1.0,"c":0.95} +{"s":"odoo:purchase","p":"has_function","o":"odoo:purchase._compute_price_total_cc","f":1.0,"c":0.95} +{"s":"odoo:purchase","p":"has_function","o":"odoo:purchase._onchange_requisition_id","f":1.0,"c":0.95} +{"s":"odoo:purchase","p":"has_function","o":"odoo:purchase._set_grid_up","f":1.0,"c":0.95} +{"s":"odoo:purchase","p":"has_function","o":"odoo:purchase.onchange_picking_type_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_bill_line_match","p":"has_function","o":"odoo:purchase_bill_line_match._compute_product_uom_price","f":1.0,"c":0.95} +{"s":"odoo:purchase_bill_line_match","p":"has_function","o":"odoo:purchase_bill_line_match._inverse_product_uom_price","f":1.0,"c":0.95} +{"s":"odoo:purchase_bill_line_match","p":"has_function","o":"odoo:purchase_bill_line_match._inverse_product_uom_qty","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._amount_all","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._check_order_line_company_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_amount_total_cc","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_currency_rate","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_date_calendar_start","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_date_planned","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_dest_address_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_duplicated_order_ids","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_effective_date","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_incoming_picking_count","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_invoice","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_is_shipped","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_picking_ids","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_purchase_warning_text","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_receipt_reminder_email","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_receipt_status","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_repair_count","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_sale_order_count","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_show_comparison","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_subcontracting_resupply_picking_count","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_tax_country_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_tax_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._compute_tax_totals","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._get_invoiced","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order._onchange_company_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order.onchange_date_planned","f":1.0,"c":0.95} +{"s":"odoo:purchase_order","p":"has_function","o":"odoo:purchase_order.onchange_partner_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_allowed_uom_ids","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_amount","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_amount_to_invoice_at_date","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_analytic_distribution","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_forecasted_issue","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_price_unit_and_date_planned_and_name","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_price_unit_discounted","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_price_unit_product_uom","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_product_uom_qty","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_purchase_line_warn_msg","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_qty_invoiced","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_qty_invoiced_at_date","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_qty_received","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_qty_received_at_date","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_qty_received_method","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_selected_seller_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._compute_translated_product_name","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line._inverse_qty_received","f":1.0,"c":0.95} +{"s":"odoo:purchase_order_line","p":"has_function","o":"odoo:purchase_order_line.onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_requisition","p":"has_function","o":"odoo:purchase_requisition._check_dates","f":1.0,"c":0.95} +{"s":"odoo:purchase_requisition","p":"has_function","o":"odoo:purchase_requisition._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_requisition","p":"has_function","o":"odoo:purchase_requisition._compute_ordered_qty","f":1.0,"c":0.95} +{"s":"odoo:purchase_requisition","p":"has_function","o":"odoo:purchase_requisition._compute_orders_number","f":1.0,"c":0.95} +{"s":"odoo:purchase_requisition","p":"has_function","o":"odoo:purchase_requisition._compute_price_unit","f":1.0,"c":0.95} +{"s":"odoo:purchase_requisition","p":"has_function","o":"odoo:purchase_requisition._compute_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:purchase_requisition","p":"has_function","o":"odoo:purchase_requisition._onchange_vendor","f":1.0,"c":0.95} +{"s":"odoo:qris_transaction","p":"has_function","o":"odoo:qris_transaction._constraint_model","f":1.0,"c":0.95} +{"s":"odoo:quotation_document","p":"has_function","o":"odoo:quotation_document._check_pdf_validity","f":1.0,"c":0.95} +{"s":"odoo:quotation_document","p":"has_function","o":"odoo:quotation_document._compute_form_field_ids","f":1.0,"c":0.95} +{"s":"odoo:rating","p":"has_function","o":"odoo:rating._compute_parent_ref","f":1.0,"c":0.95} +{"s":"odoo:rating","p":"has_function","o":"odoo:rating._compute_parent_res_name","f":1.0,"c":0.95} +{"s":"odoo:rating","p":"has_function","o":"odoo:rating._compute_rating_image","f":1.0,"c":0.95} +{"s":"odoo:rating","p":"has_function","o":"odoo:rating._compute_rating_text","f":1.0,"c":0.95} +{"s":"odoo:rating","p":"has_function","o":"odoo:rating._compute_res_name","f":1.0,"c":0.95} +{"s":"odoo:rating","p":"has_function","o":"odoo:rating._compute_resource_ref","f":1.0,"c":0.95} +{"s":"odoo:rating_mixin","p":"has_function","o":"odoo:rating_mixin._compute_rating_avg_text","f":1.0,"c":0.95} +{"s":"odoo:rating_mixin","p":"has_function","o":"odoo:rating_mixin._compute_rating_last_value","f":1.0,"c":0.95} +{"s":"odoo:rating_mixin","p":"has_function","o":"odoo:rating_mixin._compute_rating_satisfaction","f":1.0,"c":0.95} +{"s":"odoo:rating_mixin","p":"has_function","o":"odoo:rating_mixin._compute_rating_stats","f":1.0,"c":0.95} +{"s":"odoo:rating_parent_mixin","p":"has_function","o":"odoo:rating_parent_mixin._compute_rating_percentage_satisfaction","f":1.0,"c":0.95} +{"s":"odoo:rating_rating","p":"has_function","o":"odoo:rating_rating._compute_res_name","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_allowed_lot_ids","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_allowed_uom_ids","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_availability_boolean","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_has_uncomplete_moves","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_location_id","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_partner_id","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_parts_availability","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_picking_product_ids","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_picking_type_id","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_product_location_dest_id","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_product_location_src_id","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_product_qty","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_production_count","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_recycle_location_id","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._compute_unreserve_visible","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair._onchange_location_picking","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair.compute_lot_id","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair.compute_product_uom","f":1.0,"c":0.95} +{"s":"odoo:repair","p":"has_function","o":"odoo:repair.onchange_product_uom","f":1.0,"c":0.95} +{"s":"odoo:repair_order","p":"has_function","o":"odoo:repair_order._compute_purchase_count","f":1.0,"c":0.95} +{"s":"odoo:res_bank","p":"has_function","o":"odoo:res_bank._check_hk_proxy","f":1.0,"c":0.95} +{"s":"odoo:res_bank","p":"has_function","o":"odoo:res_bank._check_kh_proxy","f":1.0,"c":0.95} +{"s":"odoo:res_bank","p":"has_function","o":"odoo:res_bank._check_sg_proxy","f":1.0,"c":0.95} +{"s":"odoo:res_bank","p":"has_function","o":"odoo:res_bank._check_th_proxy","f":1.0,"c":0.95} +{"s":"odoo:res_bank","p":"has_function","o":"odoo:res_bank._check_vn_proxy","f":1.0,"c":0.95} +{"s":"odoo:res_bank","p":"has_function","o":"odoo:res_bank._compute_country_proxy_keys","f":1.0,"c":0.95} +{"s":"odoo:res_bank","p":"has_function","o":"odoo:res_bank._compute_display_qr_setting","f":1.0,"c":0.95} +{"s":"odoo:res_bank","p":"has_function","o":"odoo:res_bank._compute_l10n_ch_display_qr_bank_options","f":1.0,"c":0.95} +{"s":"odoo:res_bank","p":"has_function","o":"odoo:res_bank._compute_l10n_ch_qr_iban","f":1.0,"c":0.95} +{"s":"odoo:res_bank","p":"has_function","o":"odoo:res_bank._constrains_intermediary_bank_id","f":1.0,"c":0.95} +{"s":"odoo:res_city","p":"has_function","o":"odoo:res_city._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:res_city","p":"has_function","o":"odoo:res_city._compute_l10n_br_zip_ranges","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_account_peppol_phone_number","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_active","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_eco_admin_index","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_eco_incorporated","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_internal_project_id_company","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_l10n_hr_mer_purchase_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_l10n_it_edi_purchase_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_nemhandel_phone_number","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_nemhandel_purchase_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_peppol_endpoint","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_peppol_purchase_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_prepayment_percent","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._check_tax_representative","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_account_peppol_contact_email","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_account_peppol_edi_user","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_account_peppol_phone_number","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_attendance_kiosk_url","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_bounce","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_catchall","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_email_formatted","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_force_restrictive_audit_trail","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_is_france_country","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_ar_company_requires_vat","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_es_sii_certificate","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_es_tbai_certificate","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_es_tbai_is_enabled","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_es_tbai_license_html","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_gcc_country_is_gcc","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_hr_mer_purchase_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_hr_mojeracun_state","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_it_edi_proxy_user_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_it_edi_purchase_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_my_edi_proxy_user_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_my_identification_number_placeholder","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_pl_edi_register","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_ro_edi_anaf_imported_inv_journal","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_l10n_ro_edi_callback_url","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_nemhandel_contact_email","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_nemhandel_edi_user","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_nemhandel_phone_number","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_nemhandel_purchase_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_org_number","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_peppol_can_send","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_peppol_parent_company_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_peppol_purchase_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._compute_peppol_self_billing_reception_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._onchange_l10n_it_has_tax_represeentative","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company._validate_l10n_de_stnr","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company.onchange_country","f":1.0,"c":0.95} +{"s":"odoo:res_company","p":"has_function","o":"odoo:res_company.validate_lock_dates","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_account_default_credit_limit","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_account_on_checkout","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_account_peppol_contact_email","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_active_provider_id","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_active_user_count","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_auth_signup_uninvited","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_cloud_storage_google_account_info","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_company_count","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_company_informations","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_cover_readonly","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_crm_auto_assignment_data","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_has_chart_of_accounts","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_has_default_share_image","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_has_enabled_provider","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_has_google_analytics","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_has_google_search_console","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_has_plausible_shared_key","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_hr_expense_alias_domain_id","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_hr_expense_alias_prefix","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_is_account_peppol_eligible","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_is_encode_uom_days","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_is_newsletter_enabled","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_is_root_company","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_l10n_eu_oss_european_country","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_l10n_hu_edi_is_active","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_l10n_it_edi_register","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_l10n_it_edi_show_purchase_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_l10n_pl_edi_certificate","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_l10n_vn_edi_default_symbol","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_language_count","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_maps_static_api_key","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_maps_static_api_secret","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_module_account_bank_statement_extract","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_module_account_invoice_extract","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_nemhandel_edi_user","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_onboarding_payment_module","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_peppol_participation_role","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_peppol_use_parent_company","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pls_fields","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pls_start_date","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_adyen_ask_customer_for_tip","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_allowed_pricelist_ids","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_discount_product_id","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_fiscal_positions","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_iface_available_categ_ids","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_iface_cashdrawer","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_iface_electronic_scale","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_iface_print_via_proxy","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_iface_scan_via_proxy","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_module_pos_restaurant","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_pricelist_id","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_printer","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_receipt_header_footer","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_selectable_categ_ids","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_set_tip_after_payment","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_pos_tip_product_id","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_predictive_lead_scoring_field_labels","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_shared_user_account","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_terms_preview","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_timesheet_encode_method","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_timesheet_modules","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._compute_use_root_proxy_user","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._l10n_pl_edi_reset","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._on_change_mins","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_advanced_employee_ids","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_auth_totp_enforce","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_basic_employee_ids","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_crm_auto_assignment_run_datetime","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_default_user","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_epson_printer_ip","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_group_lot_on_delivery_slip","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_group_product_variant_purchase","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_group_sale_pricelist","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_group_stock_multi_locations","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_group_stock_production_lot","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_group_unlocked_by_default","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_l10n_my_edi_mode","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_language_ids","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_layout","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_mass_mailing_outgoing_mail_server","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_minimal_employee_ids","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_module_product_expiry","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_module_purchase_product_matrix","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_module_website_event_track","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_partnership_label","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_pos_payment_method_ids","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_pos_self_order_kiosk","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_pos_self_order_kiosk_default_language","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_pos_self_order_pay_after","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_pos_self_order_service_mode","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_shared_key","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_stock_confirmation_fields","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_tax_exigibility","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_timesheet_project_id","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_timesheet_task_id","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_trusted_config_ids","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings._onchange_use_security_lead","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings.onchange_adv_location","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings.onchange_analytic_accounting","f":1.0,"c":0.95} +{"s":"odoo:res_config_settings","p":"has_function","o":"odoo:res_config_settings.onchange_module_account_budget","f":1.0,"c":0.95} +{"s":"odoo:res_country","p":"has_function","o":"odoo:res_country._compute_provider_support","f":1.0,"c":0.95} +{"s":"odoo:res_currency","p":"has_function","o":"odoo:res_currency._compute_display_rounding_warning","f":1.0,"c":0.95} +{"s":"odoo:res_currency_rate","p":"has_function","o":"odoo:res_currency_rate._onchange_rate_warning","f":1.0,"c":0.95} +{"s":"odoo:res_groups","p":"has_function","o":"odoo:res_groups._compute_has_lock_timeout","f":1.0,"c":0.95} +{"s":"odoo:res_groups","p":"has_function","o":"odoo:res_groups._compute_lock_timeout_2fa_selection","f":1.0,"c":0.95} +{"s":"odoo:res_groups","p":"has_function","o":"odoo:res_groups._compute_lock_timeout_delay_unit","f":1.0,"c":0.95} +{"s":"odoo:res_groups","p":"has_function","o":"odoo:res_groups._compute_lock_timeout_inactivity_2fa_selection","f":1.0,"c":0.95} +{"s":"odoo:res_groups","p":"has_function","o":"odoo:res_groups._compute_lock_timeout_inactivity_bool","f":1.0,"c":0.95} +{"s":"odoo:res_groups","p":"has_function","o":"odoo:res_groups._compute_lock_timeout_inactivity_delay_unit","f":1.0,"c":0.95} +{"s":"odoo:res_groups","p":"has_function","o":"odoo:res_groups._onchange_has_lock_timeout","f":1.0,"c":0.95} +{"s":"odoo:res_groups","p":"has_function","o":"odoo:res_groups._onchange_has_lock_timeout_inactivity","f":1.0,"c":0.95} +{"s":"odoo:res_groups","p":"has_function","o":"odoo:res_groups._onchange_lock_timeout_delay_unit","f":1.0,"c":0.95} +{"s":"odoo:res_groups","p":"has_function","o":"odoo:res_groups._onchange_lock_timeout_inactivity_delay_unit","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._check_company_registry_ma","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._check_l10n_rs_edi_public_funds","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._check_l10n_rs_edi_registration_number","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._check_mojeracun_send_ubl_hr","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._check_nemhandel_send_oioubl","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._check_peppol_fields","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_available_peppol_eas","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_available_peppol_edi_formats","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_available_peppol_sending_methods","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_branch_code","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_certifications_company_count","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_certifications_count","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_company_registry","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_company_registry_placeholder","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_contact_address_inline","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_display_pan_warning","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_employee","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_im_status","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_implemented_partner_count","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_invoice_emails","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_is_in_call","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_is_mondialrelay","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_is_peppol_edi_format","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_is_ubl_format","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_is_using_nemhandel","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_ar_formatted_vat","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_ar_vat","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_ec_vat_validation","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_es_edi_facturae_residence_type","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_fr_is_french","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_gr_edi_branch_number","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_hu_eu_vat","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_id_pkp","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_in_gst_registered_and_status","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_in_gst_state_warning","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_my_identification_number_placeholder","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_l10n_my_tin_validation_state","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_nemhandel_identifier_type","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_nemhandel_identifier_value","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_nemhandel_response_support","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_nilvera_customer_alias_id","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_on_time_rate","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_partner_weight","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_payment_token_count","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_peppol_eas","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_peppol_endpoint","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_perform_vies_validation","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_pos_contact_address","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_product_pricelist","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_response_support","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_slide_channel_company_count","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_static_map_url","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_static_map_url_is_valid","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_street_data","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_user_livechat_username","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._compute_vies_valid","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._ensure_same_company_than_projects","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._ensure_same_company_than_tasks","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._l10n_it_onchange_vat","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._onchange_city_id","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._onchange_country_id","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._onchange_l10n_in_gst_status","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._onchange_l10n_pe_city_id","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._onchange_l10n_pe_district","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._onchange_phone_validation","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._onchange_property_product_pricelist","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._onchange_vat","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._onchange_verify_peppol_status","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._validate_l10n_es_edi_facturae_ac_logical_operational_point","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner._validate_l10n_es_edi_facturae_ac_physical_gln","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner.onchange_l10n_se_default_vendor_payment_ref","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner.onchange_vat","f":1.0,"c":0.95} +{"s":"odoo:res_partner","p":"has_function","o":"odoo:res_partner.validate_codice_fiscale","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._check_br_proxy","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._check_clearing_number_us","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._check_iban","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._check_journal_id","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_acc_type","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_country_proxy_keys","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_display_account_warning","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_display_qr_setting","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_duplicate_bank_partner_ids","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_employee_id","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_lock_trust_fields","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_money_transfer_service_name","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_salary_amount","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_show_aba_routing","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._compute_user_has_group_validate_bank_account","f":1.0,"c":0.95} +{"s":"odoo:res_partner_bank","p":"has_function","o":"odoo:res_partner_bank._validate_aba_bsb","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._check_disjoint_groups","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._check_login","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_calendar_default_privacy","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_company_employee","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_crm_team_ids","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_employee_count","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_has_access_livechat","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_has_oauth_access_token","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_im_status","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_is_out_of_office","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_karma","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_livechat_expertise_ids","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_livechat_is_in_call","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_livechat_lang_ids","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_livechat_ongoing_session_count","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_livechat_username","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_notification_type","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_outgoing_mail_server_id","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_sale_team_id","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_totp_enabled","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._compute_tour_enabled","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._get_user_badge_level","f":1.0,"c":0.95} +{"s":"odoo:res_users","p":"has_function","o":"odoo:res_users._onchange_private_state_id","f":1.0,"c":0.95} +{"s":"odoo:res_users_settings_embedded_action","p":"has_function","o":"odoo:res_users_settings_embedded_action._check_embedded_actions_order","f":1.0,"c":0.95} +{"s":"odoo:res_users_settings_embedded_action","p":"has_function","o":"odoo:res_users_settings_embedded_action._check_embedded_actions_visibility","f":1.0,"c":0.95} +{"s":"odoo:res_users_settings_volumes","p":"has_function","o":"odoo:res_users_settings_volumes._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:resource","p":"has_function","o":"odoo:resource._check_compare_dates","f":1.0,"c":0.95} +{"s":"odoo:resource","p":"has_function","o":"odoo:resource._compute_avatar_128","f":1.0,"c":0.95} +{"s":"odoo:resource","p":"has_function","o":"odoo:resource._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:resource","p":"has_function","o":"odoo:resource._compute_department_id","f":1.0,"c":0.95} +{"s":"odoo:resource","p":"has_function","o":"odoo:resource._compute_job_title","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._check_attendance_ids","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._compute_attendance_ids","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._compute_flexible_hours","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._compute_full_time_required_hours","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._compute_global_leave_ids","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._compute_hours_per_day","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._compute_hours_per_week","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._compute_two_weeks_attendance","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._compute_two_weeks_explanation","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._compute_tz_offset","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._compute_work_time_rate","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar","p":"has_function","o":"odoo:resource_calendar._onchange_attendance_ids","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar_attendance","p":"has_function","o":"odoo:resource_calendar_attendance._check_day_period","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar_attendance","p":"has_function","o":"odoo:resource_calendar_attendance._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar_attendance","p":"has_function","o":"odoo:resource_calendar_attendance._compute_duration_days","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar_attendance","p":"has_function","o":"odoo:resource_calendar_attendance._compute_duration_hours","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar_attendance","p":"has_function","o":"odoo:resource_calendar_attendance._onchange_hours","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar_leaves","p":"has_function","o":"odoo:resource_calendar_leaves._compute_calendar_id","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar_leaves","p":"has_function","o":"odoo:resource_calendar_leaves._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar_leaves","p":"has_function","o":"odoo:resource_calendar_leaves._compute_date_to","f":1.0,"c":0.95} +{"s":"odoo:resource_calendar_leaves","p":"has_function","o":"odoo:resource_calendar_leaves.check_dates","f":1.0,"c":0.95} +{"s":"odoo:resource_resource","p":"has_function","o":"odoo:resource_resource._compute_avatar_128","f":1.0,"c":0.95} +{"s":"odoo:resource_resource","p":"has_function","o":"odoo:resource_resource._onchange_company_id","f":1.0,"c":0.95} +{"s":"odoo:resource_resource","p":"has_function","o":"odoo:resource_resource._onchange_user_id","f":1.0,"c":0.95} +{"s":"odoo:sale","p":"has_function","o":"odoo:sale._compute_picking_ids","f":1.0,"c":0.95} +{"s":"odoo:sale","p":"has_function","o":"odoo:sale._compute_product_updatable","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._apply_grid","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._check_l10n_it_edi_doi_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._check_order_line_company_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._check_prepayment_percent","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._check_warehouse","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_abandoned_cart","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_amount_delivery","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_amount_invoiced","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_amount_paid","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_amount_to_invoice","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_amount_unpaid","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_amounts","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_authorized_transaction_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_available_quotation_document_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_cart_info","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_currency_rate","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_delivery_state","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_delivery_status","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_duplicated_order_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_effective_date","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_event_booth_count","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_expected_date","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_expense_count","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_fiscal_position_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_has_active_pricelist","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_has_archived_products","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_invoice_status","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_is_pdf_quote_builder_available","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_is_service_products","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_journal_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_l10n_it_edi_doi_date","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_l10n_it_edi_doi_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_l10n_it_edi_doi_not_yet_invoiced","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_l10n_it_edi_doi_use","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_l10n_it_edi_doi_warning","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_l10n_it_partner_pa","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_late_availability","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_margin","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_mrp_production_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_name","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_note","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_partner_credit_warning","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_partner_invoice_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_partner_shipping_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_partnership","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_payment_term_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_picking_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_preferred_payment_method_line_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_prepayment_percent","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_pricelist_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_project_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_purchase_order_count","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_qty_delivered","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_qty_invoiced","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_repair_count","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_require_payment","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_require_signature","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_reward_total","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_sale_warning_text","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_shipping_weight","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_tasks_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_tax_country_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_tax_totals","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_team_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_timesheet_total_duration","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_type_name","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_untaxed_amount_invoiced","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_user_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_validity_date","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_visible_project","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_warehouse_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._compute_website_order_line","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._constraint_unique_assigned_grade","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._get_invoiced","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._onchange_commitment_date","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._onchange_company_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._onchange_company_id_warning","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._onchange_fpos_id_show_update_fpos","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._onchange_order_line","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._onchange_partner_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._onchange_partner_shipping_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._onchange_prepayment_percent","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._onchange_pricelist_id_show_update_prices","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._onchange_sale_order_template_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order._set_grid_up","f":1.0,"c":0.95} +{"s":"odoo:sale_order","p":"has_function","o":"odoo:sale_order.onchange_order_line","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._check_combo_item_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._check_event_booth_registration_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._check_event_registration_ticket","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_allowed_uom_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_amount","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_amount_invoiced","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_amount_to_invoice","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_amount_to_invoice_at_date","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_analytic_distribution","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_available_product_document_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_custom_attribute_values","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_customer_lead","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_discount","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_event_booth_pending_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_event_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_event_related","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_invoice_status","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_is_mto","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_is_product_archived","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_is_repair_line","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_is_reward_line","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_is_service","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_margin","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_name","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_name_short","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_no_variant_attribute_values","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_price_reduce_taxexcl","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_price_reduce_taxinc","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_price_unit","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_pricelist_item_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_product_qty","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_product_template_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_product_uom_qty","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_product_uom_readonly","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_product_updatable","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_purchase_count","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_purchase_price","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_qty_at_date","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_qty_delivered","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_qty_delivered_at_date","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_qty_delivered_method","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_qty_invoiced","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_qty_invoiced_at_date","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_qty_invoiced_posted","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_qty_to_deliver","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_qty_to_invoice","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_remaining_hours","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_remaining_hours_available","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_sale_line_warn_msg","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_tax_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_translated_product_name","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_untaxed_amount_invoiced","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_untaxed_amount_to_invoice","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._compute_warehouse_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._onchange_event_id_booth","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._onchange_product","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._onchange_product_id_booth","f":1.0,"c":0.95} +{"s":"odoo:sale_order_line","p":"has_function","o":"odoo:sale_order_line._onchange_service_product_uom_qty","f":1.0,"c":0.95} +{"s":"odoo:sale_order_template","p":"has_function","o":"odoo:sale_order_template._check_company_id","f":1.0,"c":0.95} +{"s":"odoo:sale_order_template","p":"has_function","o":"odoo:sale_order_template._check_prepayment_percent","f":1.0,"c":0.95} +{"s":"odoo:sale_order_template","p":"has_function","o":"odoo:sale_order_template._compute_prepayment_percent","f":1.0,"c":0.95} +{"s":"odoo:sale_order_template","p":"has_function","o":"odoo:sale_order_template._compute_require_payment","f":1.0,"c":0.95} +{"s":"odoo:sale_order_template","p":"has_function","o":"odoo:sale_order_template._compute_require_signature","f":1.0,"c":0.95} +{"s":"odoo:sale_order_template","p":"has_function","o":"odoo:sale_order_template._onchange_prepayment_percent","f":1.0,"c":0.95} +{"s":"odoo:sale_order_template_line","p":"has_function","o":"odoo:sale_order_template_line._compute_allowed_uom_ids","f":1.0,"c":0.95} +{"s":"odoo:sale_order_template_line","p":"has_function","o":"odoo:sale_order_template_line._compute_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:sale_pdf_form_field","p":"has_function","o":"odoo:sale_pdf_form_field._check_document_type_and_document_linked_compatibility","f":1.0,"c":0.95} +{"s":"odoo:sale_pdf_form_field","p":"has_function","o":"odoo:sale_pdf_form_field._check_form_field_name_follows_pattern","f":1.0,"c":0.95} +{"s":"odoo:sale_pdf_form_field","p":"has_function","o":"odoo:sale_pdf_form_field._check_valid_and_existing_paths","f":1.0,"c":0.95} +{"s":"odoo:sequence_mixin","p":"has_function","o":"odoo:sequence_mixin._compute_split_sequence","f":1.0,"c":0.95} +{"s":"odoo:sequence_mixin","p":"has_function","o":"odoo:sequence_mixin._constrains_date_sequence","f":1.0,"c":0.95} +{"s":"odoo:sinvoice","p":"has_function","o":"odoo:sinvoice._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:sinvoice","p":"has_function","o":"odoo:sinvoice._constrains_changes","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_action_rights","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_allow_comment","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_can_publish","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_can_upload","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_category_and_slide_ids","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_enroll","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_has_requested_access","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_is_visible","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_members_certified_count","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_members_counts","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_membership_values","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_partner_has_new_content","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_partners","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_prerequisite_user_has_completed","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_product_sale_revenues","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_slide_last_update","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_slides_statistics","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_user_statistics","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_website_absolute_url","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_website_default_background_image_url","f":1.0,"c":0.95} +{"s":"odoo:slide_channel","p":"has_function","o":"odoo:slide_channel._compute_website_url","f":1.0,"c":0.95} +{"s":"odoo:slide_channel_partner","p":"has_function","o":"odoo:slide_channel_partner._compute_invitation_link","f":1.0,"c":0.95} +{"s":"odoo:slide_embed","p":"has_function","o":"odoo:slide_embed._compute_website_name","f":1.0,"c":0.95} +{"s":"odoo:slide_question","p":"has_function","o":"odoo:slide_question._check_answers_integrity","f":1.0,"c":0.95} +{"s":"odoo:slide_question","p":"has_function","o":"odoo:slide_question._compute_answers_validation_error","f":1.0,"c":0.95} +{"s":"odoo:slide_question","p":"has_function","o":"odoo:slide_question._compute_statistics","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_can_publish","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_category_completed","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_category_completion_time","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_category_id","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_comments_count","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_embed_code","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_embed_counts","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_google_drive_id","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_image_1920","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_is_new_slide","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_is_preview","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_like_info","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_mark_complete_actions","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_name","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_questions_count","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_slide_icon_class","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_slide_type","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_slide_views","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_slides_statistics","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_survey_scoring_success","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_total","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_user_membership_id","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_video_source_type","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_vimeo_id","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_website_absolute_url","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_website_share_url","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_website_url","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._compute_youtube_id","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._on_change_document_binary_content","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._on_change_slide_category","f":1.0,"c":0.95} +{"s":"odoo:slide_slide","p":"has_function","o":"odoo:slide_slide._on_change_url","f":1.0,"c":0.95} +{"s":"odoo:slide_slide_resource","p":"has_function","o":"odoo:slide_slide_resource._check_link_type","f":1.0,"c":0.95} +{"s":"odoo:slide_slide_resource","p":"has_function","o":"odoo:slide_slide_resource._compute_download_url","f":1.0,"c":0.95} +{"s":"odoo:slide_slide_resource","p":"has_function","o":"odoo:slide_slide_resource._compute_name","f":1.0,"c":0.95} +{"s":"odoo:slide_slide_resource","p":"has_function","o":"odoo:slide_slide_resource._compute_reset_resources","f":1.0,"c":0.95} +{"s":"odoo:sms_sms","p":"has_function","o":"odoo:sms_sms._compute_sms_tracker_id","f":1.0,"c":0.95} +{"s":"odoo:sms_template","p":"has_function","o":"odoo:sms_template._compute_render_model","f":1.0,"c":0.95} +{"s":"odoo:snailmail_letter","p":"has_function","o":"odoo:snailmail_letter._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:snailmail_letter","p":"has_function","o":"odoo:snailmail_letter._compute_reference","f":1.0,"c":0.95} +{"s":"odoo:spreadsheet_dashboard","p":"has_function","o":"odoo:spreadsheet_dashboard._compute_is_favorite","f":1.0,"c":0.95} +{"s":"odoo:spreadsheet_dashboard_share","p":"has_function","o":"odoo:spreadsheet_dashboard_share._compute_full_url","f":1.0,"c":0.95} +{"s":"odoo:spreadsheet_mixin","p":"has_function","o":"odoo:spreadsheet_mixin._check_spreadsheet_data","f":1.0,"c":0.95} +{"s":"odoo:spreadsheet_mixin","p":"has_function","o":"odoo:spreadsheet_mixin._compute_spreadsheet_data","f":1.0,"c":0.95} +{"s":"odoo:spreadsheet_mixin","p":"has_function","o":"odoo:spreadsheet_mixin._compute_spreadsheet_file_name","f":1.0,"c":0.95} +{"s":"odoo:spreadsheet_mixin","p":"has_function","o":"odoo:spreadsheet_mixin._onchange_data_","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_deadline_date","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_description_picking","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_effective_date","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_effective_vendor_id","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_is_dropship","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_lead_days","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_move_type","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_packaging_uom_id","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_purchase_order_ids","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_qty_to_order_computed","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_sale_id","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_sale_order_ids","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_show_picking_type","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_show_supplier","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_supplier_id_placeholder","f":1.0,"c":0.95} +{"s":"odoo:stock","p":"has_function","o":"odoo:stock._compute_warehouse_id","f":1.0,"c":0.95} +{"s":"odoo:stock_landed_cost","p":"has_function","o":"odoo:stock_landed_cost._compute_final_cost","f":1.0,"c":0.95} +{"s":"odoo:stock_landed_cost","p":"has_function","o":"odoo:stock_landed_cost._compute_name","f":1.0,"c":0.95} +{"s":"odoo:stock_landed_cost","p":"has_function","o":"odoo:stock_landed_cost._compute_total_amount","f":1.0,"c":0.95} +{"s":"odoo:stock_landed_cost","p":"has_function","o":"odoo:stock_landed_cost._onchange_target_model","f":1.0,"c":0.95} +{"s":"odoo:stock_landed_cost","p":"has_function","o":"odoo:stock_landed_cost.onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._check_company_consistency","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._check_replenish_location","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._check_scrap_location","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._check_subcontracting_location","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._compute_child_internal_location_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._compute_complete_name","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._compute_next_inventory_date","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._compute_replenish_location","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._compute_warehouse_id","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._compute_warehouses","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._compute_weight","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._onchange_company","f":1.0,"c":0.95} +{"s":"odoo:stock_location","p":"has_function","o":"odoo:stock_location._onchange_warehouse_selectable","f":1.0,"c":0.95} +{"s":"odoo:stock_lot","p":"has_function","o":"odoo:stock_lot._check_unique_lot","f":1.0,"c":0.95} +{"s":"odoo:stock_lot","p":"has_function","o":"odoo:stock_lot._compute_company_id","f":1.0,"c":0.95} +{"s":"odoo:stock_lot","p":"has_function","o":"odoo:stock_lot._compute_display_complete","f":1.0,"c":0.95} +{"s":"odoo:stock_lot","p":"has_function","o":"odoo:stock_lot._compute_name","f":1.0,"c":0.95} +{"s":"odoo:stock_lot","p":"has_function","o":"odoo:stock_lot._compute_repair_line_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_lot","p":"has_function","o":"odoo:stock_lot._compute_single_location","f":1.0,"c":0.95} +{"s":"odoo:stock_lot","p":"has_function","o":"odoo:stock_lot._compute_value","f":1.0,"c":0.95} +{"s":"odoo:stock_lot","p":"has_function","o":"odoo:stock_lot._product_qty","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._cal_move_weight","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._check_negative_quantity","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_allowed_uom_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_delay_alert_date","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_description_picking","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_display_assign_serial","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_forecast_information","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_has_lines_without_result_package","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_is_dropship","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_is_in","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_is_initial_demand_editable","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_is_locked","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_is_out","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_is_quantity_done_editable","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_is_valued","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_l10n_in_ewaybill_price_unit","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_l10n_in_tax_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_location_dest_id","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_location_id","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_lot_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_manual_consumption","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_move_lines_count","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_package_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_packaging_uom_id","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_packaging_uom_qty","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_partner_id","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_picked","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_picking_type_id","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_priority","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_product_availability","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_product_qty","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_product_uom","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_quantity","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_reference","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_remaining_qty","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_remaining_value","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_reservation_date","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_sale_price","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_should_consume_qty","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_show_details_visible","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_show_info","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_standard_price","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._compute_unit_factor","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._onchange_lot_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._onchange_product_uom_qty","f":1.0,"c":0.95} +{"s":"odoo:stock_move","p":"has_function","o":"odoo:stock_move._onchange_quantity","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._check_lot_product","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._check_positive_quantity","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._compute_allowed_uom_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._compute_expiration_date","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._compute_location_id","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._compute_lots_visible","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._compute_picked","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._compute_picking_type_id","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._compute_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._compute_quantity","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._compute_quantity_product_uom","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._compute_removal_date","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._onchange_putaway_location","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._onchange_quantity","f":1.0,"c":0.95} +{"s":"odoo:stock_move_line","p":"has_function","o":"odoo:stock_move_line._onchange_serial_number","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._check_min_max_qty","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_allowed_location_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_allowed_replenishment_uom_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_bom_id_placeholder","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_days_to_order","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_deadline_date","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_effective_bom_id","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_effective_route_id","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_lead_days","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_location_id","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_product_max_qty","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_qty","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_qty_to_order","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_qty_to_order_computed","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_replenishment_uom_id_placeholder","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_route_id_placeholder","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_rules","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_show_bom","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_unwanted_replenish","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._compute_warehouse_id","f":1.0,"c":0.95} +{"s":"odoo:stock_orderpoint","p":"has_function","o":"odoo:stock_orderpoint._onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_all_children_package_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_complete_name","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_contained_quant_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_content_description","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_dest_complete_name","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_location_dest_id","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_move_line_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_outermost_package_id","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_owner_id","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_package_info","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_picking_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_valid_sscc","f":1.0,"c":0.95} +{"s":"odoo:stock_package","p":"has_function","o":"odoo:stock_package._compute_weight","f":1.0,"c":0.95} +{"s":"odoo:stock_package_type","p":"has_function","o":"odoo:stock_package_type._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:stock_package_type","p":"has_function","o":"odoo:stock_package_type._compute_length_uom_name","f":1.0,"c":0.95} +{"s":"odoo:stock_package_type","p":"has_function","o":"odoo:stock_package_type._onchange_carrier_type","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._cal_weight","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._check_active","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._check_backdate_allowed","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._check_default_location","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_allowed_carrier_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_bulk_weight","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_carrier_tracking_url","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_date_deadline","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_default_location_dest_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_default_location_src_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_default_product_location_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_default_recycle_location_dest_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_default_remove_location_dest_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_delay_alert_date","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_description_picking","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_dock_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_edispatch_warnings","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_has_deadline_issue","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_has_kits","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_hide_reservation_method","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_is_signed","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ar_delivery_guide_flags","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_in_ewaybill_details","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_it_show_print_ddt_button","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ro_edi_stock_available_location_types","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ro_edi_stock_available_operation_scopes","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ro_edi_stock_current_document_state","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ro_edi_stock_current_document_uit","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ro_edi_stock_default_location_type","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ro_edi_stock_enable","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ro_edi_stock_enable_amend","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ro_edi_stock_enable_fetch","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ro_edi_stock_enable_send","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_l10n_ro_edi_stock_fields_readonly","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_location_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_move_type","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_mrp_production_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_nbr_repairs","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_picking_warning_text","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_print_label","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_production_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_products_availability","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_return_count","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_return_picking","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_scheduled_date","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_shipping_weight","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_show_allocation","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_show_check_availability","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_show_lots_text","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_show_next_pickings","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_show_picking_type","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_show_subcontracting_details_visible","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_state","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_subcontracting_source_purchase_count","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_use_create_lots","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_use_existing_lots","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._compute_warehouse_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._l10n_ro_edi_stock_reset_variable_selection_fields","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._onchange_location_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._onchange_picking_code","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._onchange_picking_type","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._onchange_sequence_code","f":1.0,"c":0.95} +{"s":"odoo:stock_picking","p":"has_function","o":"odoo:stock_picking._validate_auto_batch_group_by","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_allowed_picking_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_capacity_percentage","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_dock_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_driver_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_end_date","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_l10n_ro_edi_stock_available_location_types","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_l10n_ro_edi_stock_available_operation_scopes","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_l10n_ro_edi_stock_current_document_state","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_l10n_ro_edi_stock_current_document_uit","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_l10n_ro_edi_stock_default_location_type","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_l10n_ro_edi_stock_enable","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_l10n_ro_edi_stock_enable_amend","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_l10n_ro_edi_stock_enable_fetch","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_l10n_ro_edi_stock_enable_send","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_l10n_ro_edi_stock_fields_readonly","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_move_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_move_line_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_scheduled_date","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_show_allocation","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_show_lots_text","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_state","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._compute_vehicle_category_id","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch._l10n_ro_edi_stock_reset_variable_selection_fields","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_batch","p":"has_function","o":"odoo:stock_picking_batch.onchange_scheduled_date","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_type","p":"has_function","o":"odoo:stock_picking_type._compute_l10n_ar_stock_sequence_fields","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_type","p":"has_function","o":"odoo:stock_picking_type._constrains_l10n_ar_sequence_number","f":1.0,"c":0.95} +{"s":"odoo:stock_picking_type","p":"has_function","o":"odoo:stock_picking_type._onchange_sequence_code","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._check_kits","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._compute_available_quantity","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._compute_cost_method","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._compute_inventory_date","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._compute_inventory_diff_quantity","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._compute_inventory_quantity_auto_apply","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._compute_inventory_quantity_set","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._compute_is_outdated","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._compute_sn_duplicated","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._compute_value","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._onchange_inventory_quantity","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._onchange_location_or_product_id","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant._onchange_serial_number","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant.check_location_id","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant.check_lot_id","f":1.0,"c":0.95} +{"s":"odoo:stock_quant","p":"has_function","o":"odoo:stock_quant.check_product_id","f":1.0,"c":0.95} +{"s":"odoo:stock_replenish_mixin","p":"has_function","o":"odoo:stock_replenish_mixin._compute_allowed_route_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_replenish_mixin","p":"has_function","o":"odoo:stock_replenish_mixin._compute_show_bom","f":1.0,"c":0.95} +{"s":"odoo:stock_replenish_mixin","p":"has_function","o":"odoo:stock_replenish_mixin._compute_show_vendor","f":1.0,"c":0.95} +{"s":"odoo:stock_rule","p":"has_function","o":"odoo:stock_rule._check_company_consistency","f":1.0,"c":0.95} +{"s":"odoo:stock_rule","p":"has_function","o":"odoo:stock_rule._compute_action_message","f":1.0,"c":0.95} +{"s":"odoo:stock_rule","p":"has_function","o":"odoo:stock_rule._compute_picking_type_code_domain","f":1.0,"c":0.95} +{"s":"odoo:stock_rule","p":"has_function","o":"odoo:stock_rule._onchange_action","f":1.0,"c":0.95} +{"s":"odoo:stock_rule","p":"has_function","o":"odoo:stock_rule._onchange_picking_type","f":1.0,"c":0.95} +{"s":"odoo:stock_rule","p":"has_function","o":"odoo:stock_rule._onchange_route","f":1.0,"c":0.95} +{"s":"odoo:stock_scrap","p":"has_function","o":"odoo:stock_scrap._compute_allowed_uom_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_scrap","p":"has_function","o":"odoo:stock_scrap._compute_location_id","f":1.0,"c":0.95} +{"s":"odoo:stock_scrap","p":"has_function","o":"odoo:stock_scrap._compute_product_uom_id","f":1.0,"c":0.95} +{"s":"odoo:stock_scrap","p":"has_function","o":"odoo:stock_scrap._compute_scrap_location_id","f":1.0,"c":0.95} +{"s":"odoo:stock_scrap","p":"has_function","o":"odoo:stock_scrap._compute_scrap_qty","f":1.0,"c":0.95} +{"s":"odoo:stock_scrap","p":"has_function","o":"odoo:stock_scrap._onchange_product_id","f":1.0,"c":0.95} +{"s":"odoo:stock_scrap","p":"has_function","o":"odoo:stock_scrap._onchange_serial_number","f":1.0,"c":0.95} +{"s":"odoo:stock_storage_category","p":"has_function","o":"odoo:stock_storage_category._compute_storage_capacity_ids","f":1.0,"c":0.95} +{"s":"odoo:stock_warehouse","p":"has_function","o":"odoo:stock_warehouse._onchange_company_id","f":1.0,"c":0.95} +{"s":"odoo:stock_warehouse","p":"has_function","o":"odoo:stock_warehouse.check_product_is_not_kit","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._check_question_not_empty","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._check_question_type_for_pages","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_allowed_triggering_question_ids","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_background_image","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_background_image_url","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_generate_lead","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_has_image_only_suggested_answer","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_is_scored_question","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_page_id","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_question_ids","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_question_placeholder","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_question_type","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_save_as_email","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_save_as_nickname","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_triggering_question_ids","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_validation_required","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._compute_value_label","f":1.0,"c":0.95} +{"s":"odoo:survey_question","p":"has_function","o":"odoo:survey_question._onchange_validation_parameters","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._check_scoring_after_page_availability","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._check_survey_responsible_access","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_allowed_survey_types","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_answer_duration_avg","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_background_image_url","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_certification","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_certification_give_badge","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_generate_lead","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_has_conditional_questions","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_is_attempts_limited","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_lead_count","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_page_and_question_ids","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_scoring_max_obtainable","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_scoring_type","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_session_answer_count","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_session_available","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_session_code","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_session_link","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_session_question_answer_count","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_session_show_leaderboard","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_slide_channel_data","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._compute_survey_statistic","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._onchange_restrict_user_ids","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._onchange_session_speed_rating","f":1.0,"c":0.95} +{"s":"odoo:survey_survey","p":"has_function","o":"odoo:survey_survey._onchange_survey_type","f":1.0,"c":0.95} +{"s":"odoo:survey_user_input","p":"has_function","o":"odoo:survey_user_input._check_answer_type_skipped","f":1.0,"c":0.95} +{"s":"odoo:survey_user_input","p":"has_function","o":"odoo:survey_user_input._compute_answer_score","f":1.0,"c":0.95} +{"s":"odoo:survey_user_input","p":"has_function","o":"odoo:survey_user_input._compute_attempts_info","f":1.0,"c":0.95} +{"s":"odoo:survey_user_input","p":"has_function","o":"odoo:survey_user_input._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:survey_user_input","p":"has_function","o":"odoo:survey_user_input._compute_question_time_limit_reached","f":1.0,"c":0.95} +{"s":"odoo:survey_user_input","p":"has_function","o":"odoo:survey_user_input._compute_scoring_success","f":1.0,"c":0.95} +{"s":"odoo:survey_user_input","p":"has_function","o":"odoo:survey_user_input._compute_scoring_values","f":1.0,"c":0.95} +{"s":"odoo:survey_user_input","p":"has_function","o":"odoo:survey_user_input._compute_survey_time_limit_reached","f":1.0,"c":0.95} +{"s":"odoo:test_base_automation","p":"has_function","o":"odoo:test_base_automation._compute_effective_hours","f":1.0,"c":0.95} +{"s":"odoo:test_base_automation","p":"has_function","o":"odoo:test_base_automation._compute_employee_deadline","f":1.0,"c":0.95} +{"s":"odoo:test_base_automation","p":"has_function","o":"odoo:test_base_automation._compute_project_id","f":1.0,"c":0.95} +{"s":"odoo:test_base_automation","p":"has_function","o":"odoo:test_base_automation._compute_remaining_hours","f":1.0,"c":0.95} +{"s":"odoo:test_base_automation","p":"has_function","o":"odoo:test_base_automation._compute_stage_id","f":1.0,"c":0.95} +{"s":"odoo:test_mail_corner_case_models","p":"has_function","o":"odoo:test_mail_corner_case_models._value_pc","f":1.0,"c":0.95} +{"s":"odoo:test_mail_feature_models","p":"has_function","o":"odoo:test_mail_feature_models._compute_customer_email","f":1.0,"c":0.95} +{"s":"odoo:test_mail_feature_models","p":"has_function","o":"odoo:test_mail_feature_models._compute_customer_phone","f":1.0,"c":0.95} +{"s":"odoo:test_mail_feature_models","p":"has_function","o":"odoo:test_mail_feature_models._compute_date_last_stage_update","f":1.0,"c":0.95} +{"s":"odoo:test_mail_models","p":"has_function","o":"odoo:test_mail_models._compute_email_from","f":1.0,"c":0.95} +{"s":"odoo:test_mail_models_mail","p":"has_function","o":"odoo:test_mail_models_mail._compute_email_from","f":1.0,"c":0.95} +{"s":"odoo:test_mail_models_mail","p":"has_function","o":"odoo:test_mail_models_mail._compute_phone_nbr","f":1.0,"c":0.95} +{"s":"odoo:test_mail_sms_models","p":"has_function","o":"odoo:test_mail_sms_models._compute_phone_nbr","f":1.0,"c":0.95} +{"s":"odoo:tour","p":"has_function","o":"odoo:tour._compute_sharing_url","f":1.0,"c":0.95} +{"s":"odoo:uom_code","p":"has_function","o":"odoo:uom_code._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:uom_uom","p":"has_function","o":"odoo:uom_uom._check_factor","f":1.0,"c":0.95} +{"s":"odoo:uom_uom","p":"has_function","o":"odoo:uom_uom._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:uom_uom","p":"has_function","o":"odoo:uom_uom._compute_factor","f":1.0,"c":0.95} +{"s":"odoo:uom_uom","p":"has_function","o":"odoo:uom_uom._compute_sequence","f":1.0,"c":0.95} +{"s":"odoo:uom_uom","p":"has_function","o":"odoo:uom_uom._onchange_critical_fields","f":1.0,"c":0.95} +{"s":"odoo:utm","p":"has_function","o":"odoo:utm._compute_mailing_sms_count","f":1.0,"c":0.95} +{"s":"odoo:utm_campaign","p":"has_function","o":"odoo:utm_campaign._compute_ab_testing_completed","f":1.0,"c":0.95} +{"s":"odoo:utm_campaign","p":"has_function","o":"odoo:utm_campaign._compute_mailing_mail_count","f":1.0,"c":0.95} +{"s":"odoo:utm_campaign","p":"has_function","o":"odoo:utm_campaign._compute_name","f":1.0,"c":0.95} +{"s":"odoo:verifactu_document","p":"has_function","o":"odoo:verifactu_document._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:verifactu_document","p":"has_function","o":"odoo:verifactu_document._compute_json_attachment_filename","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._check_domain","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._check_events_app_name","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._check_homepage_url","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._compute_app_icon","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._compute_blocked_third_party_domains","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._compute_currency_id","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._compute_domain_punycode","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._compute_events_app_name","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._compute_has_social_default_image","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._compute_l10n_ar_website_sale_show_both_prices","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._compute_language_count","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._compute_send_abandoned_cart_email_activation_time","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._compute_show_line_subtotals_tax_selection","f":1.0,"c":0.95} +{"s":"odoo:website","p":"has_function","o":"odoo:website._onchange_language_ids","f":1.0,"c":0.95} +{"s":"odoo:website_blog","p":"has_function","o":"odoo:website_blog._compute_blog_post_count","f":1.0,"c":0.95} +{"s":"odoo:website_blog","p":"has_function","o":"odoo:website_blog._compute_post_date","f":1.0,"c":0.95} +{"s":"odoo:website_blog","p":"has_function","o":"odoo:website_blog._compute_teaser","f":1.0,"c":0.95} +{"s":"odoo:website_configurator_feature","p":"has_function","o":"odoo:website_configurator_feature._check_module_xor_page_view","f":1.0,"c":0.95} +{"s":"odoo:website_controller_page","p":"has_function","o":"odoo:website_controller_page._compute_name","f":1.0,"c":0.95} +{"s":"odoo:website_controller_page","p":"has_function","o":"odoo:website_controller_page._compute_name_slugified","f":1.0,"c":0.95} +{"s":"odoo:website_controller_page","p":"has_function","o":"odoo:website_controller_page._compute_url_demo","f":1.0,"c":0.95} +{"s":"odoo:website_menu","p":"has_function","o":"odoo:website_menu._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:website_menu","p":"has_function","o":"odoo:website_menu._compute_field_is_mega_menu","f":1.0,"c":0.95} +{"s":"odoo:website_menu","p":"has_function","o":"odoo:website_menu._compute_url","f":1.0,"c":0.95} +{"s":"odoo:website_menu","p":"has_function","o":"odoo:website_menu._validate_parent_menu","f":1.0,"c":0.95} +{"s":"odoo:website_page","p":"has_function","o":"odoo:website_page._compute_website_menu","f":1.0,"c":0.95} +{"s":"odoo:website_page","p":"has_function","o":"odoo:website_page._compute_website_url","f":1.0,"c":0.95} +{"s":"odoo:website_page_properties","p":"has_function","o":"odoo:website_page_properties._compute_can_publish","f":1.0,"c":0.95} +{"s":"odoo:website_page_properties","p":"has_function","o":"odoo:website_page_properties._compute_is_homepage","f":1.0,"c":0.95} +{"s":"odoo:website_page_properties","p":"has_function","o":"odoo:website_page_properties._compute_is_in_menu","f":1.0,"c":0.95} +{"s":"odoo:website_page_properties","p":"has_function","o":"odoo:website_page_properties._compute_is_published","f":1.0,"c":0.95} +{"s":"odoo:website_page_properties","p":"has_function","o":"odoo:website_page_properties._compute_menu_ids","f":1.0,"c":0.95} +{"s":"odoo:website_rewrite","p":"has_function","o":"odoo:website_rewrite._check_url_to","f":1.0,"c":0.95} +{"s":"odoo:website_rewrite","p":"has_function","o":"odoo:website_rewrite._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:website_rewrite","p":"has_function","o":"odoo:website_rewrite._onchange_route_id","f":1.0,"c":0.95} +{"s":"odoo:website_snippet_filter","p":"has_function","o":"odoo:website_snippet_filter._check_data_source_is_provided","f":1.0,"c":0.95} +{"s":"odoo:website_snippet_filter","p":"has_function","o":"odoo:website_snippet_filter._check_field_names","f":1.0,"c":0.95} +{"s":"odoo:website_snippet_filter","p":"has_function","o":"odoo:website_snippet_filter._check_limit","f":1.0,"c":0.95} +{"s":"odoo:website_snippet_filter","p":"has_function","o":"odoo:website_snippet_filter._compute_model_name","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_display_name","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_email_phone","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_event_registered_ids","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_event_registration_count","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_event_track_wishlisted_ids","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_last_visited_page_id","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_lead_count","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_livechat_operator_id","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_page_statistics","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_partner_id","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_product_statistics","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_session_count","f":1.0,"c":0.95} +{"s":"odoo:website_visitor","p":"has_function","o":"odoo:website_visitor._compute_time_statistics","f":1.0,"c":0.95} +{"s":"odoo:account_account","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:account_account","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:account_analytic_account","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:account_analytic_distribution_model","p":"inherits_from","o":"odoo:analytic_mixin","f":0.95,"c":0.9} +{"s":"odoo:account_bank_statement_line","p":"inherits_from","o":"odoo:account_move","f":0.95,"c":0.9} +{"s":"odoo:account_journal","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:account_journal","p":"inherits_from","o":"odoo:mail_alias_mixin_optional","f":0.95,"c":0.9} +{"s":"odoo:account_journal","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:account_move","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:account_move","p":"inherits_from","o":"odoo:sequence_mixin","f":0.95,"c":0.9} +{"s":"odoo:account_move_line","p":"inherits_from","o":"odoo:analytic_mixin","f":0.95,"c":0.9} +{"s":"odoo:account_payment","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:account_payment_register_withholding_line","p":"inherits_from","o":"odoo:account_withholding_line","f":0.95,"c":0.9} +{"s":"odoo:account_payment_withholding_line","p":"inherits_from","o":"odoo:account_withholding_line","f":0.95,"c":0.9} +{"s":"odoo:account_reconcile_model","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:account_tax","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:account_withholding_line","p":"inherits_from","o":"odoo:analytic_mixin","f":0.95,"c":0.9} +{"s":"odoo:base_automation","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:base_automation","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:calendar_event","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:card_campaign","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:card_campaign","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:crm_lead","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:crm_lead","p":"inherits_from","o":"odoo:mail_thread_blacklist","f":0.95,"c":0.9} +{"s":"odoo:crm_lead","p":"inherits_from","o":"odoo:mail_thread_phone","f":0.95,"c":0.9} +{"s":"odoo:crm_lead","p":"inherits_from","o":"odoo:mail_tracking_duration_mixin","f":0.95,"c":0.9} +{"s":"odoo:crm_team","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:crm_team_member","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:discuss_channel","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:discuss_channel","p":"inherits_from","o":"odoo:rating_mixin","f":0.95,"c":0.9} +{"s":"odoo:event_booth","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:event_booth","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:event_event","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:event_event","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:event_event_ticket","p":"inherits_from","o":"odoo:event_type_ticket","f":0.95,"c":0.9} +{"s":"odoo:event_registration","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:event_registration","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:event_sponsor","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:event_sponsor","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:event_track","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:event_track","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:fleet_vehicle","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:fleet_vehicle","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:fleet_vehicle_log_contract","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:fleet_vehicle_log_contract","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:fleet_vehicle_log_services","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:fleet_vehicle_log_services","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:fleet_vehicle_model","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:fleet_vehicle_model","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:forum_forum","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:forum_post","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:forum_tag","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:gamification_badge","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:gamification_challenge","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:hr_applicant","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_applicant","p":"inherits_from","o":"odoo:mail_thread_blacklist","f":0.95,"c":0.9} +{"s":"odoo:hr_applicant","p":"inherits_from","o":"odoo:mail_thread_phone","f":0.95,"c":0.9} +{"s":"odoo:hr_applicant","p":"inherits_from","o":"odoo:mail_tracking_duration_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_attendance","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:hr_department","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_department","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:hr_employee","p":"inherits_from","o":"odoo:hr_version","f":0.95,"c":0.9} +{"s":"odoo:hr_employee","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_expense","p":"inherits_from","o":"odoo:analytic_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_expense","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_expense_split","p":"inherits_from","o":"odoo:analytic_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_job","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_job","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:hr_leave","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_leave_allocation","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_leave_allocation","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:hr_version","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:hr_version","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:iap_account","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:im_livechat_channel","p":"inherits_from","o":"odoo:rating_parent_mixin","f":0.95,"c":0.9} +{"s":"odoo:ir_actions_server","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:ir_actions_server","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:l10n_in_ewaybill","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:l10n_in_ewaybill","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:l10n_in_pan_entity","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:l10n_in_pan_entity","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:l10n_latam_check","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:l10n_latam_check","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:loyalty_card","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:lunch_supplier","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:lunch_supplier","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:mail_mail","p":"inherits_from","o":"odoo:mail_message","f":0.95,"c":0.9} +{"s":"odoo:mail_test_ticket","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:mail_thread_blacklist","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:mail_thread_phone","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:mail_tracking_duration_mixin","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:mailing_contact","p":"inherits_from","o":"odoo:mail_thread_blacklist","f":0.95,"c":0.9} +{"s":"odoo:mailing_contact","p":"inherits_from","o":"odoo:mail_thread_phone","f":0.95,"c":0.9} +{"s":"odoo:mailing_mailing","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:mailing_mailing","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:mrp_bom","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:mrp_production","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:mrp_production","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:mrp_unbuild","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:mrp_unbuild","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:mrp_workcenter","p":"inherits_from","o":"odoo:analytic_mixin","f":0.95,"c":0.9} +{"s":"odoo:mrp_workcenter","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:myinvois_document","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:myinvois_document","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:myinvois_document","p":"inherits_from","o":"odoo:sequence_mixin","f":0.95,"c":0.9} +{"s":"odoo:pos_order","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:pos_session","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:pos_session","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:product_category","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:product_document","p":"inherits_from","o":"odoo:ir_attachment","f":0.95,"c":0.9} +{"s":"odoo:product_feed","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:product_pricelist","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:product_pricelist","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:product_product","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:product_product","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:product_product","p":"inherits_from","o":"odoo:product_template","f":0.95,"c":0.9} +{"s":"odoo:product_template","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:product_template","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:product_template","p":"inherits_from","o":"odoo:rating_mixin","f":0.95,"c":0.9} +{"s":"odoo:project_milestone","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:project_project","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:project_project","p":"inherits_from","o":"odoo:mail_tracking_duration_mixin","f":0.95,"c":0.9} +{"s":"odoo:project_project","p":"inherits_from","o":"odoo:rating_parent_mixin","f":0.95,"c":0.9} +{"s":"odoo:project_task","p":"inherits_from","o":"odoo:html_field_history_mixin","f":0.95,"c":0.9} +{"s":"odoo:project_task","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:project_task","p":"inherits_from","o":"odoo:mail_tracking_duration_mixin","f":0.95,"c":0.9} +{"s":"odoo:project_task","p":"inherits_from","o":"odoo:rating_mixin","f":0.95,"c":0.9} +{"s":"odoo:project_update","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:purchase_order","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:purchase_order","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:purchase_order_line","p":"inherits_from","o":"odoo:analytic_mixin","f":0.95,"c":0.9} +{"s":"odoo:purchase_requisition","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:purchase_requisition","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:quotation_document","p":"inherits_from","o":"odoo:ir_attachment","f":0.95,"c":0.9} +{"s":"odoo:rating_mixin","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:repair_order","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:repair_order","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:res_company","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:res_partner","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:res_partner","p":"inherits_from","o":"odoo:mail_thread_blacklist","f":0.95,"c":0.9} +{"s":"odoo:res_partner","p":"inherits_from","o":"odoo:mail_thread_phone","f":0.95,"c":0.9} +{"s":"odoo:res_partner_bank","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:res_partner_bank","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:sale_order","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:sale_order","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:sale_order_line","p":"inherits_from","o":"odoo:analytic_mixin","f":0.95,"c":0.9} +{"s":"odoo:slide_channel","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:slide_channel","p":"inherits_from","o":"odoo:rating_mixin","f":0.95,"c":0.9} +{"s":"odoo:slide_slide","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:spreadsheet_dashboard","p":"inherits_from","o":"odoo:spreadsheet_mixin","f":0.95,"c":0.9} +{"s":"odoo:spreadsheet_dashboard_share","p":"inherits_from","o":"odoo:spreadsheet_mixin","f":0.95,"c":0.9} +{"s":"odoo:stock_landed_cost","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:stock_landed_cost","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:stock_lot","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:stock_lot","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:stock_picking","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:stock_picking","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:stock_picking_batch","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:stock_picking_batch","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:stock_scrap","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:survey_survey","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:survey_survey","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:survey_user_input","p":"inherits_from","o":"odoo:mail_activity_mixin","f":0.95,"c":0.9} +{"s":"odoo:survey_user_input","p":"inherits_from","o":"odoo:mail_thread","f":0.95,"c":0.9} +{"s":"odoo:website_controller_page","p":"inherits_from","o":"odoo:ir_ui_view","f":0.95,"c":0.9} +{"s":"odoo:website_page","p":"inherits_from","o":"odoo:ir_ui_view","f":0.95,"c":0.9} diff --git a/docs/ODOO-OGAR-MIGRATION-SPRINT.md b/docs/ODOO-OGAR-MIGRATION-SPRINT.md index 8b7260c..af5bff8 100644 --- a/docs/ODOO-OGAR-MIGRATION-SPRINT.md +++ b/docs/ODOO-OGAR-MIGRATION-SPRINT.md @@ -264,3 +264,67 @@ green via a `[path]`-override probe, and a real `account.move` source lowered to `ToSql`) — the native path still owns `DEFINE FUNCTION`/`EVENT`/`INDEX` + computed `VALUE`/`READONLY` (the behaviour arm, W3.4); deleting now loses the reactive wiring. W3.4's RBAC keystone is upstream CONJECTURE. + +--- + +## Recipe-bitmask probe — AR-lifecycle-override redundancy (OGAR `D-RECIPE-BITMASK`) + +> **Framing (operator, 2026-06-30):** OGAR is **Open Graph *Active Record***, so +> the canonical "recipe" IS the AR lifecycle protocol. A best-shaped (AR-canonical) +> consumer stores that recipe once and carries only a per-class override *bitmask* +> + the genuine deltas — the conjecture is that this thins the "impossible 15%" +> behavioural leftover toward ~7% for the best-shaped consumers. The ClassView + +> bitmask + ERB→askama view port is the rendering tier on top (the icing); the AR +> core is the substrate. + +The consumer-side falsifier lives at +`crates/od-ontology/tests/recipe_redundancy_probe.rs` — a **default-build** +(offline, no `ogar-emit`, no git deps) measurement that mirrors +`ogar_actions::corpus_to_actions`'s classification (raises ⇒ guard; else +`MethodKind::Compute` ⇒ compute) and measures how much of the lifted behavioural +arm collapses to the two shared recipe shapes. An `ogar-emit`-gated block pins the +mirror to the real `corpus_action_rows` lift so the two can never drift. + +**Measured (slice_2 corpus — `account_move` + `account_move_line` + `res_partner` ++ `res_company`):** + +``` +behavioral arm : 358 (guards 47 + computes 311) + computes resolved: 141 (reads captured) · unresolved 170 (reads NOT captured) +recipe shapes : 2 carry all 358 behavioral methods +guard arm : 47 guards → 1 shared recipe (46 hidden) — FULL collapse +compute path-sets : 101 distinct of 141 (40 dedup) · avg 1.6 paths +headline (188 resolved): recipe-collapsible 86 (45.7%) · genuine leftover 102 (54.3%) +``` + +**Verdict (honest, Odoo / Python = UPPER bound):** + +- The **guard arm collapses fully** — every `@api.constrains` guard is the same + AR recipe (`LifecycleTrigger{before_save}` + `Reject`); 47 → 1. This is the + recipe-bitmask mechanism working perfectly on a real arm. +- The **compute arm is mostly genuine** — 101 distinct dependency path-sets of + 141 resolved computes; the bitmask hides only 40. Odoo's `_compute_*` methods + each react to a different field set. +- **Leftover 54.3% ≫ 7% → the strong reading is REFUTED** ("Odoo collapses to + 7%") and the conjecture's **scoping is CONFIRMED**: 7% is the best-shaped + *Rails-AR* case, not compute-heavy *Odoo-Python*. +- **Why this is an upper bound (two gaps surfaced):** (a) **inherited-vs-override + is unmeasurable on this slice** — the corpus *does* carry `inherits_from` (8 + edges in slice_2), but every base mixin it names (`mail_thread`, + `sequence_mixin`, `analytic_mixin`, …) is **out-of-slice**, so the bases' method + sets aren't present to dedup an override against (and separately the live-source + `ruff_python_spo` path — `compile_source` — drops `_inherit` in `build_graph` + outright); inheritance is the biggest collapse lever and it's invisible here. + And (b) **method bodies / decorator *types* are not captured** (only + `@api.depends` args + `reads`/`raises` facts), so body-dedup (lossless-DO §1's + stricter test) is invisible. Both can only LOWER the leftover, never raise it. + Filed for upstream in `specs/UPSTREAM_WISHLIST.md` (emit `inherits_from` for + Odoo `_inherit`; optional method-body hash). + +The clean AR-recipe measurement belongs on the **Rails/OpenProject** side, where +`ruff_ruby_spo` captures `callbacks` / `validations` / `sti` as first-class +`Model` data (the recipe *is* the captured AR protocol). Handover with the +concrete Ruby probe spec: +`openproject-nexgen-rs/.claude/handovers/`. Canon home for the conjecture + +falsifier registration: OGAR `D-RECIPE-BITMASK` / `E-RECIPE-BITMASK` / +`PROBE-OGAR-AR-RECIPE-COLLAPSE`.