blob: 4f932c9354889b3f55e659b44714b0743fb4e0d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="res_config_settings_view_form_sale" model="ir.ui.view">
<field name="name">res.config.settings.view.form.inherit.sale.stock.sale</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="sale.res_config_settings_view_form"/>
<field name="arch" type="xml">
<xpath expr="//div[@id='ups']" position="after">
<div class="col-12 col-lg-6 o_setting_box" id="display_incoterms_setting">
<div class="o_setting_left_pane">
<field name="group_display_incoterm"/>
</div>
<div class="o_setting_right_pane">
<label for="group_display_incoterm"/>
<div class="text-muted">
Display incoterms on orders & invoices
</div>
<div class="content-group" attrs="{'invisible': [('group_display_incoterm','=',False)]}">
<div class="mt8">
<button name="%(account.action_incoterms_tree)d" icon="fa-arrow-right" type="action" string="Incoterms" class="btn-link"/>
</div>
</div>
</div>
</div>
</xpath>
</field>
</record>
<record id="res_config_settings_view_form_stock" model="ir.ui.view">
<field name="name">res.config.settings.view.form.inherit.sale.stock.stock</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="stock.res_config_settings_view_form"/>
<field name="arch" type="xml">
<div id="production_lot_info" position="inside">
<div class="col-12 col-lg-6 o_setting_box" attrs="{'invisible': [('group_stock_production_lot', '=', False)]}" id="group_lot_on_invoice">
<div class="o_setting_left_pane">
<field name="group_lot_on_invoice"/>
</div>
<div class="o_setting_right_pane">
<label for="group_lot_on_invoice"/>
<div class="text-muted">
Lots & Serial numbers will appear on the invoice
</div>
</div>
</div>
</div>
<div id="warning_info" position="after">
<div class="col-12 col-lg-6 o_setting_box">
<div class="o_setting_right_pane">
<label for="default_picking_policy"/>
<div class="text-muted">
When to start shipping
</div>
<div class="content-group">
<div class="mt16">
<field name="default_picking_policy" class="o_light_label" widget="selection"/>
</div>
</div>
</div>
</div>
<div class="col-12 col-lg-6 o_setting_box" title="Reserving products manually in delivery orders or by running the scheduler is advised to better manage priorities in case of long customer lead times or/and frequent stock-outs. By default, the scheduler runs automatically every 24 hours.">
<div class="o_setting_right_pane">
<label for="module_procurement_jit"/>
<div class="text-muted">
When to reserve sold products
</div>
<div class="content-group">
<div class="mt16">
<field name="module_procurement_jit" class="o_light_label" widget="radio"/>
</div>
</div>
</div>
</div>
</div>
<xpath expr="//h2[@id='schedule_info']" position="attributes">
<attribute name="invisible">0</attribute>
</xpath>
<div id="sale_security_lead" position="replace">
<div class="col-12 col-lg-6 o_setting_box" title="Margin of error for dates promised to customers. Products will be scheduled for procurement and delivery that many days earlier than the actual promised date, to cope with unexpected delays in the supply chain.">
<div class="o_setting_left_pane">
<field name="use_security_lead"/>
</div>
<div class="o_setting_right_pane">
<label for="use_security_lead"/>
<a href="https://www.odoo.com/documentation/14.0/applications/inventory_and_mrp/inventory/management/planning/scheduled_dates.html" title="Documentation" class="mr-2 o_doc_link" target="_blank"></a>
<span class="fa fa-lg fa-building-o" title="Values set here are company-specific." role="img" aria-label="Values set here are company-specific." groups="base.group_multi_company"/>
<div class="text-muted">
Schedule deliveries earlier to avoid delays
</div>
<div class="content-group">
<div class="mt16" attrs="{'invisible': [('use_security_lead','=',False)]}">
<span>Move forward expected delivery dates by <field name="security_lead" class="oe_inline"/> days</span>
</div>
</div>
</div>
</div>
</div>
</field>
</record>
</odoo>
|