fixes
This commit is contained in:
parent
6ae1d3740c
commit
b086f576a8
@ -385,7 +385,9 @@ def select_delivery(request):
|
|||||||
|
|
||||||
def delivery(request):
|
def delivery(request):
|
||||||
try:
|
try:
|
||||||
|
if request.user.cart.address:
|
||||||
return HttpResponse('"'+request.user.cart.address+'"', status=200, content_type='application/json')
|
return HttpResponse('"'+request.user.cart.address+'"', status=200, content_type='application/json')
|
||||||
|
return HttpResponse("undefined", status=200, content_type='application/json')
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
return HttpResponse("undefined", status=200, content_type='application/json')
|
return HttpResponse("undefined", status=200, content_type='application/json')
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@ class Main extends Component {
|
|||||||
};
|
};
|
||||||
selectDeliveryCallback(point){
|
selectDeliveryCallback(point){
|
||||||
if(point){
|
if(point){
|
||||||
fetch(addr_prefix + '/api/cart/select_delivery?delivery='+point.name).then(resp => resp.json()).then(json => {
|
fetch(addr_prefix + '/api/cart/select_delivery?delivery=' + point.name).then(resp => resp.json()).then(json => {
|
||||||
if(json.status == "failed"){
|
if(json.status == "failed"){
|
||||||
this.setState({
|
this.setState({
|
||||||
status_text: json.reason,
|
status_text: json.reason,
|
||||||
@ -225,7 +225,9 @@ class Main extends Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
selectDelivery = () => {
|
selectDelivery = () => {
|
||||||
Packeta.Widget.pick("8599115769fd895b", this.selectDeliveryCallback.bind(this))
|
Packeta.Widget.pick("8599115769fd895b", this.selectDeliveryCallback.bind(this), {
|
||||||
|
language: "cs",
|
||||||
|
})
|
||||||
}
|
}
|
||||||
togglefaq(){
|
togglefaq(){
|
||||||
this.setState({faq: !this.state.faq});
|
this.setState({faq: !this.state.faq});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user