Skip to content
  • This project
    • Loading...
  • Sign in

Maria Agustina / hgt_compras

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • hgt_compras
  • wizard
  • crear_solicitudp.py
  • Maria Agustina's avatar
    1482 · 8523d4b7
    Maria Agustina committed 2021-08-09 08:35:16 -0300
    8523d4b7
crear_solicitudp.py 451 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# -*- coding: utf-8 -*-

from odoo import models, fields, api

class hgt_solicitarp(models.TransientModel):
    _name = "hgt.solicitarp"

    wiz_lineasol = fields.Many2one (
        string =u'Linea de solicitud',
        comodel_name ='hgt.compra_solicitudlinea',
    )

    wiz_proovedor= fields.Many2one (
        string =u'Proovedor',
        comodel_name ='hgt.instituciones',
    )

    def procesar_solicitudp(self):
        return (True)