跳至内容
菜单
此问题已终结
1 回复
5848 查看

we need to add a purchase form in the project .how to do this?

形象
丢弃
最佳答案

Hello veena

yes u can use man2many field for nesting.

.py file:

class project_project(osv.osv):

'purchase_id': fields.many2many('purchase.order',purchase_order_project_rel', 'project_id', 'purchase_id','Purchase Order'),

.xml file

<record id="project_form" model="ir.ui.view">
        <field name="name">project.project.form</field>
        <field name="model">project.project</field>
        <field name="arch" type="xml">

        <separator colspan="4" string="Purchase order info"/>
            <field colspan="4" name="purchase_id" />    


    </field>    
   </record>
形象
丢弃
编写者

we want to reside purchase order form into another form (nesting).in project form we want the purchase form

I have edited my post, hopefully this will fulfils your requirement

编写者

in project form we want to add facility to create purchase orders related to the project. so can u help me to add purchase form into the project form

yes this will add purchase order related to your project only

u see the many2many relation table-> purchase_order_project_re

select * from purchase_order_project_rel ;

this will give you ids of orders related to your each project record.

编写者

shashank , i didn't get you.

did you try to run the code which i mentioned?

编写者

no since i dont know where to place that code.

place this code in your project module.

does your problem resolved?

编写者

another problem arised.....now we need to show all the transfers that take place inside a main warehouse and a local warehouse(including variations in product quantity) in a project

the same process u need to follow, just add another field in ur class

'warehouse_id': fields.many2many('stock.warehouse',warehouse_project_rel', 'project_id', 'warehouse_id','Warehouse Info'),

and do the changes in xml too

编写者

where to add the above code?

编写者

how to transfer products from mainstore to local warehouse?I need to implement a functionality so that the product transfer details of a particular project is viewable.It is like this,I need to save the product and its details transferred from the main store to the local warehouse for this project,the pending stock after the use has to be transferred back to the mainstore.How is this possible?

编写者

i want to install AMC(Annual Maintenance Contract),but in openerp, AMC is not found. From where we can get AMC(Annual Maintenance Contract)?

编写者

I need to add annual maintenance contract,but in openerp, AMC is not found. From where we can get AMC(Annual Maintenance Contract)?

编写者

I am a newbie in openerp and not aware of coding in open erp.My requirement is I need to place a grid in the create 'Contracts' form ,next to the Contracts Information tab.My grid should contain following headers-Product,Description,Quantity,Unit Price etc.It should also have the facility to 'Add New Product' to the product list.Can anyone help me in the above coding?

相关帖文 回复 查看 活动
0
1月 21
2375
1
12月 19
3063
5
7月 19
4851
1
5月 16
3816
3
4月 16
9909