예제 #1
0
 def __init__(self):
     self.nid = StringField(required=False)
     self.product_id = IntegerField()
     self.standard = StringField()
     self.price = DecimalField()
     self.selling_price = DecimalField()
     super(JdProductPriceForm, self).__init__()
예제 #2
0
    def __init__(self):

        self.title = StringField()
        self.img = StringField()
        self.img_list = StringField(required=False)
        self.detail_list = StringField(required=False)

        super(JdProductForm, self).__init__()
예제 #3
0
    def __init__(self):
        self.nid = IntegerField(
            required=False,
            widget=Widget.InputText(attributes={'class': 'hide'}))

        self.name = StringField()
        self.domain = StringField()

        self.business_mobile = StringField()
        self.business_phone = StringField()
        self.qq = StringField()
        self.address = StringField(widget=Widget.TextArea(
            attributes={'class': 'address'}))
        self.backend_mobile = StringField()
        self.backend_phone = StringField()

        self.user_id = IntegerField(widget=Widget.Select(
            attributes={},
            choices=UserService(UserRepository()).get_user_to_select()))

        self.province_id = IntegerField(
            widget=Widget.Select(attributes={'id': 'province'},
                                 choices=[{
                                     'value': 0,
                                     'text': '请选择省份'
                                 }]))
        self.city_id = IntegerField(widget=Widget.Select(
            attributes={'id': 'city'}, choices=[{
                'value': 0,
                'text': '请选择市'
            }]))
        self.county_id = IntegerField(
            widget=Widget.Select(attributes={'id': 'county'},
                                 choices=[{
                                     'value': 0,
                                     'text': '请选择县(区)'
                                 }]))

        super(MerchantForm, self).__init__()
예제 #4
0
    def __init__(self):
        self.username = StringField()
        self.pwd = StringField()
        self.checkcode = StringField()

        super(Loginform, self).__init__()
예제 #5
0
 def __init__(self):
     self.nid = IntegerField(
         required=False,
         widget=Widget.InputText(attributes={"class": "hide"}))
     self.name = StringField(custom_error_dict={
         "required": "名称不能为空",
         "valid": "名称格式错误"
     })
     self.domain = StringField(custom_error_dict={
         "required": "域名不能为空",
         "valid": "域名格式错误"
     })
     self.business_mobile = StringField(custom_error_dict={
         "required": "业务电话不能为空",
         "valid": "业务电话格式错误"
     })
     self.business_phone = StringField(custom_error_dict={
         "required": "业务手机不能为空",
         "valid": "业务手机格式错误"
     })
     self.qq = StringField(custom_error_dict={
         "required": "QQ不能为空",
         "valid": "QQ格式错误"
     })
     self.address = StringField(
         widget=Widget.TextArea(attributes={"class": "address"}),
         custom_error_dict={
             "required": "地址信息不能为空",
             "valid": "地址格式错误"
         })
     self.backend_mobile = StringField(custom_error_dict={
         "required": "负责人电话不能为空",
         "valid": "负责人电话格式错误"
     })
     self.backend_phone = StringField(custom_error_dict={
         "required": "负责人电话不能为空",
         "valid": "负责人电话格式错误"
     })
     self.user_id = IntegerField(widget=Widget.Select(
         attributes={}, choices=UserService().get_user_to_select()),
                                 custom_error_dict={
                                     "required": "请选择登录用户",
                                     "valid": "选择登录用户错误"
                                 })
     self.province_id = IntegerField(widget=Widget.Select(
         attributes={"id": "my_province"},
         choices=[{
             "value": 0,
             "text": "请选择省份"
         }]),
                                     custom_error_dict={
                                         "required": "请选择省",
                                         "valid": "省选择错误"
                                     })
     self.city_id = IntegerField(widget=Widget.Select(
         attributes={"id": "my_city"},
         choices=[{
             "value": 0,
             "text": "请选择市"
         }]),
                                 custom_error_dict={
                                     "required": "请选择市",
                                     "valid": "市选择错误"
                                 })
     self.country_id = IntegerField(widget=Widget.Select(
         attributes={"id": "my_country"},
         choices=[{
             "value": 0,
             "text": "请选择县(区)"
         }]),
                                    custom_error_dict={
                                        "required": "请选择县(区)",
                                        "valid": "县(区)选择错误"
                                    })
     super(MerchantForm, self).__init__()