123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- /**
- * Created by Zhong on 2017/11/13.
- */
- //default setting
- let defaultDecimal = {
- min: 0,
- max: 6,
- totalMax:2,//清单合价”、“定额合价”,限制最大值是2。
- _def: {//editable: 开放给用户编辑的
- bills: {editable: true, data: {unitPrice: 2, totalPrice: 2}},
- ration: {editable: true, data: {quantity: 4, unitPrice: 2, totalPrice: 2}},
- glj: {editable: true, data: {quantity: 4, unitPriceHasMix: 2, unitPrice: 3}},
- material: {editable: false, data: 5},
- feeRate: {editable: true, data: 3},
- quantity_detail: {editable: false, data: 4},
- process: {editable: false, data: 6}
- }
- };
- let decimalObj = Object.create(null);
- decimalObj.decimal = function (field, node) {
- if(isDef(field)){
- if(field.sameText('unitFee')){
- field = 'unitPrice';
- }
- else if(field.sameText('totalFee')){
- field = 'totalPrice';
- }
- }
- if(!isDef(node)){
- if(!isDef(field)){
- return this.process;
- }
- let fields = field.split('.');
- let fieldDecimal = fields.length === 2 ? this[fields[0]][fields[1]] : this[fields[0]];
- return fieldDecimal ? fieldDecimal : this.process;
- }
- else {
- if(node.sourceType === projectObj.project.Bills.getSourceType()){
- if(field === 'quantity'){
- return billsQuanDecimal.decimal(node.data.unit);
- }
- else {
- return returnV(this['bills'][field], this.process);
- }
- }
- else if(node.sourceType === projectObj.project.Ration.getSourceType()){
- return returnV(this['ration'][field], this.process);
- }
- else if(node.sourceType === projectObj.project.ration_glj.getSourceType()){
- return returnV(this['glj'][field], this.process);
- }
- }
- return this[field]? this[field] : this.process;
- };
- /*decimalObj.decimal = function (field, node) {
- if(isDef(field)){
- if(field === 'feeRate'||field==="quantity_detail"){
- return this[field];
- }
- else if (field.sameText('unitFee')) field = 'unitPrice'
- else if (field.sameText('totalFee')) field = 'totalPrice';
- if(isDef(node)){
- if(node.sourceType === projectObj.project.Bills.getSourceType()){
- if(field === 'quantity'){
- return billsQuanDecimal.decimal(node.data.unit);
- }
- else {
- return returnV(this['bills'][field], this.process);
- }
- }
- else if(node.sourceType === projectObj.project.Ration.getSourceType()){
- return returnV(this['ration'][field], this.process);
- }
- else if(node.sourceType === projectObj.project.ration_glj.getSourceType()){
- return returnV(this['glj'][field], this.process);
- }
- }
- }
- return this[field]?this[field]:this.process;
- };*/
- function returnV(v, r){
- if(isDef(v)){
- return v;
- }
- return r;
- }
- function isUndef(v) {
- return v === undefined || v === null;
- }
- function isDef(v){
- return v !== undefined && v !== null;
- }
- function isObj(v){
- return isDef(v) && typeof v === 'object';
- }
- function isNum(v){
- return isDef(v) && !isNaN(v);
- }
- function isInt(v){
- return isNum(v) && v % 1 === 0;
- }
- function isValidDigit(v,isTotal){
- let max = isTotal?defaultDecimal.totalMax:defaultDecimal.max;
- return isInt(v) && v >= defaultDecimal.min && v <= max;
- }
- //newV用户可编辑数据
- function toUpdateDecimal(orgV, newV){
- let rst = false;
- reCompare(orgV, newV);
- function reCompare(orgV, newV){
- for(let attr in newV){
- if(Object.keys(newV[attr]).length > 0){
- if(isUndef(orgV[attr])){
- rst = true;
- return;
- }
- else{
- reCompare(orgV[attr], newV[attr]);
- }
- }
- else {
- if(isUndef(orgV[attr]) || parseInt(newV[attr]) !== parseInt(orgV[attr])){
- rst = true;
- return;
- }
- }
- }
- }
- return rst;
- }
- function setDecimal(_digits, data){
- if(isDef(data)){
- for(let attr in data){
- _digits[attr] = returnV(data[attr], defaultDecimal['_def'][attr]['data']);
- }
- }
- else {
- for(let attr in defaultDecimal['_def']){
- _digits[attr] = defaultDecimal['_def'][attr]['data'];
- }
- }
- }
- //获取decimalPanel中要展示的数据
- function m_getInitData(data){
- let rst = Object.create(null);
- for(let attr in defaultDecimal['_def']){
- if(defaultDecimal['_def'][attr]['editable'] && isDef(data[attr])){
- rst[attr] = data[attr];
- }
- }
- return rst;
- }
- //获取小数位数panel里的数据
- function m_getDecimalData(inputs){
- let rst = Object.create(null);
- for(let i = 0, len = inputs.length ; i < len; i++){
- let name = $(inputs[i]).attr('name');
- let attrs = name.split('-');
- if(attrs.length > 1){
- if(isUndef(rst[attrs[0]])){
- rst[attrs[0]] = Object.create(null);
- }
- if(isDef(rst[attrs[0]])) {
- rst[attrs[0]][attrs[1]] = parseInt($(inputs[i]).val());
- }
- }
- else {
- rst[attrs[0]] = parseInt($(inputs[i]).val());
- }
- }
- for(let attr in defaultDecimal['_def']){
- if(!defaultDecimal['_def'][attr]['editable']){
- rst[attr] = defaultDecimal['_def'][attr]['data'];
- }
- }
- return rst;
- }
- function v_initPanel(data){
- if(this.isDef(data)){
- for(let attr in data){
- if(this.isObj(data[attr])){
- for(let subAttr in data[attr]){
- let str = attr + '-' + subAttr;
- let jqs = 'input[name="' + str + '"]';
- $(jqs).val(data[attr][subAttr]);
- $(jqs).attr('min', defaultDecimal.min);
- let max = str == 'bills-totalPrice'|| str == 'ration-totalPrice'?defaultDecimal.totalMax:defaultDecimal.max;
- $(jqs).attr('max', max);
- }
- }
- else {
- let str = attr + '';
- let jqs = 'input[name="' + str + '"]';
- $(jqs).val(data[attr]);
- $(jqs).attr('min', defaultDecimal.min);
- $(jqs).attr('max', defaultDecimal.max);
- }
- }
- }
- }
- function e_validIn(inputs){
- for(let i = 0, len = inputs.length; i < len; i++){
- let orgV = $(inputs[i]).val();
- $(inputs[i]).bind('input', function () {
- let v = $(this).val();
- let inputName = $(this).attr('name');
- let infoMsg = inputName == 'bills-totalPrice'|| inputName == 'ration-totalPrice'?'小数位数范围在0-2!':'小数位数范围在0-6!';
- if(v.trim().length === 0 || !isValidDigit(v,inputName == 'bills-totalPrice'|| inputName == 'ration-totalPrice')){
- alert(infoMsg);
- $(this).val(orgV);
- }
- else{
- orgV = v;
- //清单单价、合价 与定额单价、合价同步
- if(inputName === 'bills-unitPrice'){
- $("input[name='ration-unitPrice']").val(v);
- }
- else if(inputName === 'bills-totalPrice'){
- $("input[name='ration-totalPrice']").val(v);
- }
- else if(inputName === 'ration-unitPrice'){
- $("input[name='bills-unitPrice']").val(v);
- }
- else if(inputName === 'ration-totalPrice'){
- $("input[name='bills-totalPrice']").val(v);
- }
- }
- });
- }
- }
- function e_bindCof(btn){
- btn.bind('click', function () {
- //获取更新的数据
- let updateDecimal = m_getDecimalData($('input', '#poj-settings-decimal'));
- if(toUpdateDecimal(decimalObj, updateDecimal)){
- a_updateDigits(updateDecimal);
- }
- });
- }
- function e_unbindCof(btn){
- btn.unbind();
- }
- function a_updateDigits(updateDecimal){
- let url = '/pm/api/updateProjects';
- let data = {
- updateType: 'update',
- updateData: {
- ID: parseInt(scUrlUtil.GetQueryString('project')),
- 'property.decimal': updateDecimal
- }
- };
- let postData = {
- user_id: userID,
- updateData: [data]
- };
- let scCaller = function (resultData) {
- //update data
- setDecimal(decimalObj, updateDecimal);
- let v_data = m_getInitData(decimalObj);
- v_initPanel(v_data);
- };
- let errCaller = function () {
- alert('更新小数位数失败!');
- let v_data = m_getInitData(decimalObj);
- v_initPanel(v_data);
- };
- CommonAjax.post(url, postData, scCaller, errCaller);
- }
- $(document).ready(function () {
- $('#poj-set').on('shown.bs.modal', function (e) {
- let v_data = m_getInitData(decimalObj);
- v_initPanel(v_data);
- });
- //绑定确定按钮
- //e_bindCof($('#property_ok'));
- //绑定小数位数输入控制
- e_validIn($('input', '#poj-settings-decimal'));
- });
|