Defect #1068
Customer Information File ข้อมูลลูกค้า-ดึงข้อมูลที่จอดรถสำนักงานใหญ่มาแสดงที่ Tab สาขา
100%
รายละเอียด
เมนูCustomer Information File – CIF->กดบันทึก->กดสร้างข้อมูลลูกค้า->ข้อมูลลูกค้า รหัสลูกค้า->กดเลือกรหัสลูกค้า->กดที่อยู่สาขา->กดเพิ่มข้อมูลที่อยู่->กดเพิ่มที่จอดรถ
ปัญหาที่พบ คือ ข้อมูลที่จอดรถสำนักงานใหญ่ที่บันทึกไว้ ถูกดึงมาแสดงที่ tab ที่จอดรถสาขา
แฟ้ม
Updated by Was-Wasana Chantamud about 3 years ago
- สถานะ changed from Dev : Todo to SA : Todo
- มอบหมายให้ changed from Was-Wasana Chantamud to Kai-Jutamas Saetang
ตีกลับไปให้ sa ดูสเปคเรื่องนี้
Updated by Kai-Jutamas Saetang about 3 years ago
- สถานะ changed from SA : Todo to SA : Doing
- เริ่ม changed from 30/03/2022 to 31/03/2022
ซ่อมสเปค CIF
Tab สำนักงานใหญ่/ที่จอดรถ
Tab สาขา/ที่จอดรถ
อยู่ระหว่าง ศึกษาความสัมพันธ์ของข้อมูลแต่ละ Tab
Updated by Kai-Jutamas Saetang about 3 years ago
- เรื่อง changed from Customer Information File ข้อมูลลูกค้า-ดึงข้อมูลที่จอดรถสำนักงานใหญ่มาแสดงที่ Tab สาขา to Customer Information File ข้อมูลลูกค้า-ดึงข้อมูลที่จอดรถสำนักงานใหญ่มาแสดงที่ Tab สาขา==>HOLD
- เริ่ม deleted (
31/03/2022)
Updated by Kai-Jutamas Saetang about 3 years ago
อัพเดท ข้อมูล ER โมดูลข้อมูลลูกค้า (28/4/22)
https://docs.google.com/spreadsheets/d/1iOEq0D4DS2ZuFcyaNZxbiBWOUYGFHKNO/edit?usp=sharing&ouid=100598170546731401378&rtpof=true&sd=true
Updated by Kai-Jutamas Saetang about 3 years ago
- แฟ้ม 01_E_ข้อมูลลูกค้า_ตัวแทน_V11.docx 01_E_ข้อมูลลูกค้า_ตัวแทน_V11.docx added
- เรื่อง changed from Customer Information File ข้อมูลลูกค้า-ดึงข้อมูลที่จอดรถสำนักงานใหญ่มาแสดงที่ Tab สาขา==>HOLD to Customer Information File ข้อมูลลูกค้า-ดึงข้อมูลที่จอดรถสำนักงานใหญ่มาแสดงที่ Tab สาขา
- วันครบกำหนด set to 29/04/2022
- สถานะ changed from SA : Doing to SA : Waiting Assign PGM
- เริ่ม set to 29/04/2022
- % สำเร็จ changed from 0 to 100
แก้ไข Query การแสดงข้อมูลลูกค้า>>สาขา>>สถานที่จอดรถ
declare @companyCode varchar(2) = '01'
declare @officeCode varchar(4) = '01'
declare @custCde varchar(10) = 'CITY001'
select a.*,b.thdesc as parktypName
from FPMSDL02C a
left join FPTBFP91 b on a.cmpcde = b.cmpcde and b.prmtyp = 'CARPACKTYP' and a.parktyp = b.prmcde
where a.recsts='A' and b.recsts = 'A'
and a.cmpcde = @companyCode and a.offcde=@officeCode
and a.custcde = @custCde
and offdoccde<>'00000'