controllers.js 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. starter.controller('CompConnectCtrl', function ($scope, $state, $ionicSlideBoxDelegate, $rootScope, $ionicHistory, $window,$location, showPopup, global, Comp) {
  2. $scope.activeIndex = 3;
  3. $scope.titleName = ['填写序列号', '选择公司', '用户信息', '导入部门'];
  4. var compmodal = showPopup.modalTemplate('templates/modal-selectcomp.html', 'slide-in-up', $scope);
  5. global.fetch_user().then(function (res) {
  6. // if (!global.sn)
  7. // Comp.sn.get({"comp_id": global.user.compno}, function (data) {
  8. // global.sn = data.sn;
  9. // console.warn("sn: " + global.sn);
  10. // }, function (err) {
  11. // console.error("获取服务器的SN失败: " + JSON.stringify(err))
  12. // });
  13. $scope.activecomp = {};
  14. });
  15. $scope.lockSlide = function () {
  16. $ionicSlideBoxDelegate.enableSlide(false);
  17. };
  18. $scope.next = function (op, serialno) {
  19. $ionicSlideBoxDelegate.next();
  20. $scope.activeIndex = $ionicSlideBoxDelegate.currentIndex();
  21. if (op == 1) {
  22. $scope.serialnumber = serialno;
  23. global.sn = $scope.serialnumber;
  24. Comp.comp('GetComp').query(function (data) {
  25. $scope.compdata = data;
  26. $scope.activecomp = data[0];
  27. $scope.showmodal();
  28. }, function (err) {
  29. console.log(JSON.stringify(err))
  30. })
  31. }
  32. };
  33. $scope.commit = function (r) {
  34. $scope.activecomp = _.extend($scope.activecomp, {"cellphone": global.user.cellphone, "imid": global.user.im_usrid, "linkerpassword": global.user.password, "linkerusername": global.user.usrname, "region": 86});
  35. global.sn = $scope.serialnumber;
  36. showPopup.showLoading(1, '正在提交', false);
  37. Comp.comp("PostComp").save($scope.activecomp, function (data) {
  38. Comp.sn.save({"sn": global.sn, "comp": data.linkercompid}, function (data) {
  39. console.log(data);
  40. $ionicSlideBoxDelegate.next();
  41. }, function (err) {
  42. alert("Linker创建sn失败: " + JSON.stringify(err));
  43. });
  44. }, function (err) {
  45. alert("erp与linker连接失败: " + JSON.stringify(err));
  46. }).$promise.finally(function (f) {
  47. showPopup.hideLoading();
  48. })
  49. };
  50. $scope.importDept = function () {
  51. showPopup.showLoading(1, '导入中', false);
  52. Comp.dept("PostDept").save(function (data) {
  53. $window.location.href = "http://" + $location.host() + ":8100/apps/accountMng/index.html#/contacts/-1&Linker test3&78";
  54. }, function (err) {
  55. alert(JSON.stringify(err))
  56. }).$promise.finally(function (f) {
  57. showPopup.hideLoading();
  58. })
  59. };
  60. $scope.parse = function () {
  61. $window.history.back();
  62. };
  63. $scope.showmodal = function () {
  64. compmodal.then(function (m) {
  65. $rootScope.commons.modal = m;
  66. $rootScope.commons.modal.show();
  67. })
  68. };
  69. $scope.closeModal = function (comp) {
  70. if (comp)
  71. $scope.activecomp = comp;
  72. $rootScope.commons.modal.hide();
  73. };
  74. $scope.back = function () {
  75. if ($scope.activeIndex != 0) {
  76. $ionicSlideBoxDelegate.previous();
  77. $scope.activeIndex = $ionicSlideBoxDelegate.currentIndex();
  78. } else if ($scope.activeIndex == 0) {
  79. $window.history.back();
  80. }
  81. };
  82. })