本文整理汇总了Python中stoqlib.gui.slaves.saleslave.SaleListToolbar.show_details方法的典型用法代码示例。如果您正苦于以下问题:Python SaleListToolbar.show_details方法的具体用法?Python SaleListToolbar.show_details怎么用?Python SaleListToolbar.show_details使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类stoqlib.gui.slaves.saleslave.SaleListToolbar
的用法示例。
在下文中一共展示了SaleListToolbar.show_details方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: SalesApp
# 需要导入模块: from stoqlib.gui.slaves.saleslave import SaleListToolbar [as 别名]
# 或者: from stoqlib.gui.slaves.saleslave.SaleListToolbar import show_details [as 别名]
#.........这里部分代码省略.........
store.commit(close=True)
self.refresh()
def on_ChangeClient__activate(self, action):
self._change_sale_client()
def on_SalesPrintInvoice__activate(self, action):
return self._print_invoice()
# Loan
def on_LoanNew__activate(self, action):
if self.check_open_inventory():
return
store = api.new_store()
model = self.run_dialog(NewLoanWizard, store)
store.confirm(model)
store.close()
def on_LoanClose__activate(self, action):
if self.check_open_inventory():
return
store = api.new_store()
model = self.run_dialog(CloseLoanWizard, store)
store.confirm(model)
store.close()
def on_LoanSearch__activate(self, action):
self.run_dialog(LoanSearch, self.store)
def on_LoanSearchItems__activate(self, action):
self.run_dialog(LoanItemSearch, self.store)
def on_ReturnedSaleSearch__activate(self, action):
self.run_dialog(ReturnedSaleSearch, self.store)
def on_SearchUnconfirmedSaleItems__activate(self, action):
self.run_dialog(UnconfirmedSaleItemsSearch, self.store)
# Search
def on_SearchClient__activate(self, button):
self.run_dialog(ClientSearch, self.store, hide_footer=True)
def on_SearchProduct__activate(self, button):
self._search_product()
def on_SearchCommission__activate(self, button):
self.run_dialog(CommissionSearch, self.store)
def on_SearchClientCalls__activate(self, action):
self.run_dialog(ClientCallsSearch, self.store)
def on_SearchCreditCheckHistory__activate(self, action):
self.run_dialog(CreditCheckHistorySearch, self.store)
def on_SearchService__activate(self, button):
self.run_dialog(ServiceSearch, self.store, hide_toolbar=True)
def on_SearchSoldItemsByBranch__activate(self, button):
self.run_dialog(SoldItemsByBranchSearch, self.store)
def on_SearchSalesByPaymentMethod__activate(self, button):
self.run_dialog(SalesByPaymentMethodSearch, self.store)
def on_SearchDelivery__activate(self, action):
self.run_dialog(DeliverySearch, self.store)
def on_SearchSalesPersonSales__activate(self, action):
self.run_dialog(SalesPersonSalesSearch, self.store)
def on_SearchClientsWithSale__activate(self, action):
self.run_dialog(ClientsWithSaleSearch, self.store)
def on_SearchClientsWithCredit__activate(self, action):
self.run_dialog(ClientsWithCreditSearch, self.store)
def on_SearchSoldItemsByClient__activate(self, action):
self.run_dialog(SoldItemsByClientSearch, self.store)
# Toolbar
def on_Edit__activate(self, action):
self.sale_toolbar.edit()
def on_Details__activate(self, action):
self.sale_toolbar.show_details()
def on_Return__activate(self, action):
if self.check_open_inventory():
return
self.sale_toolbar.return_sale()
# Sale toobar
def on_sale_toolbar__sale_edited(self, widget, sale):
self.refresh()
def on_sale_toolbar__sale_returned(self, widget, sale):
self.refresh()