Questions tagged [flectra]
8 questions
1
vote
1 answer
External ID not found in the system python backend , render template in odoo framework
i am work on odoo backend and am try to make controller to route web page but am getting this error :
File "C:\Users\urr\server\flectra\http.py", line 316, in _handle_exception
raise exception.with_traceback(None) from new_cause
ValueError:…

Anabeil
- 73
- 1
- 11
1
vote
1 answer
In odoo ,I select all the records in page 1 then navigating to page 2 all records in unselected, how to fix
Good day, Hello friends, I'm having this issue when trying to select all the records in the page 1, then when going to the page 2 all of the records in this page is unselected. Can someone help me to fix this and select all the records when…

henry asst
- 11
- 1
0
votes
1 answer
Fix Expected Singleton Error on Odoo14/Flectra
I have a problem where I have a lot of data records, and when I try to download more than 1 data record an error always appears which basically looks like this
File "c:\\users\\it uw\\odoo14\\mspcustomaddons\\l10n_id_efaktur\\models\\account_move.py…

it uw
- 1
0
votes
0 answers
Odoo14 Error : ValueError("Expected singleton: %s" % self)
I have a problem with my odoo14 system, so the problem is when I try to download more than 1 file in my system , it always display error message
ValueError("Expected singleton: %s" % self)
ValueError: : "Expected singleton:…

it uw
- 1
0
votes
0 answers
Installation of Flectra ended up with 500 Internal Server Error
I installed Flectra on two computers of Windows 10, both ended up with 500 Internal Server Error - nothing opened and I could not use the system at all.

Tambet Väli
- 11
- 2
0
votes
0 answers
Where can I find the list of Model Field Attributes for Flectra?
I am currently developing some modules in Flectra but I am new to the environment and the documentation. The Docs mention that the Module Fields have common attributes, but it won't provide a list of all the attributes..
Can someone help me figure…

rigozsolt01
- 75
- 4
0
votes
1 answer
How to style product description output in sale.order report template in Flectra or Odoo?
I want to set the first line of the product description inside the printed PDF report of an Flectra/Odoo offer to BOLD so I added the following code to my model
@api.multi
def setFirstLineBold(self,txt):
txt = txt.replace('\n', '
') …
') …

headkit
- 3,307
- 4
- 53
- 99
0
votes
1 answer
How Do I transfer data from sale order to invoice when clicking on 'Create Invoice' in Odoo 14 or Flectra 1.7?
I run Flectra inside a Docker container. I have custom fields in sale.order which I want to transfer to account.invoice.
class SaleOrder(models.Model):
_inherit = 'sale.order'
myField = fields.Integer(string='My Field', default=21, required…

headkit
- 3,307
- 4
- 53
- 99