摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Component 阅读全文
posted @ 2018-10-22 14:50 嘿嘿嘿~ 阅读(868) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using System.ServiceModel; using System.Threading.Tasks; using System.Data; using Sy... 阅读全文
posted @ 2018-10-22 14:49 嘿嘿嘿~ 阅读(1133) 评论(0) 推荐(0) 编辑
摘要: 项目背景: 1,有2个辅助资料的编码需要做拼接到另外一个字段。编码可能是中文也可能是英文 处理方式: 1,a = str(a.fnumber)+','+str(b.fnumber) 如果编码为中文会提示asciis 错误,编码错误。 2,优化的处理方式 a = '{0},{1}'.format(a. 阅读全文
posted @ 2018-09-29 15:35 嘿嘿嘿~ 阅读(1303) 评论(6) 推荐(0) 编辑
摘要: 背景 费用报销单分录的报销未付款金额,客户需要打印出来一个汇总,不显示单据体。 1,拖一个金额字段冗余在单据头。 2,套打里面吧这个字段设置到对应的打印位置。 3,挂插件 1 #-*- coding: utf-8 -*- 2 import clr 3 clr.AddReference("System 阅读全文
posted @ 2018-09-26 13:38 嘿嘿嘿~ 阅读(3471) 评论(0) 推荐(0) 编辑
摘要: 1,判断基础资料的编码是否相等 2,判断基础资料的名称是否包含某几个字 阅读全文
posted @ 2018-09-26 10:34 嘿嘿嘿~ 阅读(966) 评论(0) 推荐(0) 编辑
摘要: 早前建的解决方案,构建的补丁包版本编号已经比较高了(pack.0.0.49.1.kdpkg) 后来由于环境损坏,重做了开发环境,安装路径和代码路径都有变动。用BOSIDE打开以前的解决方案, 调整了代码资源的路径,重新构建时版本号又从头开始流水了(pack.0.0.0.1.kdpkg)。用这样的补丁 阅读全文
posted @ 2018-09-26 10:32 嘿嘿嘿~ 阅读(993) 评论(0) 推荐(0) 编辑
摘要: 1 查询单据 2 billFormMetaData = (FormMetadata)MetaDataServiceHelper.Load(base.Context, sourceBillFormId); 3 Field billNoField = billFormMetaData.BusinessInfo.GetBillNoField(); 4 string strFilter = $"{bil... 阅读全文
posted @ 2018-09-26 10:31 嘿嘿嘿~ 阅读(1211) 评论(0) 推荐(0) 编辑
摘要: 1 EntryGrid control = base.View.GetControl("FScanDetailEntity"); 2 control.SetForecolor("FBarCode", "#FF0000", entryCurrentRowIndex); 阅读全文
posted @ 2018-09-26 10:30 嘿嘿嘿~ 阅读(625) 评论(0) 推荐(0) 编辑
摘要: 1、取消“启用”标准插件。2、自定义写个插件,继承取消的标准插件(这个自定义的插件可以一句代码都不写)。3、注册这个自定义的插件,排在所需位置。 阅读全文
posted @ 2018-09-26 10:29 嘿嘿嘿~ 阅读(358) 评论(0) 推荐(0) 编辑
摘要: //根据ID获取单据,然后正常修改单据。 1 private object GetSalDeliveryNotictView(long billFid) 2 { 3 if (this.formMetaData == null) 4 { 5 this.formMetaData = (FormMetad 阅读全文
posted @ 2018-09-26 10:26 嘿嘿嘿~ 阅读(1174) 评论(0) 推荐(0) 编辑