Source code for stoqlib.gui.dialogs.loandetails

# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4

##
## Copyright (C) 2010 Async Open Source <http://www.async.com.br>
## All rights reserved
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU Lesser General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., or visit: http://www.gnu.org/.
##
## Author(s): Stoq Team <stoq-devel@async.com.br>
##
##
""" Classes for Stock Decrease Details Dialog """

import gtk
from kiwi.ui.objectlist import Column

from stoqlib.domain.loan import Loan
from stoqlib.gui.editors.baseeditor import BaseEditor
from stoqlib.lib.translation import stoqlib_gettext

_ = stoqlib_gettext


[docs]class LoanDetailsDialog(BaseEditor): title = _(u"Loan Details") hide_footer = True size = (700, 400) model_type = Loan gladefile = "LoanDetails" proxy_widgets = ('open_date', 'confirm_date', 'expire_date', 'branch_name', 'client_name', 'responsible_name') def __init__(self, store, model): BaseEditor.__init__(self, store, model) self._setup_widgets()
[docs] def add_tab(self, slave, name): """Add a new tab on the notebook :param slave: the slave we are attaching to the new tab :param name: the name of the tab """ event_box = gtk.EventBox() self.details_notebook.insert_page(event_box, gtk.Label(name)) self.attach_slave(name, slave, event_box) event_box.show()
def _setup_widgets(self): self.product_list.set_columns(self._get_product_columns()) products = self.model.get_items() self.product_list.add_list(list(products)) def _get_product_columns(self): return [Column("sellable.code", title=_("Code"), data_type=str, justify=gtk.JUSTIFY_RIGHT, width=130), Column("sellable.description", title=_("Description"), data_type=str, expand=True), Column("quantity", title=_("Quantity"), data_type=int, justify=gtk.JUSTIFY_RIGHT), Column("sale_quantity", title=_("Sold"), data_type=int, justify=gtk.JUSTIFY_RIGHT), Column("return_quantity", title=_("Returned"), data_type=int, justify=gtk.JUSTIFY_RIGHT), Column("price", title=_("Price"), data_type=int, justify=gtk.JUSTIFY_RIGHT), ] # # BaseEditor Hooks #
[docs] def setup_proxies(self): self.proxy = self.add_proxy(self.model, self.proxy_widgets)