Merge remote-tracking branch 'origin/mdqdasrsVersion' into mdqdasrsVersion
| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.appeTime); |
| | | } |
| | | |
| | | public void setOwner(Integer owner) { |
| | | if (Cools.isEmpty(owner) || owner == 0){ |
| | | this.owner = 32; |
| | | } |
| | | this.owner = owner; |
| | | } |
| | | |
| | | public void sync(Object source) { |
| | | Synchro.Copy(source, this); |
| | | } |
| | |
| | | manPakOutEntityWrapper.eq("doc_num",wrkDetl.getOrderNo()); |
| | | manPakOutEntityWrapper.eq("matnr",wrkDetl.getMatnr()); |
| | | ManPakOut manPakOut = manPakOutService.selectOne(manPakOutEntityWrapper); |
| | | if (!Cools.isEmpty(manPakOut)){ |
| | | if (manPakOut.getCount() + wrkDetl.getAnfme() >= manPakOut.getAnfme()){ |
| | | manPakOut.setStatus(1); |
| | | } |
| | |
| | | if (!manPakOutService.update(manPakOut,manPakOutEntityWrapper)){ |
| | | return FAIL.setMsg("更新拣货单完成数量失败"); |
| | | } |
| | | } |
| | | |
| | | } |
| | | // 修改库位状态 Q ====>> F |
| | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.scheduling.annotation.Scheduled; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | @Slf4j |
| | |
| | | PushDowmOrderSwitch: true |
| | | # 地址 |
| | | address: |
| | | URL: http://lubemater.ik3cloud.com/k3cloud/html5/ |
| | | URL: http://lubemater.ik3cloud.com/ |
| | | #登录地址 |
| | | loginaddress: K3CLOUD/Kingdee.BOS.WebApi.ServicesStub.AuthService.ValidateUser.common.kdsvc |
| | | #单据,商品档案地址 |
| | |
| | | password: "a.222222" |
| | | lcid: 2052 |
| | | # 保持true |
| | | enable: false |
| | | enable: true |
| | |
| | | and b.loc_sts = 'F' |
| | | and a.matnr = #{matnr} |
| | | |
| | | <!-- <choose>--> |
| | | <!-- <when test="batch != null and batch != ''">--> |
| | | <!-- and a.batch = #{batch}--> |
| | | <!-- </when>--> |
| | | <!-- <otherwise>--> |
| | | <!-- and (a.batch IS NULL OR a.batch = '')--> |
| | | <!-- </otherwise>--> |
| | | <!-- </choose>--> |
| | | <choose> |
| | | <when test="batch != null and batch != ''"> |
| | | and a.batch = #{batch} |
| | | </when> |
| | | <otherwise> |
| | | and (a.batch IS NULL OR a.batch = '') |
| | | </otherwise> |
| | | </choose> |
| | | |
| | | <choose> |
| | | <when test="owner != null and owner !=0"> |