I have developed a new module in openerp to enter the warranty details of the customer.Each entry made is displayed in the tree view.I want to set a unique no.in a predefined format to each of the entry.Now the entries are generated with numbers 25,26,29,25,28,26 like that.I want some recognizable number so that I can easily identify each entry when used in reference fields.How can this be done?Any ideas?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Boekhouding
- Voorraad
- PoS
- Project
- MRP
Deze vraag is gerapporteerd
Hi,
Create sequence for your object Go Settings >> Sequences & Identifiers >> Sequences
Add new file yourfilename_sequence.xml in your module pase this code ans change as per your requirement, add in __opnerp__.py update module
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<!-- Sequences for sale.order -->
<record id="seq_type_sale_order" model="ir.sequence.type">
<field name="name">Sales Order</field>
<field name="code">sale.order</field>
</record>
<record id="seq_sale_order" model="ir.sequence">
<field name="name">Sales Order</field>
<field name="code">sale.order</field>
<field name="prefix">SO</field>
<field name="padding">3</field>
<field name="company_id" eval="False"/>
</record>
</data>
</openerp>
Thanks
Thanks for the suggesion.But how can the reference number sequence for the specified module be created in the Settings >> Sequences & Identifiers >> Sequences.There is nothing in the Settings >> Sequences & Identifiers >> Sequences that can identify that the sequence created is for the specific module.
You can create sequence from Settings >> Sequences & Identifiers >> Sequences Create new record for your object. its work for you
Bt the object is not specified anywhere in the new record created.Then how it can be specified ?
update ans check it
An xml file with the above code has to be createdand the whole module has to be updated isnt it?
@sneha: upgrade your mode and see this link http://help.openerp.com/question/46903/same-field-branch-sequence-different-how-to-do/
hi send your module code
Got soultion ?
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
AanmeldenGerelateerde posts | Antwoorden | Weergaven | Activiteit | |
---|---|---|---|---|
|
6
apr. 25
|
17537 | ||
|
4
jun. 24
|
6873 | ||
|
2
dec. 23
|
2584 | ||
|
1
okt. 23
|
1649 | ||
|
2
jan. 20
|
2909 |