2019-09-17 16:39:34 +02:00
|
|
|
;; -*- coding: utf-8 -*-
|
|
|
|
;;
|
2020-03-26 23:31:36 +01:00
|
|
|
;; Copyright 2019-2020 Fabien Bourgeois <fabien@yaltik.com>
|
2019-09-17 16:39:34 +02:00
|
|
|
;;
|
|
|
|
;; This program is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU Affero General Public License as
|
|
|
|
;; published by the Free Software Foundation, either version 3 of the
|
|
|
|
;; License, or (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU Affero General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU Affero General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2019-10-23 05:29:17 +02:00
|
|
|
" Odoo macros "
|
2019-09-17 16:39:34 +02:00
|
|
|
|
2019-10-23 05:29:17 +02:00
|
|
|
(import [os [path]])
|
2020-03-26 23:31:36 +01:00
|
|
|
(import [hy-odoo.xml [xmlroot xmln]])
|
2019-09-18 09:26:07 +02:00
|
|
|
|
2019-10-23 05:29:17 +02:00
|
|
|
; XML helpers functions and macros
|
|
|
|
|
2019-09-22 10:12:41 +02:00
|
|
|
(defn ox-odoo [&rest args] (xmlroot (xmln "odoo" {} #*args)))
|
|
|
|
(defn ox-data [&rest args] (xmln "data" {} #*args))
|
|
|
|
(defn ox-record [&rest args] (xmln "record" #*args))
|
|
|
|
(defn ox-form [&rest args] (xmln "form" #*args))
|
|
|
|
(defn ox-tree [&rest args] (xmln "tree" #*args))
|
|
|
|
(defn ox-search [&rest args] (xmln "search" #*args))
|
|
|
|
(defn ox-act-window [&rest args] (xmln "act_window" #*args))
|
|
|
|
(defn ox-group [&rest args] (xmln "group" #*args))
|
|
|
|
(defn ox-header [&rest args] (xmln "header" #*args))
|
|
|
|
(defn ox-footer [&rest args] (xmln "footer" #*args))
|
2020-03-26 22:32:16 +01:00
|
|
|
(defn ox-sheet [&rest args] (xmln "sheet" #*args))
|
2019-09-22 10:12:41 +02:00
|
|
|
(defn ox-button [&rest args] (xmln "button" #*args))
|
|
|
|
(defn ox-p [&rest args] (xmln "p" #*args))
|
2020-03-26 22:32:16 +01:00
|
|
|
(defn ox-field [&rest args]
|
|
|
|
"Special ox-field allowing mangling name attribute"
|
|
|
|
(setv attrs (nth args 0))
|
|
|
|
(when (and (instance? dict attrs) (in "name" attrs))
|
|
|
|
(assoc attrs "name" (mangle (get attrs "name")))
|
|
|
|
(setv args (list args))
|
|
|
|
(assoc args 0 attrs)
|
|
|
|
(setv args (tuple args)))
|
|
|
|
(xmln "field" #*args))
|
2019-09-17 16:39:34 +02:00
|
|
|
|
2019-09-22 10:12:41 +02:00
|
|
|
(defn ox-field-name [name] (ox-field {"name" "name"} [name]))
|
|
|
|
(defn ox-field-model [model] (ox-field {"name" "model"} [model]))
|
|
|
|
(defn ox-field-inherit [xmlid] (ox-field {"name" "inherit_id" "ref" xmlid} []))
|
|
|
|
(defn ox-field-arch [&rest args] (ox-field {"name" "arch" "type" "xml"} #*args))
|
|
|
|
|
|
|
|
|
|
|
|
(defn ox-view [xmlid children] (ox-record {"id" xmlid "model" "ir.ui.view"} children))
|
|
|
|
(defn ox-view-def [xmlid name model arch]
|
2019-09-17 16:39:34 +02:00
|
|
|
"View and first fields simplification with record xmlid, name, targeted model"
|
2019-09-22 10:12:41 +02:00
|
|
|
(ox-view xmlid
|
|
|
|
[(ox-field-name name)
|
|
|
|
(ox-field-model model)
|
|
|
|
(ox-field-arch arch)]))
|
2020-03-26 22:32:16 +01:00
|
|
|
(defn ox-view-new[view_type model arch]
|
|
|
|
"View : new view definition, based on type (form, tree, ...) and model ID"
|
|
|
|
(setv model_und (.replace model "." "_")
|
|
|
|
model_cap (.join " " (lfor w (.split model ".") (.capitalize w)))
|
|
|
|
xmlid f"{model_und}_view_{view_type}"
|
|
|
|
name f"{model_cap} {(.capitalize view_type)}")
|
|
|
|
(ox-view-def :xmlid xmlid :name name :model model :arch arch))
|
2019-09-22 10:12:41 +02:00
|
|
|
(defn ox-view-inherit [name model inherit arch]
|
2019-09-17 16:39:34 +02:00
|
|
|
"Inherited View simplification with name of the record, xmlid for model and
|
|
|
|
inherited view"
|
|
|
|
(setv module (get (.split __name__ ".") 2)
|
|
|
|
inherited (get (.split inherit ".") 1)
|
|
|
|
xmlid f"{inherited}_inherit_{module}")
|
2019-09-22 10:12:41 +02:00
|
|
|
(ox-view xmlid
|
|
|
|
[(ox-field-name name)
|
|
|
|
(ox-field-model model)
|
|
|
|
(ox-field-inherit inherit)
|
|
|
|
(ox-field-arch arch)]))
|
2019-09-17 16:39:34 +02:00
|
|
|
|
2019-09-22 10:12:41 +02:00
|
|
|
(defn ox-actions-server-code [xmlid name modelref code]
|
2019-09-17 16:39:58 +02:00
|
|
|
"Server actions of type code"
|
2019-09-22 10:12:41 +02:00
|
|
|
(ox-record {"id" xmlid "model" "ir.actions.server"}
|
|
|
|
[(ox-field-name name)
|
|
|
|
(ox-field {"name" "model_id" "ref" modelref} [])
|
|
|
|
(ox-field {"name" "state"} ["code"])
|
|
|
|
(ox-field {"name" "code"} [code])]))
|
2019-09-17 16:39:58 +02:00
|
|
|
|
2019-09-22 10:12:41 +02:00
|
|
|
(defn ox-client-action-multi [xmlid name model action]
|
2019-09-18 21:10:00 +02:00
|
|
|
"Client action multi (ir.values), with own xmlid, name, targeted model and
|
|
|
|
action"
|
|
|
|
(setv action f"'ir.actions.server,%d'%{action}")
|
2019-09-22 10:12:41 +02:00
|
|
|
(ox-record {"id" xmlid "model" "ir.values"}
|
|
|
|
[(ox-field-name name)
|
|
|
|
(ox-field {"name" "key2" "eval" "'client_action_multi'"} [])
|
|
|
|
(ox-field {"name" "model" "eval" (+ "'" model "'")} [])
|
|
|
|
(ox-field {"name" "value" "eval" action})]))
|
2019-09-17 16:39:34 +02:00
|
|
|
|
2019-10-23 05:29:17 +02:00
|
|
|
; Odoo Backend macros
|
|
|
|
|
|
|
|
(defmacro/g! compute-fn [field dependencies body]
|
|
|
|
"Macro to make computed definition smoother"
|
2020-03-26 22:32:16 +01:00
|
|
|
(setv fname f"_compute_{(mangle field)}" descr f"Computes {field}"
|
|
|
|
dependencies (list (map mangle dependencies)))
|
2019-10-23 05:29:17 +02:00
|
|
|
`(do
|
|
|
|
(import [hy.models [HySymbol]])
|
|
|
|
(with-decorator (.depends api ~@dependencies)
|
|
|
|
(defn ~(HySymbol fname) [self]
|
|
|
|
~descr
|
|
|
|
~body))))
|
|
|
|
|
|
|
|
(defmacro compute-field [fname body]
|
|
|
|
(setv fn-name f"_compute_{(mangle fname)}")
|
|
|
|
`(setv ~fname (~@body :compute ~fn-name)))
|
|
|
|
|
|
|
|
; Migrations
|
|
|
|
|
|
|
|
(defn generate-fn-name [filepath]
|
|
|
|
"Generate function name from filepath"
|
|
|
|
(setv version (.replace (get (.split (.dirname path filepath) "/") -1) "." "_")
|
|
|
|
pre-post (get (.split (.basename path filepath) "-") 0))
|
|
|
|
f"{pre-post}_{version}")
|