Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
odoo
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cooperatic-foodcoops
odoo
Commits
55289c99
Commit
55289c99
authored
May 03, 2022
by
Damien Moulard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add field to product_shelfs
parent
b9bdac40
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
+1
-0
product_shelfs.py
lacagette_addons/lacagette_shelfs/models/product_shelfs.py
+1
-0
No files found.
lacagette_addons/lacagette_shelfs/models/product_shelfs.py
View file @
55289c99
...
@@ -10,6 +10,7 @@ class productShelfs(models.Model):
...
@@ -10,6 +10,7 @@ class productShelfs(models.Model):
sort_order
=
fields
.
Float
(
string
=
"Order number"
,
digits
=
(
10
,
2
),
required
=
True
)
sort_order
=
fields
.
Float
(
string
=
"Order number"
,
digits
=
(
10
,
2
),
required
=
True
)
description
=
fields
.
Char
(
string
=
'Description'
)
description
=
fields
.
Char
(
string
=
'Description'
)
date_last_inventory
=
fields
.
Date
(
string
=
"Last inventory date"
,
default
=
"0001-01-01"
)
date_last_inventory
=
fields
.
Date
(
string
=
"Last inventory date"
,
default
=
"0001-01-01"
)
ongoing_inv_start_datetime
=
fields
.
Datetime
(
string
=
"Onging inventory beginning datetime"
,
default
=
"0001-01-01 00:00:00"
)
inventory_status
=
fields
.
Char
(
string
=
'Inventory status'
,
default
=
""
)
inventory_status
=
fields
.
Char
(
string
=
'Inventory status'
,
default
=
""
)
last_inventory_id
=
fields
.
Integer
(
string
=
"Last inventory ID"
,
default
=
0
)
last_inventory_id
=
fields
.
Integer
(
string
=
"Last inventory ID"
,
default
=
0
)
last_inv_delta_percentage
=
fields
.
Float
(
string
=
"Last Inventory Quantity Delta Percentage"
,
digits
=
(
10
,
2
))
last_inv_delta_percentage
=
fields
.
Float
(
string
=
"Last Inventory Quantity Delta Percentage"
,
digits
=
(
10
,
2
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment