Pos order py
@api.model
def _order_fields(self, ui_order):
res = super()._order_fields(ui_order)
res['carrier_id'] = ui_order.get('carrier_id', False)
return res
Models js
#!/bin/sh -e | |
# | |
# You can run this script directly from github as root like this: | |
# curl -sS https://gist.githubusercontent.com/kamermans/94b1c41086de0204750b/raw/configure_docker0.sh | sudo bash -s - 192.168.254.1/24 | |
# | |
# * Make sure you replace "192.168.254.0/24" with the network that you want to use | |
# | |
# NOTE: This script is intended for Debian / Ubuntu only! | |
if [ $# -lt 1 ]; then |
Pos order py
@api.model
def _order_fields(self, ui_order):
res = super()._order_fields(ui_order)
res['carrier_id'] = ui_order.get('carrier_id', False)
return res
Models js