diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-10-25 14:01:57 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-10-25 14:01:57 +0700 |
| commit | 907db76e2edfa56186c188e319fdd4bc59383769 (patch) | |
| tree | 6808ebfbc6211177477381c8aa425be3bc115dfc | |
| parent | 039bbc5e941b06199b6c44bb8898a4121e312355 (diff) | |
<iman>add pengajuan tempo
| -rw-r--r-- | indoteknik_custom/models/pengajuan_tempo.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indoteknik_custom/models/pengajuan_tempo.py b/indoteknik_custom/models/pengajuan_tempo.py new file mode 100644 index 00000000..908843c7 --- /dev/null +++ b/indoteknik_custom/models/pengajuan_tempo.py @@ -0,0 +1,11 @@ +from odoo import models, fields +from datetime import datetime, timedelta + + +class PengajuanTempo(models.Model): + _inherit = "pengajuan.tempo" + + name = fields.Char(string="Nama Perusahaan") + street = fields.Char(string="Alamat Perusahaan") + site_id = fields.Many2one('res.partner.site', string='Site') + mobile = fields.Char(string="No. Telfon Perusahaan") |
