minor fix add field

This commit is contained in:
wilsongomez 2022-05-17 10:51:39 -05:00
parent 00c1910479
commit 4a830fc000
68 changed files with 9 additions and 0 deletions

0
.gitignore vendored Normal file → Executable file
View File

0
CHANGELOG Normal file → Executable file
View File

0
COPYRIGHT Normal file → Executable file
View File

0
INSTALL Normal file → Executable file
View File

0
LICENSE Normal file → Executable file
View File

0
MANIFEST.in Normal file → Executable file
View File

0
PKG-INFO Normal file → Executable file
View File

0
README Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
TODO Normal file → Executable file
View File

0
__init__.py Normal file → Executable file
View File

0
api_log.py Normal file → Executable file
View File

0
api_log.xml Normal file → Executable file
View File

0
category.py Normal file → Executable file
View File

0
category.xml Normal file → Executable file
View File

0
configuration.py Normal file → Executable file
View File

0
configuration.xml Normal file → Executable file
View File

0
doc/index.rst Normal file → Executable file
View File

0
efficacy_month.ods Normal file → Executable file
View File

0
exceptions.py Normal file → Executable file
View File

0
icons/tryton-laboratory.svg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

0
invoice.py Normal file → Executable file
View File

0
invoice.xml Normal file → Executable file
View File

0
ir.py Normal file → Executable file
View File

0
laboratory.xml Normal file → Executable file
View File

0
locale/es.po Normal file → Executable file
View File

0
message.xml Normal file → Executable file
View File

0
order_indicator.ods Normal file → Executable file
View File

0
party.py Normal file → Executable file
View File

7
product.py Normal file → Executable file
View File

@ -26,3 +26,10 @@ class ProductSupplier(metaclass=PoolMeta):
invima = fields.Char('Invima')
date_invima = fields.Date('Date Invima')
risk_type = fields.Selection([
('type_1', 'Type 1'),
('type_2', 'Type 2'),
('type_3', 'Type 3'),
('type_4', 'Type 4'),
('type_5', 'Type 5')
],'Risk Type')

0
product.xml Normal file → Executable file
View File

0
purchase.py Normal file → Executable file
View File

0
service_order.fodt Normal file → Executable file
View File

0
service_order.py Normal file → Executable file
View File

0
service_order.xml Normal file → Executable file
View File

0
setup.cfg Normal file → Executable file
View File

0
setup.py Normal file → Executable file
View File

0
test_type.py Normal file → Executable file
View File

0
test_type.xml Normal file → Executable file
View File

0
tests/__init__.py Normal file → Executable file
View File

0
tryton.cfg Normal file → Executable file
View File

0
view/api_log_form.xml Normal file → Executable file
View File

0
view/api_log_tree.xml Normal file → Executable file
View File

0
view/category_form.xml Normal file → Executable file
View File

0
view/category_list.xml Normal file → Executable file
View File

0
view/category_tree.xml Normal file → Executable file
View File

0
view/configuration_form.xml Normal file → Executable file
View File

0
view/configuration_tree.xml Normal file → Executable file
View File

0
view/conservation_form.xml Normal file → Executable file
View File

0
view/conservation_tree.xml Normal file → Executable file
View File

0
view/create_invoice_start_form.xml Normal file → Executable file
View File

0
view/efficacy_month_start_form.xml Normal file → Executable file
View File

0
view/invoice_form.xml Normal file → Executable file
View File

0
view/order_form.xml Normal file → Executable file
View File

0
view/order_line_form.xml Normal file → Executable file
View File

0
view/order_line_tree.xml Normal file → Executable file
View File

0
view/order_payment_form.xml Normal file → Executable file
View File

0
view/order_payment_tree.xml Normal file → Executable file
View File

0
view/order_tree.xml Normal file → Executable file
View File

2
view/product_supplier_form.xml Normal file → Executable file
View File

@ -8,5 +8,7 @@ this repository contains the full copyright notices and license terms. -->
<field name="invima"/>
<label name="date_invima"/>
<field name="date_invima"/>
<label name="risk_type"/>
<field name="risk_type"/>
</xpath>
</data>

0
view/section_form.xml Normal file → Executable file
View File

0
view/section_tree.xml Normal file → Executable file
View File

0
view/service_order_indicators_start_form.xml Normal file → Executable file
View File

0
view/template_form.xml Normal file → Executable file
View File

0
view/template_tree.xml Normal file → Executable file
View File

0
view/test_type_form.xml Normal file → Executable file
View File

0
view/test_type_tree.xml Normal file → Executable file
View File

0
voucher.py Normal file → Executable file
View File