This module contains pos restaurant-related customizations depending on delight_pos_theme_bits
Timesheet Calendar View.
MO shop floor customization
Generate PDF Report of Work Order
Hides sale and cost prices from product forms
This widget allows you to display and edit only year or month/year in date fields. Usage: # model class Model(models.Model): json_field = fields.Json(string="Your JSON field") # view <form>; .... <field name="date_year_field" widget="year_picker" /> .... <field name="date_month_field" widget="month_picker" /> .... </form>
This widget allows you to conveniently display, edit, validate json data on user form. It has multiple display options (tree, text, code). If a field is read-only, the widget opens only for viewing. The widget is based on JSONEditor by Jos de Jong. Usage: # model class Model(models.Model): json_field = fields.Json(string="Your JSON field") # view <form>; .... <field name="json_field" widget="json_widget" /> .... </form>