How to calculate the column sum in a flask-admin ModelView over the rows of the model which have been...





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I am using flask-admin and I want to display a column sum of one of my models in the corresponding view.
I declared a model like this:



class Banktransfer(db.Model):
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
booking_date = db.Column(db.Date, nullable=False)
purpose = db.Column(db.String(255))
amount = db.Column(db.Float, nullable=False)


In the corresponding view I added a column_filter and a searchfield. Furthermore I calculate the balance (sum of the column "amount" over all rows) and pass it to the template so it can be displayed on top of the page.



class BanktransferView(sqla.ModelView):
column_filters = ("booking_date",)
column_searchable_list = ('purpose',)
list_template = 'banktransfer_list.html'

@expose('/')
def index_view(self):
self._template_args['balance'] = self.get_balance()
return super(BanktransferView, self).index_view()

def __init__(self, session, **kwargs):
super(BanktransferView, self).__init__(Banktransfer, session, **kwargs)

def get_balance(self):
balance = self.session.query(func.sum(Banktransfer.amount)).first()[0]
return balance


I would also like to display the sum of the column "amount" over all the rows which are selected through the filters and searchbox by the user. Can anyone help me out here? My idea basicly is to pass another value to the template like this:



self._template_args['balance_of_selected'] = self.get_balance_of_selected()


But I don't know how to implement the get_balance_of_selected() method because I need the chosen filters, etc. by the user and I dont know how to adress those.










share|improve this question

























  • This might be of help stackoverflow.com/questions/47124728/…

    – gittert
    Jan 4 at 10:27


















0















I am using flask-admin and I want to display a column sum of one of my models in the corresponding view.
I declared a model like this:



class Banktransfer(db.Model):
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
booking_date = db.Column(db.Date, nullable=False)
purpose = db.Column(db.String(255))
amount = db.Column(db.Float, nullable=False)


In the corresponding view I added a column_filter and a searchfield. Furthermore I calculate the balance (sum of the column "amount" over all rows) and pass it to the template so it can be displayed on top of the page.



class BanktransferView(sqla.ModelView):
column_filters = ("booking_date",)
column_searchable_list = ('purpose',)
list_template = 'banktransfer_list.html'

@expose('/')
def index_view(self):
self._template_args['balance'] = self.get_balance()
return super(BanktransferView, self).index_view()

def __init__(self, session, **kwargs):
super(BanktransferView, self).__init__(Banktransfer, session, **kwargs)

def get_balance(self):
balance = self.session.query(func.sum(Banktransfer.amount)).first()[0]
return balance


I would also like to display the sum of the column "amount" over all the rows which are selected through the filters and searchbox by the user. Can anyone help me out here? My idea basicly is to pass another value to the template like this:



self._template_args['balance_of_selected'] = self.get_balance_of_selected()


But I don't know how to implement the get_balance_of_selected() method because I need the chosen filters, etc. by the user and I dont know how to adress those.










share|improve this question

























  • This might be of help stackoverflow.com/questions/47124728/…

    – gittert
    Jan 4 at 10:27














0












0








0








I am using flask-admin and I want to display a column sum of one of my models in the corresponding view.
I declared a model like this:



class Banktransfer(db.Model):
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
booking_date = db.Column(db.Date, nullable=False)
purpose = db.Column(db.String(255))
amount = db.Column(db.Float, nullable=False)


In the corresponding view I added a column_filter and a searchfield. Furthermore I calculate the balance (sum of the column "amount" over all rows) and pass it to the template so it can be displayed on top of the page.



class BanktransferView(sqla.ModelView):
column_filters = ("booking_date",)
column_searchable_list = ('purpose',)
list_template = 'banktransfer_list.html'

@expose('/')
def index_view(self):
self._template_args['balance'] = self.get_balance()
return super(BanktransferView, self).index_view()

def __init__(self, session, **kwargs):
super(BanktransferView, self).__init__(Banktransfer, session, **kwargs)

def get_balance(self):
balance = self.session.query(func.sum(Banktransfer.amount)).first()[0]
return balance


I would also like to display the sum of the column "amount" over all the rows which are selected through the filters and searchbox by the user. Can anyone help me out here? My idea basicly is to pass another value to the template like this:



self._template_args['balance_of_selected'] = self.get_balance_of_selected()


But I don't know how to implement the get_balance_of_selected() method because I need the chosen filters, etc. by the user and I dont know how to adress those.










share|improve this question
















I am using flask-admin and I want to display a column sum of one of my models in the corresponding view.
I declared a model like this:



class Banktransfer(db.Model):
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
booking_date = db.Column(db.Date, nullable=False)
purpose = db.Column(db.String(255))
amount = db.Column(db.Float, nullable=False)


In the corresponding view I added a column_filter and a searchfield. Furthermore I calculate the balance (sum of the column "amount" over all rows) and pass it to the template so it can be displayed on top of the page.



class BanktransferView(sqla.ModelView):
column_filters = ("booking_date",)
column_searchable_list = ('purpose',)
list_template = 'banktransfer_list.html'

@expose('/')
def index_view(self):
self._template_args['balance'] = self.get_balance()
return super(BanktransferView, self).index_view()

def __init__(self, session, **kwargs):
super(BanktransferView, self).__init__(Banktransfer, session, **kwargs)

def get_balance(self):
balance = self.session.query(func.sum(Banktransfer.amount)).first()[0]
return balance


I would also like to display the sum of the column "amount" over all the rows which are selected through the filters and searchbox by the user. Can anyone help me out here? My idea basicly is to pass another value to the template like this:



self._template_args['balance_of_selected'] = self.get_balance_of_selected()


But I don't know how to implement the get_balance_of_selected() method because I need the chosen filters, etc. by the user and I dont know how to adress those.







python flask-sqlalchemy flask-admin






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 3 at 4:37







luclechef

















asked Jan 3 at 4:32









luclechefluclechef

262




262













  • This might be of help stackoverflow.com/questions/47124728/…

    – gittert
    Jan 4 at 10:27



















  • This might be of help stackoverflow.com/questions/47124728/…

    – gittert
    Jan 4 at 10:27

















This might be of help stackoverflow.com/questions/47124728/…

– gittert
Jan 4 at 10:27





This might be of help stackoverflow.com/questions/47124728/…

– gittert
Jan 4 at 10:27












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016382%2fhow-to-calculate-the-column-sum-in-a-flask-admin-modelview-over-the-rows-of-the%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016382%2fhow-to-calculate-the-column-sum-in-a-flask-admin-modelview-over-the-rows-of-the%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

How to fix TextFormField cause rebuild widget in Flutter

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith