请上传宽度大于 1200px,高度大于 164px 的封面图片
    调整图片尺寸与位置
    滚轮可以放大缩小图片尺寸,按住图片拖动可调整位置,多余的会自动被裁剪掉
取消
twshe(uid:72075)
职业资格认证:FCA-FineBI | FCA-FineReport
  • 源表:源表typeid    条码0001    1999990002    2888880003    344444被插入表内容为:typeid    nunit   unitname       条码0001          1       个              1999990001          2       箱0001          30002          1       个             2888880002          2       箱0002          30003          1       个             3444440003          2       箱0003          3如何根据源表的typeid和条码批量被插入表内容呢?
  • declare @typeId as nvarchar(50) set @typeId = (select typeId from ptype zl where not exists( select 1 from T_JXC_PtypeUNIT dw WHERE zl.typeId=DW.ptypeId)) declare @Barcode as nvarchar(50) set @Barcode = (select Barcode from ptype zl where not exists( select 1 from T_JXC_PtypeUNIT dw WHERE zl.typeId=DW.ptypeId)) declare @TradePrice1 as numeric(18, 4) set @TradePrice1 = (select preprice1 from ptype zl where not exists( select 1 from T_JXC_PtypeUNIT dw WHERE zl.typeId=DW.ptypeId)) declare @TradePrice3 as numeric(18, 4) set @TradePrice3 = (select preprice3 from ptype zl where not exists( select 1 from T_JXC_PtypeUNIT dw WHERE zl.typeId=DW.ptypeId)) declare @RetailPrice as numeric(18, 4) set @RetailPrice = (select preprice4 from ptype zl where  not exists( select 1 from T_JXC_PtypeUNIT dw WHERE zl.typeId=DW.ptypeId)) declare @UnitRate as numeric(18, 8) set @UnitRate = (select UnitRate1 from ptype zl where  not exists( select 1 from T_JXC_PtypeUNIT dw WHERE zl.typeId=DW.ptypeId)) insert into  T_Jxc_PtypeUnit(PtypeId,nUnit,UnitName,UnitRate,TradePrice1,TradePrice3,RetailPrice,BarCode) values(@typeId,1,'个',1,@TradePrice1,@TradePrice3,@RetailPrice,@Barcode),       (@typeId,2,'箱',@UnitRate,'','','',''),       (@typeId,3,'',1,'','','','')消息 512,级别 16,状态 1,第 2 行 子查询返回的值不止一个。当子查询跟随在 =、!=、<、<=、>、>= 之后,或子查询用作表达式时,这种情况是不允许的。 消息 512,级别 16,状态 1,第 5 行 子查询返回的值不止一个。当子查询跟随在 =、!=、<、<=、>、>= 之后,或子查询用作表达式时,这种情况是不允许的。 消息 512,级别 16,状态 1,第 8 行 子查询返回的值不止一个。当子查询跟随在 =、!=、<、<=、>、>= 之后,或子查询用作表达式时,这种情况是不允许的。 消息 512,级别 16,状态 1,第 11 行 子查询返回的值不止一个。当子查询跟随在 =、!=、<、<=、>、>= 之后,或子查询用作表达式时,这种情况是不允许的。 消息 512,级别 16,状态 1,第 14 行 子查询返回的值不止一个。当子查询跟随在 =、!=、<、<=、>、>= 之后,或子查询用作表达式时,这种情况是不允许的。 消息 512,级别 16,状态 1,第 17 行 子查询返回的值不止一个。当子查询跟随在 =、!=、<、<=、>、>= 之后,或子查询用作表达式时,这种情况是不允许的。 消息 8114,级别 16,状态 5,第 19 行 从数据类型 varchar 转换为 numeric 时出错。
  • 上图是商品资料表ptype表。如何做到,增删改ptype表后,也同步更新下图的T_Jxc_PtypeUnit表呢?补充一下程序带存储过程能不能利用上?:USE  GO /****** Object:  StoredProcedure .    Script Date: 01/06/2021 13:22:53 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER OFF GO ALTER Procedure . ( @PtypeId nVarchar(50), @nUnit tinyint, @UnitName nVarchar(8), @UnitRate Numeric(18, 8), @RetailPrice Numeric(18, 4), @MinSalePrice Numeric(18, 4), @DefaultPrice Numeric(18, 4), @Barcode nVarchar(50), @TradePrice1 Numeric(18, 4), @TradePrice2 Numeric(18, 4), @TradePrice3 Numeric(18, 4), @TradePrice4 Numeric(18, 4), @TradePrice5 Numeric(18, 4), @TradePrice6 Numeric(18, 4), @TradePrice7 Numeric(18, 4), @TradePrice8 Numeric(18, 4), @TradePrice9 Numeric(18, 4), @TradePrice10 Numeric(18, 4), @TradePrice11 Numeric(18, 4), @TradePrice12 Numeric(18, 4), @TradePrice13 Numeric(18, 4), @TradePrice14 Numeric(18, 4), @TradePrice15 Numeric(18, 4) ) AS   SET NOCOUNT ON Select @PtypeId = IsNull(@PtypeId, '') Select @UnitName = IsNull(@UnitName, '') Select @Barcode = IsNull(@Barcode, '') if exists(Select 1 From T_Jxc_PtypeUnit Where PtypeId = @PtypeId and nUnit = @nUnit) Update T_Jxc_PtypeUnit Set UnitName = @UnitName, UnitRate = @UnitRate, RetailPrice = @RetailPrice, MinSalePrice = @MinSalePrice, DefaultPrice = @DefaultPrice, BarCode = @Barcode, TradePrice1 = @TradePrice1, TradePrice2 = @TradePrice2, TradePrice3 = @TradePrice3, TradePrice4 = @TradePrice4, TradePrice5 = @TradePrice5, TradePrice6 = @TradePrice6,  TradePrice7 = @TradePrice7, TradePrice8 = @TradePrice8, TradePrice9 = @TradePrice9, TradePrice10 = @TradePrice10, TradePrice11 = @TradePrice11, TradePrice12 = @TradePrice12,  TradePrice13 = @TradePrice13, TradePrice14 = @TradePrice14, TradePrice15 = @TradePrice15 Where PtypeId = @PtypeId and nUnit = @nUnit else Insert Into T_Jxc_PtypeUnit(PtypeId, nUnit, UnitName, UnitRate, RetailPrice, MinSalePrice, DefaultPrice, BarCode, TradePrice1, TradePrice2, TradePrice3, TradePrice4,  TradePrice5, TradePrice6, TradePrice7, TradePrice8, TradePrice9, TradePrice10, TradePrice11, TradePrice12, TradePrice13, TradePrice14, TradePrice15) Values(@PtypeId, @nUnit, @UnitName, @UnitRate, @RetailPrice, @MinSalePrice, @DefaultPrice, @Barcode, @TradePrice1, @TradePrice2, @TradePrice3, @TradePrice4,  @TradePrice5, @TradePrice6, @TradePrice7, @TradePrice8, @TradePrice9, @TradePrice10, @TradePrice11, @TradePrice12, @TradePrice13, @TradePrice14, @TradePrice15)补充以下两表的结构和数据,会的大佬帮忙写一下语句!谢谢!T_Jxc_PtypeUnit.sqlptype.sql
  • 如下图,怎么会多个EAN_13,怎么解决,企业WX不会这样。PS:提问4次都提示有铭感词,被清空提问,原来WEIXIN被管理员设置铭感词了,醉了
  • HTML5这个模式,比较适合移动端啊,微信啥的,用起来比较方便,很多方案没法在HTML5下使用,官方对HTML5支持也少。。回正题,移动弹窗出来的,输入框添加了如图,初始化的时候不会自动查询了,但是输入又自动查询,查询按钮就废了。。还影响速度,输入1个字查一次。只有在HTML5下才会这样,怎么解决?
  • 有大佬做移动端html5下支持的看图片的吗?可以放大,缩小,关闭那种。。。
  • 如题:移动端的 FRM 决策报表中,如何初始化的时候给文本框焦点。移动端哦!!
  • URL里,怎么执行查询,或者隐藏参数面板想要直接点连接,直接可以查询,如下面的链接,带了参数的,点击后,可以直接显示内容(不要在设计里不勾选 点击查询前不显示报表内容这个方法)http://XXXXXXXX.COM/webroot/decision/view/report?viewlet=查询.cpt&商品名称=%E5%B8%82%E4%B8%8B&op=h5#/report
  • 如题:同个过滤组件,比如月份控件,选择了2020-11月,2020-11月的销售客户组件,就出来客户列表?那么问题来了:2020-11月没有销售的客户组件,如何出来客户列表?
  • https://www.finereporthelp.com/h5/decision/url/mobile?token=eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJmYW5ydWFuIiwiaWF0IjoxNTk4MTEzMTI3LCJleHAiOjE1OTgxMTY3MjcsInN1YiI6ImRlbW8iLCJkZXNjcmlwdGlvbiI6ImRlbW8oZGVtbykiLCJqdGkiOiJqd3QifQ.Wg6StSgZR7he34X7Ls0SQkT1Q6aH8a8KHJwyTB0bW3I#/form?title=%E7%BB%8F%E8%90%A5%E7%AE%A1%E7%90%86%E9%A9%BE%E9%A9%B6%E8%88%B1&id=728924b3-e8b7-4722-998e-0082b932fe99&showType=3用户名:demo  密码123456上方搜索驾驶舱,出来如果模板,点右上方点击获取模板,弹出的窗口是帆软做的吗?怎么实现呢?研究了下:只支持FRM的填报模式。。。CPT的不支持。

90

236

90

10

个人成就
内容被浏览105,354
加入社区8年82天
返回顶部