Fix sale_report: white rectangle in some sites under the image
parent
c9dd3f6c67
commit
aacf4c2653
|
|
@ -1,21 +1,14 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
if ! $(python -c "import pylint" &> /dev/null); then
|
|
||||||
echo 'Pylint is not installed and is going to be installed now!'
|
|
||||||
sudo pip install pylint
|
|
||||||
else
|
|
||||||
echo 'Pylint is already installed. Continue ...'
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ! $(python -c "import pylint_odoo" &> /dev/null); then
|
if ! $(python -c "import pylint_odoo" &> /dev/null); then
|
||||||
echo 'The pylint module "pylint-odoo" is not installed and is going to be installed now!'
|
echo 'The pylint module "pylint-odoo" is not installed and is going to be installed now!'
|
||||||
sudo pip install --upgrade git+https://github.com/oca/pylint-odoo.git
|
sudo pip3 install --upgrade git+https://github.com/oca/pylint-odoo.git
|
||||||
else
|
else
|
||||||
echo 'The pylint module "pylint-odoo" is already installed. Continue ...'
|
echo 'The pylint module "pylint-odoo" is already installed. Continue ...'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! $(python -c "import git_pylint_commit_hook" &> /dev/null); then
|
if ! $(python -c "import git_pylint_commit_hook" &> /dev/null); then
|
||||||
echo 'git-pylint-commit-hook is not insalled and is going to be isntalled now!'
|
echo 'git-pylint-commit-hook is not insalled and is going to be isntalled now!'
|
||||||
sudo pip install git-pylint-commit-hook
|
sudo pip3 install git-pylint-commit-hook
|
||||||
else
|
else
|
||||||
echo 'git-pylint-commit-hook is already installed. Continue ...'
|
echo 'git-pylint-commit-hook is already installed. Continue ...'
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,7 @@
|
||||||
<p t-if="o.note1">
|
<p t-if="o.note1">
|
||||||
<span t-field="o.note1"/>
|
<span t-field="o.note1"/>
|
||||||
</p>
|
</p>
|
||||||
<table class="table table-condensed">
|
<table class="table table-condensed" style="background-color: #E6E7E9;">
|
||||||
<t t-set="discount_is_set" t-value="field_set_in_lines(o.order_line, 'discount')"/>
|
<t t-set="discount_is_set" t-value="field_set_in_lines(o.order_line, 'discount')"/>
|
||||||
<thead class="table-header">
|
<thead class="table-header">
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue