| | |
| | | import android.os.Environment;
|
| | | import android.provider.MediaStore;
|
| | | import android.support.v4.app.Fragment;
|
| | | import android.support.v4.app.FragmentManager;
|
| | | import android.support.v4.app.FragmentTransaction;
|
| | | import android.view.MotionEvent;
|
| | | import android.view.View;
|
| | | import android.view.ViewGroup;
|
| | | import android.view.WindowManager;
|
| | | import android.widget.EditText;
|
| | | import android.widget.FrameLayout;
|
| | | import android.widget.ImageView;
|
| | | import android.widget.LinearLayout;
|
| | | import android.widget.TextView;
|
| | | import android.widget.Toast;
|
| | |
|
| | |
| | | import cn.com.basic.face.base.BaseFragment;
|
| | | import cn.com.basic.face.dialog.AttenderRegisterSelectPhotoDialog;
|
| | | import cn.com.basic.face.dialog.AttenderRegisterUploadPhotoDialog;
|
| | | import cn.com.basic.face.dialog.SurveillancePhotoDialog;
|
| | | import cn.com.basic.face.discern.common.CommonVariables;
|
| | | import cn.com.basic.face.discern.entity.Register;
|
| | | import cn.com.basic.face.discern.query.item.CheckInQueryItem;
|
| | |
| | | import cn.com.basic.face.util.FileUtil;
|
| | |
|
| | | import cn.com.basic.face.util.IdCard;
|
| | | import cn.com.basic.face.util.IdCardReaderThread;
|
| | | import cn.com.basic.face.thread.IdCardReaderThread;
|
| | | import cn.com.basic.face.util.KeyboardUtil;
|
| | | import cn.com.basic.face.util.NativeImg;
|
| | | import cn.com.basic.face.util.OkClickedListener;
|
| | |
|
| | | import cn.com.basic.face.util.AppApi;
|
| | | import cn.com.basic.face.dialog.DateSelectDialog;
|
| | | import cn.com.basic.face.dialog.CountryDialog;
|
| | | import cn.com.basic.face.widget.register.RegisterRightFieldLabelView;
|
| | | import cn.com.basic.face.widget.register.RegisterRightFieldTextView;
|
| | |
| | | public void fragment_attender_register_save_click(View v) {
|
| | | RequestParams params = new RequestParams();
|
| | |
|
| | | if (surveillanceQueryItem_selectPhoto == null) {
|
| | | Toast.makeText(MainActivity.getInstance(), "请选择照片", Toast.LENGTH_SHORT).show();
|
| | | return;
|
| | | }
|
| | |
|
| | | String name = fragment_attender_register_name.getValue();
|
| | | if (name.trim().length() <= 0) {
|
| | | Toast.makeText(MainActivity.getInstance(), "姓名不能为空", Toast.LENGTH_SHORT).show();
|
| | | fragment_attender_register_name.requestFocus();
|
| | | return;
|
| | | }
|
| | | String gender = fragment_attender_register_gender.getValue();
|
| | | if (gender.trim().length() <= 0) {
|
| | | Toast.makeText(MainActivity.getInstance(), "性别不能为空", Toast.LENGTH_SHORT).show();
|
| | | fragment_attender_register_gender.callOnClick();
|
| | | return;
|
| | | }
|
| | |
|
| | | String post = fragment_attender_register_post.getValue();
|
| | | if (post.trim().length() <= 0) {
|
| | | Toast.makeText(MainActivity.getInstance(), "职务类型不能为空", Toast.LENGTH_SHORT).show();
|
| | | fragment_attender_register_post.callOnClick();
|
| | | return;
|
| | | }
|
| | |
|
| | | String department = fragment_attender_register_department.getValue();
|
| | | if (department.trim().length() <= 0) {
|
| | | Toast.makeText(MainActivity.getInstance(), "部门班级不能为空", Toast.LENGTH_SHORT).show();
|
| | | fragment_attender_register_department.callOnClick();
|
| | | return;
|
| | | }
|
| | | OfflineAttenderRegisterItem offlineAttenderRegisterItem = new OfflineAttenderRegisterItem();
|
| | |
| | | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
| | | offlineAttenderRegisterItem.setCreateTime(sdf.format(new Date()));
|
| | |
|
| | | String rawSurveillancePhotoPath = UUID.randomUUID().toString()+".bmp";
|
| | | String rawSurveillancePhotoPath = UUID.randomUUID().toString()+"";
|
| | | byte[] rawSurveillancePhotoBytes = new byte[]{};
|
| | |
|
| | | if (surveillanceQueryItem_selectPhoto != null) {
|
| | |
| | | FileUtil.writeToFile(rawSurveillancePhotoPath, rawSurveillancePhotoBytes);
|
| | | offlineAttenderRegisterItem.setRawSurveillancePhotoPath(rawSurveillancePhotoPath);
|
| | |
|
| | | String surveillancePhotoPath = UUID.randomUUID().toString()+".bmp";
|
| | | String surveillancePhotoPath = UUID.randomUUID().toString()+"";
|
| | | byte[] surveillancePhotoBytes = new byte[]{};
|
| | | if (fragment_attender_register_surveillance_photo_img != null) {
|
| | | ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
| | |
| | | FileUtil.writeToFile(surveillancePhotoPath, surveillancePhotoBytes);
|
| | | offlineAttenderRegisterItem.setSurveillancePhoto(surveillancePhotoPath);
|
| | |
|
| | | String uploadCustomPhotoPath = UUID.randomUUID().toString()+".bmp";
|
| | | String uploadCustomPhotoPath = UUID.randomUUID().toString()+"";
|
| | | byte[] uploadCustomPhotoBytes = new byte[]{};
|
| | | if (fragment_attender_register_upload_custom_photo_img != null) {
|
| | | ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
| | |
| | | FileUtil.writeToFile(uploadCustomPhotoPath, uploadCustomPhotoBytes);
|
| | | offlineAttenderRegisterItem.setUploadCustomPhoto(uploadCustomPhotoPath);
|
| | |
|
| | | String idCardPhotoPath = UUID.randomUUID().toString()+".bmp";
|
| | | String idCardPhotoPath = UUID.randomUUID().toString()+"";
|
| | | byte[] idCardPhotoBytes = new byte[]{};
|
| | | if (fragment_attender_register_id_card_photo_img != null) {
|
| | | ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
| | |
| | | idCardReaderThread = new IdCardReaderThread();
|
| | | idCardReaderThread.start();
|
| | | }
|
| | | setupUI(getView());
|
| | | }
|
| | |
|
| | | public void fillFormWithIdCard(IdCard idCard) {
|
| | |
| | | }, fragment_attender_register_department.getValue());
|
| | | }
|
| | |
|
| | |
|
| | | }
|