controllers.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. starter.controller('ErpBxCtrl', function ($rootScope, $scope, $state, $window, $ionicPopover, global, ErpBx) {
  2. var beforeEnter = $scope.$on("$ionicView.beforeEnter", function (event, data) {
  3. global.fetch_user().then(function () {
  4. gettaxrtodata();
  5. });
  6. });
  7. global.fetch_user().then(function () {
  8. getrecorddata();
  9. });
  10. $ionicPopover.fromTemplateUrl('templates/paymenu.html', {
  11. scope: $scope
  12. }).then(function (popover) {
  13. $scope.popover = popover;
  14. });
  15. $scope.torecord = function (record) {
  16. if (record) {
  17. ErpBx.recordItem = record;
  18. $state.go('erpbx-record', {
  19. id: record.id
  20. });
  21. } else {
  22. $scope.popover.hide();
  23. $state.go('erpbx-record', {
  24. id: -1
  25. });
  26. }
  27. };
  28. $scope.toaudit = function () {
  29. }
  30. $scope.tobill = function () {
  31. $scope.popover.hide();
  32. $state.go('erpbx-bill', {
  33. id: -1
  34. });
  35. };
  36. $scope.doRefresh = function () {
  37. getrecorddata();
  38. }
  39. function gettaxrtodata() {
  40. ErpBx.linkerBX('GetTaxRto').get(function (data) {
  41. ErpBx.taxrto = data.taxrto;
  42. })
  43. }
  44. function getrecorddata() {
  45. ErpBx.linkerBX('GetBX').query(function (data) {
  46. $scope.records = data;
  47. ErpBx.recordlist = data;
  48. }, function (err) {
  49. if (err.status == 401 && _.has(err.data, 'IsAuth'))
  50. $window.location.href = formatFilter("http://" + $window.location.host + "/apps/authuser/index.html");
  51. }).$promise.finally(function () {
  52. $scope.$broadcast('scroll.refreshComplete');
  53. })
  54. }
  55. var RecordListDoRefresh = $rootScope.$on('RecordListDoRefresh', function (event ,data) {
  56. getrecorddata();
  57. })
  58. $scope.$on('$destroy', function () {
  59. RecordListDoRefresh();
  60. beforeEnter();
  61. })
  62. })
  63. .controller('ErpBxRecordCtrl', function ($rootScope, $scope, $state, $cordovaDatePicker, $ionicHistory, $cordovaDialogs, global, showPopup, ErpBx, Tool, formatFilter, cfg) {
  64. $scope.recordid = $state.params['id'];
  65. $scope.taxCategory = ['', '不计税', '税内含', '税外加'];
  66. $scope.deleteimage_list = [];
  67. var watch = null;
  68. showPopup.modalTemplate('templates/modal-selecttax.html', 'slide-in-right', $scope).then(function (modal) {
  69. $scope.select_tax_modal = modal;
  70. });
  71. showPopup.modalTemplate('templates/modal-selecttype.html', 'slide-in-right', $scope).then(function (modal) {
  72. $scope.select_type_modal = modal;
  73. });
  74. var isModified = false;
  75. $scope.language = global.language;
  76. global.fetch_user().then(function () {
  77. if ($scope.recordid == -1) {
  78. gettypedata();
  79. $scope.record = {
  80. fee_id: null,
  81. fee_name: null,
  82. fee_eng_name: null,
  83. tax_id: 1,
  84. amt: null,
  85. tax_rto: ErpBx.taxrto,
  86. tax: null,
  87. inv_no: null,
  88. bx_dd: new Date(),
  89. rem: null,
  90. uni_no_pay: null,
  91. files: []
  92. };
  93. } else if ($scope.recordid == 0){
  94. $scope.record = angular.copy(ErpBx.tfitem);
  95. } else {
  96. gettypedata();
  97. ErpBx.linkerBX('GetOneBX').get({id :$scope.recordid}, function (data) {
  98. $scope.record = data;
  99. _.each($scope.record.files, function (item) {
  100. item.file_thumbnail_path = formatFilter('{0}ext_erp/{1}', cfg.api, item.url);
  101. item.file_full_path = formatFilter('{0}ext_erp/{1}', cfg.api, item.url);
  102. });
  103. watch = $scope.$watch('record', function (n, o) {
  104. if (n == o)
  105. return;
  106. isModified = true;
  107. }, true);
  108. })
  109. }
  110. });
  111. $scope.doRefresh = function () {
  112. gettypedata();
  113. }
  114. $scope.loadMore = function () {
  115. if ($scope.types != undefined && $scope.types.next != null) {
  116. Tool.get($scope.types.next).then(function (data) {
  117. $scope.types.Data = $scope.types.Data.concat(data.Data);
  118. $scope.types.next = data.next;
  119. $scope.types.previous = data.previous;
  120. }).finally(function () {
  121. $scope.$broadcast('scroll.infiniteScrollComplete');
  122. });
  123. } else {
  124. $scope.$broadcast('scroll.infiniteScrollComplete');
  125. }
  126. }
  127. $scope.moreCanBeLoaded = function () {
  128. return $scope.types != undefined && $scope.types.next != null;
  129. }
  130. $scope.showModal = function (type) {
  131. if ($scope.recordid == 0) return;
  132. if (type == 'tax') {
  133. $scope.select_tax_modal.show();
  134. $rootScope.commons.modal = $scope.select_tax_modal;
  135. } else if (type == 'type') {
  136. $scope.select_type_modal.show();
  137. $rootScope.commons.modal = $scope.select_type_modal;
  138. }
  139. }
  140. $scope.closeModal = function (item) {
  141. $scope.record.fee_name = item.name;
  142. $scope.record.fee_eng_name = item.eng_name;
  143. $rootScope.commons.modal.hide();
  144. }
  145. $scope.selectDate = function () {
  146. if ($scope.recordid == 0) return;
  147. var options = {
  148. mode: 'date',
  149. date: new Date($scope.record.bx_dd),
  150. androidTheme: 3
  151. };
  152. $cordovaDatePicker.show(options).then(function (date) {
  153. if (date == undefined) return;
  154. $scope.record.bx_dd = date;
  155. });
  156. }
  157. $scope.saverecord = function () {
  158. if ($scope.recordid == 0) return;
  159. if ($scope.record.amt == null) {
  160. showPopup.PopupWindow(0, "请填写金额", false);
  161. return
  162. } else if ($scope.record.fee_id == null) {
  163. showPopup.PopupWindow(0, "请选择消费类型", false);
  164. return
  165. } else if ($scope.language == 'zh-TW') {
  166. if (!$scope.record.inv_no || $scope.record.inv_no == '') {
  167. showPopup.PopupWindow(0, "请填写发票号码", false);
  168. return
  169. } else if ($scope.record.inv_no && $scope.record.inv_no.length != 14) {
  170. showPopup.PopupWindow(0, "请核对发票号码", false);
  171. return
  172. }
  173. if (!$scope.record.uni_no_pay || $scope.record.uni_no_pay == '') {
  174. showPopup.PopupWindow(0, "请填写统一编号", false);
  175. return
  176. } else if ($scope.record.uni_no_pay && $scope.record.uni_no_pay.length != 20) {
  177. showPopup.PopupWindow(0, "请核对统一编号", false);
  178. return
  179. }
  180. }
  181. showPopup.showLoading(1, '正在提交', true);
  182. if ($scope.recordid == -1) {
  183. ErpBx.linkerBX('PostBx').save($scope.record, function (data) {
  184. var imagefiles = _.pluck($scope.record.files, 'file_full_path');
  185. postImgae(imagefiles);
  186. })
  187. } else {
  188. if (isModified) {
  189. ErpBx.linkerBX('PutBX').update($scope.record, function (data) {
  190. _.each($scope.deleteimage_list, function (image) {
  191. ErpBx.image('DelFile').delete({id: image.id, filename:image.filename, table:'LINKERBX_FILE'});
  192. });
  193. var imagefiles = [];
  194. _.each($scope.record.files, function (image) {
  195. if (!image.id)
  196. imagefiles.push(image.file_full_path);
  197. });
  198. postImgae(imagefiles);
  199. })
  200. } else {
  201. showPopup.hideLoading();
  202. $ionicHistory.goBack();
  203. }
  204. }
  205. }
  206. $scope.deleteRecord = function () {
  207. if ($scope.recordid == 0) return;
  208. $cordovaDialogs.confirm('是否删除该消费记录?', '提示', ['是','否']).then(function(buttonIndex) {
  209. if (res) {
  210. showPopup.showLoading(1, '删除中', true);
  211. ErpBx.linkerBX('DeleteBX').delete({id: $scope.recordid}, function (data) {
  212. $scope.$emit('RecordListDoRefresh');
  213. $ionicHistory.goBack();
  214. }, function (err) {
  215. alert(JSON.stringify(err));
  216. }).$promise.finally(function () {
  217. showPopup.hideLoading();
  218. })
  219. }
  220. });
  221. }
  222. function postImgae(imagefiles) {
  223. if (imagefiles.length > 0) {
  224. ErpBx.uploadImage(imagefiles, 'LINKERBX_FILE', $scope.record.id).then(function (data) {
  225. $scope.$emit('RecordListDoRefresh');
  226. showPopup.hideLoading();
  227. $ionicHistory.goBack();
  228. })
  229. } else {
  230. $scope.$emit('RecordListDoRefresh');
  231. showPopup.hideLoading();
  232. $ionicHistory.goBack();
  233. }
  234. }
  235. function gettypedata() {
  236. if (global.user.token != "") {
  237. ErpBx.query('GetData').get({table: 'EXPENSE', page: 1}, function (data) {
  238. $scope.types = data;
  239. }, function (err) {
  240. alert(JSON.stringify(err));
  241. }).$promise.finally(function () {
  242. $scope.$broadcast('scroll.refreshComplete');
  243. });
  244. }
  245. }
  246. $scope.isCheck = function () {
  247. return $scope.recordid == 0;
  248. }
  249. $scope.$on('$destroy', function () {
  250. $scope.select_tax_modal.remove();
  251. $scope.select_type_modal.remove();
  252. if ($scope.recordid != -1 && $scope.recordid != 0) {
  253. watch();
  254. }
  255. })
  256. })
  257. .controller('ErpBxBillCtrl', function ($rootScope, $scope, $state, $cordovaDatePicker, $ionicHistory, $cordovaDialogs, global, ErpBx, showPopup, Tool, formatFilter, cfg) {
  258. $scope.select_record_modal = showPopup.modalTemplate('templates/modal-selectrecord.html', 'slide-in-right', $scope);
  259. showPopup.modalTemplate('templates/modal-selectdept.html', 'slide-in-right', $scope).then(function (modal) {
  260. $scope.select_dept_modal = modal;
  261. });
  262. $scope.billid = $state.params['id'];
  263. $scope.recordlist = angular.copy(ErpBx.recordlist);
  264. $scope.amountSum = 0;
  265. var isModified = false;
  266. var isFirst = false;
  267. var watch = null;
  268. global.fetch_user().then(function () {
  269. getdeptdata();
  270. if ($scope.billid == -1) {
  271. $scope.bill = {
  272. bx_no: null,
  273. bx_dd: new Date(),
  274. dep: null,
  275. depname: null,
  276. chk_man: null,
  277. bxlist:[]
  278. };
  279. $scope.select_record_modal.then(function (modal) {
  280. isFirst = true;
  281. $scope.select_record_modal = modal;
  282. $rootScope.commons.modal = modal;
  283. $scope.select_record_modal.show();
  284. });
  285. } else {
  286. $scope.select_record_modal.then(function (modal) {
  287. $scope.select_record_modal = modal;
  288. });
  289. ErpBx.MFBX('GetMFBX').get({bxno :$scope.billid}, function (data) {
  290. $scope.bill = data;
  291. _.each($scope.bill.bxlist, function (item) {
  292. $scope.amountSum += item.amt;
  293. $scope.recordlist.splice(0, 0, item);
  294. item.selected = true;
  295. _.each(item.files, function (file) {
  296. file.file_thumbnail_path = formatFilter('{0}ext_erp/{1}', cfg.api, file.url);
  297. file.file_full_path = formatFilter('{0}ext_erp/{1}', cfg.api, file.url);
  298. })
  299. });
  300. $scope.bxlist_old = _.map(data.bxlist, function (item) {
  301. return {id: item.id}
  302. });
  303. watch = $scope.$watch('bill', function (n, o) {
  304. if (n == o)
  305. return;
  306. isModified = true;
  307. }, true);
  308. }, function (err) {
  309. alert(JSON.stringify(err));
  310. })
  311. }
  312. });
  313. $scope.doRefresh = function () {
  314. getdeptdata();
  315. }
  316. $scope.loadMore = function () {
  317. if ($scope.department != undefined && $scope.department.next != null) {
  318. Tool.get($scope.department.next).then(function (data) {
  319. $scope.department.Data = $scope.department.Data.concat(data.Data);
  320. $scope.department.next = data.next;
  321. $scope.department.previous = data.previous;
  322. }).finally(function () {
  323. $scope.$broadcast('scroll.infiniteScrollComplete');
  324. });
  325. } else {
  326. $scope.$broadcast('scroll.infiniteScrollComplete');
  327. }
  328. }
  329. $scope.moreCanBeLoaded = function () {
  330. return $scope.department != undefined && $scope.department.next != null;
  331. }
  332. $scope.selectRecord = function (recorditem) {
  333. if (recorditem.selected) {
  334. $scope.amountSum = parseFloat($scope.amountSum) + parseFloat(recorditem.amt);
  335. } else {
  336. $scope.amountSum = parseFloat($scope.amountSum) - parseFloat(recorditem.amt);
  337. }
  338. };
  339. $scope.toEditRecord = function () {
  340. $scope.select_record_modal.show();
  341. $rootScope.commons.modal = $scope.select_record_modal;
  342. };
  343. $scope.selectDate = function () {
  344. var options = {
  345. mode: 'date',
  346. date: new Date($scope.bill.bx_dd),
  347. androidTheme: 3
  348. };
  349. $cordovaDatePicker.show(options).then(function (date) {
  350. if (date == undefined) return;
  351. $scope.bill.bx_dd = date;
  352. });
  353. }
  354. $scope.ok = function () {
  355. if (isFirst) {
  356. isFirst = false;
  357. }
  358. $scope.bill.bxlist = _.filter($scope.recordlist, function (item) {
  359. return item.selected;
  360. })
  361. $rootScope.commons.modal.hide();
  362. }
  363. $scope.cancel = function () {
  364. goback();
  365. };
  366. $scope.showModal = function () {
  367. $scope.select_dept_modal.show();
  368. $rootScope.commons.modal = $scope.select_dept_modal;
  369. }
  370. $scope.closeModal = function (item) {
  371. $scope.bill.dep = item.no;
  372. $scope.bill.depname = item.name;
  373. $rootScope.commons.modal.hide();
  374. }
  375. $rootScope.commons.fun = function () {
  376. goback();
  377. };
  378. $scope.savebill = function () {
  379. if ($scope.bill.dep == null) {
  380. showPopup.PopupWindow(0, "请选择部门", false);
  381. return
  382. } else if ($scope.bill.bxlist.length == 0) {
  383. showPopup.PopupWindow(0, "请选择消费记录", false);
  384. return
  385. }
  386. var data = angular.copy($scope.bill);
  387. data.bxlist = _.map(data.bxlist, function (item) {
  388. return {id: item.id}
  389. });
  390. data = _.omit(data, 'depname');
  391. showPopup.showLoading(1, '正在提交', true);
  392. if ($scope.billid == -1) {
  393. ErpBx.MFBX('PostMFBX').save(data, function (data) {
  394. $scope.$emit('RecordListDoRefresh');
  395. $ionicHistory.goBack();
  396. }, function (err) {
  397. alert(JSON.stringify(err));
  398. }).$promise.finally(function () {
  399. showPopup.hideLoading();
  400. })
  401. } else {
  402. if (isModified) {
  403. var addlist = _.difference(_.map(data.bxlist, function (item) {
  404. return item.id
  405. }), _.map($scope.bxlist_old, function (item) {
  406. return item.id
  407. }));
  408. var deletelist = _.difference(_.map($scope.bxlist_old, function (item) {
  409. return item.id
  410. }), _.map(data.bxlist, function (item) {
  411. return item.id
  412. }));
  413. _.each(addlist, function (additem) {
  414. var item = _.find(data.bxlist, function (item) {
  415. return additem == item.id
  416. });
  417. item.tfbx_status = 'A'
  418. });
  419. data.bxlist = data.bxlist.concat(_.map(deletelist, function (item) {
  420. return {id: item, tfbx_status: 'D'}
  421. }));
  422. ErpBx.MFBX('PutMFBX').update(data, function (data) {
  423. $scope.$emit('BillListDoRefresh');
  424. $scope.$emit('RecordListDoRefresh');
  425. $ionicHistory.goBack();
  426. }, function (err) {
  427. alert(JSON.stringify(err));
  428. }).$promise.finally(function () {
  429. showPopup.hideLoading();
  430. })
  431. } else {
  432. $ionicHistory.goBack();
  433. showPopup.hideLoading();
  434. }
  435. }
  436. }
  437. $scope.deletebill = function () {
  438. $cordovaDialogs.confirm('是否删除该报销单?', '提示', ['是','否']).then(function(buttonIndex) {
  439. if (buttonIndex == 1) {
  440. showPopup.showLoading(1, '删除中', true);
  441. ErpBx.MFBX('DeleteMFBX').delete({key: $scope.billid, modifydd: $scope.bill.modify_dd ? $scope.bill.modify_dd : ''}, function (data) {
  442. $scope.$emit('BillListDoRefresh');
  443. $scope.$emit('RecordListDoRefresh');
  444. $ionicHistory.goBack();
  445. }, function (err) {
  446. alert(JSON.stringify(err));
  447. }).$promise.finally(function () {
  448. showPopup.hideLoading();
  449. })
  450. }
  451. });
  452. }
  453. $scope.totfdetail = function (item) {
  454. ErpBx.tfitem = item;
  455. $state.go('erpbx-record', {
  456. id: 0
  457. });
  458. }
  459. function goback() {
  460. if (isFirst) {
  461. $ionicHistory.goBack();
  462. }
  463. if ($rootScope.commons.modal) {
  464. $rootScope.commons.modal.hide();
  465. $rootScope.commons.modal = undefined;
  466. }
  467. }
  468. function getdeptdata() {
  469. if (global.user.token != "") {
  470. ErpBx.query('GetData').get({table: 'DEPT', page: 1}, function (data) {
  471. $scope.department = data;
  472. }, function (err) {
  473. alert(JSON.stringify(err));
  474. }).$promise.finally(function () {
  475. $scope.$broadcast('scroll.refreshComplete');
  476. });
  477. }
  478. }
  479. $scope.$on("$destroy", function () {
  480. $scope.select_record_modal.remove();
  481. $scope.select_dept_modal.remove();
  482. if ($scope.billid != -1) {
  483. watch();
  484. }
  485. });
  486. })
  487. .controller('ErpBxListCtrl', function ($rootScope, $scope, $state, global, Tool, ErpBx, showPopup) {
  488. showPopup.modalTemplate('templates/modal-selectdate.html', 'slide-in-right', $scope).then(function (modal) {
  489. $scope.select_date_modal = modal;
  490. });
  491. $scope.chkdd_tv_arr = ErpBx.chkdd_tv_arr;
  492. $scope.chkdd_tv = 0;
  493. global.fetch_user().then(function () {
  494. getbilldata();
  495. });
  496. $scope.doRefresh = function () {
  497. getbilldata();
  498. }
  499. $scope.todetail = function (id) {
  500. $state.go('erpbx-bill', {
  501. id:id
  502. })
  503. }
  504. $scope.showModal = function (type) {
  505. $scope.select_date_modal.show();
  506. $rootScope.commons.modal = $scope.select_date_modal;
  507. }
  508. $scope.closeModal = function (index) {
  509. $scope.chkdd_tv = index;
  510. getbilldata();
  511. $rootScope.commons.modal.hide();
  512. }
  513. $scope.loadMore = function () {
  514. if ($scope.billlist != undefined && $scope.billlist.next != null) {
  515. Tool.get($scope.billlist.next).then(function (data) {
  516. $scope.billlist.Data = $scope.billlist.Data.concat(data.Data);
  517. $scope.billlist.next = data.next;
  518. $scope.billlist.previous = data.previous;
  519. }).finally(function () {
  520. $scope.$broadcast('scroll.infiniteScrollComplete');
  521. });
  522. } else {
  523. $scope.$broadcast('scroll.infiniteScrollComplete');
  524. }
  525. }
  526. $scope.moreCanBeLoaded = function () {
  527. return $scope.billlist != undefined && $scope.billlist.next != null;
  528. }
  529. function getbilldata() {
  530. if ($scope.billlist == undefined) {
  531. $scope.loading = true;
  532. }
  533. ErpBx.query('GetDatabyDate').get({table: 'MF_BX', page:1 ,condi: $scope.chkdd_tv}, function (data) {
  534. $scope.billlist = data;
  535. }, function (err) {
  536. alert(JSON.stringify(err));
  537. }).$promise.finally(function () {
  538. $scope.$broadcast('scroll.refreshComplete');
  539. $scope.loading = false;
  540. })
  541. }
  542. var BillListDoRefresh = $rootScope.$on('BillListDoRefresh', function (event ,data) {
  543. getbilldata();
  544. })
  545. $scope.$on('$destroy', function () {
  546. $scope.select_date_modal.remove();
  547. BillListDoRefresh();
  548. })
  549. })