blob: db519ed69e0d52344f5aa0722a9b14df4f7fbe5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from odoo import models, fields
class PengajuanTempoLine(models.Model):
_name = 'user.pengajuan.tempo.line'
# Fields untuk tabel supplier
name_supplier = fields.Char(string="Nama Supplier")
pic_name = fields.Char(string="PIC")
phone = fields.Char(string="Telepon")
tempo_duration = fields.Char(string="Durasi Tempo")
credit_limit = fields.Char(string="Credit Limit")
|