Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
6152 มุมมอง

Hello, I'm new to python... Now I'm just learning how to make a simple Odoo module...

Here's the model:

route.py

from openerp import models, fields
class CourierRoute(models.Model):
_name = 'courier.route'

name = fields.Char(string="Route", help="Format: Origin City > Destination City", required=True)
origin = fields.Many2one('courier.city', string="Origin City", required=True)
destination = fields.Many2one('courier.city', string="Destination City", required=True)
train = fields.Many2one('courier.train', string="Train", required=False)
cost_price = fields.Integer(string="Cost Price", required=False)
origin_price = fields.Integer(string="Origin City Shipment Price", readonly=True)
destination_price = fields.Integer(string="Destination City Shipment Price", readonly=True)
train_price = fields.Integer(string="Train Shipment Price", readonly=True)

city.py

from openerp import models, fields
class CourierCity(models.Model):
_name = 'courier.city'

name = fields.Char(string="City", required=True)
price = fields.Integer(string="Shipping Price", required=True)

train.py

from openerp import models, fields
class CourierTrain(models.Model):
_name = 'courier.train'

name = fields.Char(string="Train", help="Format: Origin Station > Destination Station", required=True)
price = fields.Integer(string="Shipping Price", required=True)


So I was creating a model for choosing necessary shipping route, and then compute all of the prices/cost that have been filled (some are not). But every time I want to make a def, I was confused by the cr,uid,and that such of things, I can't understand it.

Any help or advice is appreciated.

อวตาร
ละทิ้ง
ผู้เขียน คำตอบที่ดีที่สุด

Solved. I finally use related= in integer() and @api.depends to compute the total.

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
0
ส.ค. 19
3476
compute many2one from custom model's แก้ไขแล้ว
1
ต.ค. 20
7703
1
มี.ค. 15
8000
2
ก.พ. 25
5858
1
ธ.ค. 24
1420